@charset "UTF-8";
.flex {
  display: flex;
}

.f-r {
  flex-direction: row;
}

.f-c {
  flex-direction: column;
}

.wrap {
  flex-wrap: wrap;
}

.nowrap {
  flex-wrap: nowrap;
}

.jc-inicio {
  justify-content: flex-start;
}

.jc-centro {
  justify-content: center;
}

.jc-fin {
  justify-content: flex-end;
}

.jc-entre {
  justify-content: space-between;
}

.jc-alred {
  justify-content: space-around;
}

.jc-eq {
  justify-content: space-evenly;
}

.ai-inicio {
  align-items: flex-start;
}

.ai-centro {
  align-items: center;
}

.ai-fin {
  align-items: flex-end;
}

.ai-estirar {
  align-items: stretch;
}

.p-gigante {
  font-size: 100px;
  line-height: 98px;
}

.p-enorme {
  font-size: 32px;
  line-height: 38px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
}

.p-grande {
  font-size: 24px;
  line-height: 38px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
}

.p-mediano {
  font-size: 16px;
  line-height: 21px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.p-chico {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  font-family: "Inter", sans-serif;
}

.h1-bold {
  font-size: 70px;
  line-height: 68px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin: 0px;
}

.h1-suave {
  font-size: 70px;
  line-height: 68px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  margin: 0px;
}

.h1-suave-italic {
  font-size: 70px;
  line-height: 68px;
  font-weight: 300;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
  margin: 0px;
}

.h2-bold {
  font-size: 50px;
  line-height: 48px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin: 0px;
}

.h2-suave {
  font-size: 50px;
  line-height: 48px;
  font-weight: 300;
  font-family: "Montserrat", sans-serif;
  margin: 0px;
}

.h2-suave-italic {
  font-size: 50px;
  line-height: 48px;
  font-weight: 300;
  font-style: italic;
  font-family: "Montserrat", sans-serif;
  margin: 0px;
}

.h3-bold {
  font-size: 30px;
  line-height: 28px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin: 0px 0px 20px;
}

.h4-bold {
  font-size: 24px;
  line-height: 22px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin: 0px 0px 20px;
}

.h5-bold {
  font-size: 18px;
  line-height: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  margin: 0px 0px 20px;
}

.neg-bla {
  background: #000000;
  color: #ffffff;
}

.azu-bla {
  background: #3B3BF5;
  color: #ffffff;
}

.vio-bla {
  background: #8394D2;
  color: #ffffff;
}

.nar-neg {
  background: #F2A83A;
  color: #000000;
}

.ver-neg {
  background: #A4D962;
  color: #000000;
}

.bla-neg {
  background: #ffffff;
  color: #000000;
}

.rad-0 {
  border-radius: 0;
}

.rad-10 {
  border-radius: 10px;
}

.rad-50 {
  border-radius: 50%;
}

.bt-x {
  height: 65px;
  font-size: 20px;
  line-height: 65px;
  font-family: "Inter", sans-serif;
  display: block;
  text-align: center;
  padding: 0px 30px;
  width: fit-content;
}

.bt-n {
  height: 50px;
  font-size: 20px;
  line-height: 50px;
  font-family: "Inter", sans-serif;
  display: block;
  text-align: center;
  padding: 0px 30px;
  width: fit-content;
}

.bt-s {
  height: 35px;
  font-size: 20px;
  line-height: 35px;
  font-family: "Inter", sans-serif;
  display: block;
  text-align: center;
  padding: 0px 30px;
  width: fit-content;
}

@media (max-width: 812px) {
  .bt-s {
    height: 35px;
    font-size: 14px;
    line-height: 35px;
    font-family: "Inter", sans-serif;
    display: block;
    text-align: center;
    padding: 0px 30px;
    width: fit-content;
  }
}
.lin-azu {
  border: 3px solid #3B3BF5;
  background: transparent;
  color: #000000;
  transition: all 0.3s ease;
}
.lin-azu:hover {
  background-color: #3B3BF5;
  color: #ffffff;
}

.lin-azu-bla {
  border: 3px solid #3B3BF5;
  background: transparent;
  color: #ffffff;
  transition: all 0.3s ease;
}
.lin-azu-bla:hover {
  background-color: #3B3BF5;
  color: #000000;
}

.col-azu {
  background-color: #3B3BF5;
  color: #ffffff;
  transition: all 0.3s ease;
}
.col-azu:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.lin-vio {
  border: 3px solid #8394D2;
  background: transparent;
  color: #000000;
  transition: all 0.3s ease;
}
.lin-vio:hover {
  background-color: #8394D2;
  color: #ffffff;
}

.lin-vio-bla {
  border: 3px solid #8394D2;
  background: transparent;
  color: #ffffff;
  transition: all 0.3s ease;
}
.lin-vio-bla:hover {
  background-color: #8394D2;
  color: #000000;
}

.col-vio {
  background-color: #8394D2;
  color: #ffffff;
  transition: all 0.3s ease;
}
.col-vio:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.lin-nar {
  border: 3px solid #F2A83A;
  background: transparent;
  color: #000000;
  transition: all 0.3s ease;
}
.lin-nar:hover {
  background-color: #F2A83A;
  color: #ffffff;
}

.lin-nar-bla {
  border: 3px solid #F2A83A;
  background: transparent;
  color: #ffffff;
  transition: all 0.3s ease;
}
.lin-nar-bla:hover {
  background-color: #F2A83A;
  color: #000000;
}

.col-nar {
  background-color: #F2A83A;
  color: #ffffff;
  transition: all 0.3s ease;
}
.col-nar:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.lin-ver {
  border: 3px solid #A4D962;
  background: transparent;
  color: #000000;
  transition: all 0.3s ease;
}
.lin-ver:hover {
  background-color: #A4D962;
  color: #ffffff;
}

.lin-ver-bla {
  border: 3px solid #A4D962;
  background: transparent;
  color: #ffffff;
  transition: all 0.3s ease;
}
.lin-ver-bla:hover {
  background-color: #A4D962;
  color: #000000;
}

.col-ver {
  background-color: #A4D962;
  color: #ffffff;
  transition: all 0.3s ease;
}
.col-ver:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.lin-neg {
  border: 3px solid #000000;
  background: transparent;
  color: #000000;
  transition: all 0.3s ease;
}
.lin-neg:hover {
  background-color: #000000;
  color: #ffffff;
}

.lin-neg-bla {
  border: 3px solid #000000;
  background: transparent;
  color: #ffffff;
  transition: all 0.3s ease;
}
.lin-neg-bla:hover {
  background-color: #000000;
  color: #000000;
}

.col-neg {
  background-color: #000000;
  color: #ffffff;
  transition: all 0.3s ease;
}
.col-neg:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.lin-bla {
  border: 3px solid #ffffff;
  background: transparent;
  color: #000000;
  transition: all 0.3s ease;
}
.lin-bla:hover {
  background-color: #ffffff;
  color: #ffffff;
}

.lin-bla-bla {
  border: 3px solid #ffffff;
  background: transparent;
  color: #ffffff;
  transition: all 0.3s ease;
}
.lin-bla-bla:hover {
  background-color: #ffffff;
  color: #000000;
}

.col-bla {
  background-color: #ffffff;
  color: #ffffff;
  transition: all 0.3s ease;
}
.col-bla:hover {
  filter: brightness(1.1);
  transform: scale(1.02);
}

.col-bla-neg {
  color: #000000;
  background: #ffffff;
}

.disefix {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0px;
}
.disefix span {
  color: #F2A83A;
}

.lateral {
  background: #E8E5ED;
  padding: 30px;
  height: 100vh;
  position: fixed;
  left: 0px;
}

.logo-lateral {
  max-width: 200px;
  margin-bottom: 20px;
}

.wrapper {
  display: flex;
}

.sidebar {
  width: 370px;
  height: 100%;
  background: #E8E5ED;
  padding: 20px;
  position: fixed;
  overflow: auto;
}

/* Estilos para Firefox */
/* Nota: Firefox no soporta estilos personalizados para la barra de desplazamiento, 
pero podemos aplicar estilos usando el pseudo-elemento ::-moz-scrollbar. */
* {
  scrollbar-color: #888 #f1f1f1; /* Color del thumb y del fondo de la barra */
  scrollbar-width: thin; /* Ancho de la barra de desplazamiento */
}

.sidebar h3 {
  font-size: 34px;
  font-weight: 700;
  /* text-transform: uppercase; */
  line-height: 32px;
}

.descripcion {
  line-height: 23px;
  font-size: 21px;
  padding-bottom: 40px;
}

.sidebar h2 {
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 10px;
}

a.ver-clase {
  display: grid;
  grid-template-columns: 10% 80%;
  grid-gap: 10px;
  align-items: center;
  padding: 5px;
}

a.ver-clase.prender {
  background: #fff;
  padding: 5px;
  border-radius: 10px;
}

.duracion {
  font-size: 16px;
  font-weight: 700;
  padding: 5px 0px;
}

.content {
  flex: 1;
  margin-left: 250px; /* Ancho del menú para desplazar el contenido */
}

.contenido-curso {
  max-width: 700px;
  margin: 0 auto;
}

a.ver-clase h3 {
  font-size: 15px !important;
  color: #000;
  padding-bottom: 10px;
  line-height: 18px;
  margin: 0px;
}

.ver {
  background: #59578d;
  width: fit-content;
  font-size: 13px;
  padding: 7px;
  border-radius: 5px;
  margin-top: 9px;
  color: #fff;
}

.descripcion-clase {
  color: #000;
  font-size: 13px;
  line-height: 16px;
}

.sidebar .ver-clase h3 {
  font-size: 21px !important;
  /* text-transform: uppercase; */
  line-height: 22px;
  letter-spacing: 0px;
  padding-bottom: 0px;
  font-weight: 400;
}

.sidebar .ver-clase .abierto {
  position: absolute;
  right: 15px;
}

.sidebar .cerrado {
  right: 15px !important;
}

.volver-cursos {
  position: relative;
  font-size: 28px;
}

.abrir-menu-cursos {
  font-size: 25px;
  display: none;
}

.bot-curso {
  display: flex;
  justify-content: right;
  margin-top: -30px;
  margin-bottom: 30px;
  max-width: 90%;
  margin: 0 auto;
}

.tit-clase {
  font-size: 50px;
  line-height: 41px;
  padding-bottom: 30px;
}

/* Estilo para hacer que el contenedor del vídeo ocupe toda la pantalla */
.video-container {
  width: 100%;
  height: 0;
  padding-bottom: 145%; /* Proporción 16:9 (9 / 16 * 100) */
  position: relative;
  overflow: hidden; /* Evita que el vídeo se desborde del contenedor */
}

/* Estilo para el vídeo dentro del contenedor */
.video-container iframe {
  width: 100%;
  height: 100%; /* Ajusta el vídeo al 100% de la altura del contenedor */
  position: absolute;
  top: 0;
  left: 0;
}

#youtube-player {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0px;
}

#cover-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

@media (min-width: 812px) {
  .video-container {
    border-radius: 10px;
    width: 100%;
    height: 0;
    padding-bottom: 42.857%;
    position: relative;
    overflow: hidden;
    max-width: 1100px;
    margin: 0 auto 100px;
  }
}
.texxtino {
  color: #fff;
}

div#cover-image h2 {
  padding-top: 20px;
  font-size: 40px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  margin: 0px;
}

#play-icon {
  line-height: 64px;
  font-size: 30px;
  color: white;
  cursor: pointer;
  border: solid 3px;
  height: 60px;
  width: 60px;
  text-align: center;
  border-radius: 50%;
  padding-left: 2px;
}

@media (min-width: 812px) {
  #play-icon {
    line-height: 96px;
    font-size: 48px;
    color: white;
    cursor: pointer;
    border: solid 3px;
    height: 92px;
    width: 91px;
    text-align: center;
    border-radius: 50%;
    padding-left: 7px;
  }
}
.contenidos-class ul {
  padding: 0px 0px 0px 14px;
}

.texto-clase {
  padding-bottom: 20px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 30px;
}

a.boton-pdf {
  background: #fff;
  color: #000;
  display: block;
  padding: 15px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  border: solid 1px;
  margin-bottom: 100px;
}

.close-menu {
  font-size: 30px;
  position: absolute;
  right: 30px;
  display: none;
}

@media (max-width: 812px) {
  .content {
    flex: inherit;
    margin-left: 0px;
    max-width: 90%;
    margin: 0 auto;
  }
  .sidebar {
    width: 100%;
    height: 100%;
    background: #E8E5ED;
    padding: 0px;
    position: fixed;
    overflow: auto;
    left: -100%;
    z-index: 10;
  }
  .abrir-menu-cursos {
    font-size: 25px;
    display: block;
  }
  .cont-sidebar {
    max-width: 90%;
    margin: 30px auto;
  }
  .close-menu {
    font-size: 30px;
    position: absolute;
    right: 30px;
    display: block;
  }
  .bot-curso {
    display: flex;
    justify-content: space-between;
    margin-top: -30px;
    margin-bottom: 30px;
  }
}
.titulo-secciones h2 {
  margin: 0 auto;
  text-align: center;
  font-size: 50px;
  font-weight: 300;
  font-style: italic;
}

.titulo-secciones h2 strong {
  font-style: normal;
}

body {
  font-size: 18px;
  font-family: "Inter", sans-serif;
  margin: 0px;
  padding: 0px;
  background: #f9fafb;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.sas {
  overflow: hidden;
  width: 100%;
}

.salto {
  height: 161px;
}

@media (max-width: 812px) {
  .salto {
    height: 138px;
  }
}
.gradiente {
  background: rgb(189, 131, 230);
  background: linear-gradient(180deg, rgb(189, 131, 230) 0%, rgb(226, 9, 159) 100%);
  color: #fff;
}

.bg-grisclaro {
  background-color: #EFEFEF;
}

.bg-grisoscuro {
  background-color: #161616;
}

.bg-black {
  background-color: #000;
  color: #fff;
}

@media (max-width: 812px) {
  .bg-negro {
    background-color: #000;
  }
}
/*BOTONES*/
a.boton-gradiente {
  color: #fff;
  background: rgb(189, 131, 230);
  background: linear-gradient(180deg, rgb(189, 131, 230) 0%, rgb(226, 9, 159) 100%);
  border-radius: 50px;
  padding: 10px 15px;
  display: block;
  width: fit-content;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}

/*TITULOS*/
.titulo-seccion h2 {
  margin: 0px;
  font-weight: 200;
}

.titulo-seccion {
  max-width: 80%;
}

@media (max-width: 812px) {
  .titulo-seccion {
    max-width: 100%;
  }
}
/*HEADER*/
.mensaje-top {
  background: #000000;
  color: #fff;
}

.mensaje-top strong {
  color: #fff;
  font-weight: 500;
}

.header {
  background: transparent;
  color: #fff;
  position: absolute;
  z-index: 10;
  width: 100%;
}

.header.prod {
  background: #fff;
  color: #000;
  position: absolute;
  z-index: 10;
  width: 100%;
}

.salto-producto {
  height: 110px;
}

.header.stick {
  position: fixed;
  left: 0;
  z-index: 999;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background: #2a2a2a;
}

@media (max-width: 812px) {
  .header.stick {
    position: fixed;
    left: 0;
    top: 0px;
    z-index: 999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    background: #2a2a2a;
  }
}
.header.padding-30.stick {
  padding: 15px 0px;
}

.header a {
  color: #fff;
}

.iconos-cabecera {
  display: flex;
  justify-content: end;
  align-items: center;
}

.header.prod .botone-negros .botonera ul li a {
  color: #000000;
  font-size: 18px;
  display: block;
  font-weight: 500;
  padding: 10px 15px;
  text-transform: none;
  border-radius: 10px;
  font-weight: 700;
}

.prod.shadow.stick {
  background: #fff;
}

.iconos-negros a {
  color: #000;
}

.logo {
  width: fit-content;
  max-width: 150px;
}

a.btn-login {
  background: #242ae2;
  padding: 10px;
  border-radius: 10px;
  font-weight: 700;
  margin-right: 20px;
}

@media (max-width: 812px) {
  .logo {
    width: fit-content;
    max-width: 140px;
  }
}
.iconos-cabecera ul {
  list-style: none;
  padding: 0px;
  display: flex;
  justify-content: end;
}

.iconos-cabecera li {
  margin-left: 15px;
}

.iconos-cabecera li a {
  font-size: 19px;
}

.cont-header {
  position: absolute;
  /* top: 0px; */
  z-index: 1000;
  width: 100%;
}

.sticky {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 9999;
  opacity: 1000;
  background: #2e2e2e;
}

.sticky .header {
  padding: 10px;
}

.cont-header.sticky .mensaje-top {
  display: none;
}

.sticky .header.blanco {
  background: #eee;
}

@media (max-width: 812px) {
  .sticky {
    top: 0px;
  }
}
/*BOTONERA*/
.botonera ul {
  display: flex;
  text-transform: uppercase;
  list-style: none;
  padding: 0px;
  margin: 0 auto;
  justify-content: center;
}

a.active-page {
  background: #ff8b13;
}

.botonera ul li a {
  color: #fff;
  font-size: 16px;
  display: block;
  font-weight: 500;
  padding: 10px 15px;
  text-transform: none;
}

.botone-negros .botonera ul li a {
  color: #fff;
  font-size: 18px;
  display: block;
  font-weight: 500;
  padding: 10px 15px;
  text-transform: none;
  border-radius: 10px;
  font-weight: 700;
}

li.destacado a {
  background: #fb6b04;
  color: #fff !important;
  border-radius: 50px;
  /* font-size: 24px; */
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

li.destacado a:hover {
  background: #fb6b04 !important;
  color: #fff !important;
  border-radius: 50px;
  /* font-size: 24px; */
  animation: pulsate 1s infinite; /* Inicia la animación de pulsación */
}

@keyframes pulsate {
  0% {
    transform: scale(1); /* Tamaño normal */
    opacity: 1; /* Opacidad completa */
  }
  50% {
    transform: scale(1.04); /* Tamaño aumentado */
    opacity: 0.7; /* Opacidad reducida */
  }
  100% {
    transform: scale(1); /* Tamaño normal */
    opacity: 1; /* Opacidad completa */
  }
}
.boton {
  background-color: #3498db;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.botonera ul li a:hover {
  background: #fff;
  color: #FD6B04;
}

.botone-negros .botonera ul li a:hover {
  background: #fff;
  color: #2129E0;
}

@media (max-width: 812px) {
  .botonera {
    display: none;
  }
}
.menu-normal.uno.has-mega-menu {
  position: ABSOLUTE;
  background: #fff;
  display: none;
}

.menu-normal ul {
  flex-direction: column;
  display: flex !important;
  max-width: 250px;
}

.menu-normal ul li a {
  font-weight: 400 !important;
  display: block;
}

/*FOOTER*/
.publique a {
  display: flex;
  align-items: center;
}

.publique {
  position: fixed;
  z-index: 10;
  right: 30px;
  bottom: 50px;
}

.foto-public {
  max-width: 78px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  border: solid 3px #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
}

.texto-boton-public {
  background: #fb6b04;
  font-weight: 700;
  padding: 17px 20px 17px 54px;
  border-radius: 50px;
  margin-left: -41px;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  color: #fff;
}

.footer {
  background-color: #EFEFEF;
}

.jc-fin {
  text-align: right;
}

@media (max-width: 812px) {
  .jc-fin {
    text-align: left;
  }
}
.btn-footer {
  max-width: 700px;
  margin: 0 auto;
}

.btn-foot {
  text-align: center;
  /* border: solid; */
}

.final {
  border-top: solid 1px #ccc;
  margin-top: 40px;
}

p.slogan-footer {
  text-align: center;
}

.logo-footer img {
  max-width: 212px;
}

.logo-footer span {
  display: block;
  margin-bottom: 20px;
}

ul.menu-footer {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

ul.menu-footer li a {
  font-size: 20px;
  line-height: 25px;
}

.logos-metodos {
  max-width: 90%;
}

.copy {
  font-size: 15px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 30px;
}

.info-footer ul {
  list-style: none;
  padding: 0px;
  font-size: 15px;
}

.info-footer li {
  padding-bottom: 8px;
}

.info-footer li a {
  font-weight: 700;
  text-decoration: underline;
}

.redes ul {
  list-style: none;
  display: flex;
  padding: 0px;
}

.redes li a {
  margin-right: 13px;
  color: #999;
}

.disefix a strong {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

.botones-footer ul {
  list-style: none;
  padding: 0px;
  font-size: 20px;
}

.botones-footer li a {
  font-size: 15px;
}

.caja-footer h3 {
  font-size: 17px;
}

@media (max-width: 812px) {
  .copy {
    flex-direction: column;
  }
}
/*BOTONERA*/
.botonera li.active > a {
  background-color: #707070;
}

.mega-menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  width: 100%;
  max-width: 1480px;
  display: none;
}

.mega-menu img {
  display: block;
}

.botones li a {
  color: #000 !important;
  text-transform: none;
  padding: 0px 0px 5px !important;
  font-size: 16px !important;
}

.botones li a:hover {
  color: #fff !important;
}

.botones > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 740px;
  float: right;
}

.botones ul ul {
  flex-direction: column;
  display: flex;
  margin-bottom: 15px;
}

.botones ul li a {
  font-weight: 600;
  font-size: 20px;
}

.botones ul ul li a {
  font-weight: 400;
  font-size: 18px;
}

.menu-normal {
  position: absolute;
  background: #fff;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  display: none;
}

.menu-normal ul li a {
  padding: 10px !important;
}

a.prend {
  background: #EBC627;
}

.logo-menu {
  max-width: 200px;
  padding: 22px 0px;
}

.header-menu-mov {
  max-width: 90%;
  margin: 0 auto;
}

.bt-movil {
  background: #161616;
  position: fixed;
  top: 0px;
  z-index: 1000000;
  width: 100%;
  max-width: 400px;
  right: 0px;
  height: 100%;
  overflow: auto;
  right: -100%;
}

a.closs {
  color: #fff;
  font-size: 20px;
  float: right;
}

.botonera-mov ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.botonera-mov li {
  padding: 0px;
  background-color: #161616;
  border-bottom: 1px solid #333;
}

.botonera-mov li a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 20px;
  display: block;
  font-size: 23px;
  text-transform: uppercase;
  font-style: italic;
}

.botonera-mov .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
}

.botonera-mov .sub-menu li {
  padding: 0px;
  background-color: #424141;
  border-bottom: 1px solid #5b5858;
}

.botonera-mov .sub-menu li a {
  color: #FFF;
  text-decoration: none;
  font-weight: 400 !important;
  font-style: normal;
  font-size: 20px;
}

.visible {
  display: block !important;
}

/* Estilos para el formulario */
#search-form {
  display: flex;
  justify-content: center;
  align-items: center;
}

#search-input {
  width: 94%;
  padding: 15px;
  border: 2px solid #ccc;
  border-radius: 5px;
  font-size: 26px;
  font-weight: "Barlow Condensed", sans-serif !important;
}

/* Estilos para los resultados de la sugerencia */
.busqueda {
  background: #fff;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  top: 0px;
  overflow: auto;
  padding-bottom: 50px;
  display: none;
}

.contenedor-buscador h2 {
  text-transform: uppercase;
  font-size: 31px;
}

.instrucciones {
  font-size: 18px;
  padding-bottom: 20px;
}

.contenedor-buscador {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.cerrado {
  position: absolute;
  right: 0px;
  font-size: 30px;
  cursor: pointer;
}

#search-results {
  max-width: 600px;
  /* margin: 0 auto; */
  padding: 0px;
  display: none;
  padding-top: 20px;
}

#search-results a {
  display: flex;
  margin-bottom: 10px;
  padding: 5px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial, sans-serif;
  border: 1px solid #ccc;
  border-radius: 3px;
  align-items: center;
}

.product-busqueda .price {
  font-size: 17px;
  font-weight: 700;
  padding-left: 10px;
}

#search-results a img {
  width: 40px;
  margin-right: 10px;
}

#search-results a:hover {
  background-color: #e0e0e0;
  color: #000;
}

@media (max-width: 812px) {
  .contenedor-buscador {
    max-width: 600px;
    width: 90%;
    margin: 0 auto;
    position: relative;
  }
  .contenedor-buscador h2 {
    text-transform: uppercase;
    font-size: 31px;
    max-width: 90%;
  }
  .font-60 {
    font-size: 42px;
    line-height: 44px;
  }
}
.is-valid {
  border-color: #28a745;
}

.is-invalid {
  border-color: #dc3545;
}

.desc-seccion {
  font-size: 20px;
  max-width: 70%;
  padding-bottom: 30px;
}

.maximo {
  max-width: 1680px;
  margin: 0 auto;
}

.item h3 {
  color: #fff;
  font-size: 18px;
  padding: 20px 0px;
  /* text-transform: uppercase; */
}

.item:hover .item-foto img {
  transform: scale(1.1);
}

.item-foto {
  height: 300px;
  overflow: hidden;
}

.item-foto img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
  transition: 0.3s all ease;
}

.qr img {
  max-width: 170px;
}

.qr {
  text-align: right;
  display: flex;
  justify-content: end;
}

.flexis {
  display: flex;
  align-items: center;
}

.logo-serna {
  margin-right: 20px;
}

@media (max-width: 812px) {
  .flexis {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .span-2.flexis img {
    max-width: 233px;
    margin-bottom: 30px;
  }
  .texto-senatur {
    max-width: 90%;
    text-align: center;
  }
  .logo-serna {
    margin-right: 0px;
  }
  .qr {
    text-align: right;
    display: flex;
    justify-content: center;
  }
}
.gradient {
  background: #EFEFFF;
  background: linear-gradient(0deg, rgb(239, 239, 255) 0%, rgba(0, 0, 0, 0) 100%);
}

.gradientDos {
  background: #EFEFFF;
  background: linear-gradient(180deg, rgb(239, 239, 255) 0%, rgba(0, 0, 0, 0) 100%);
}

.bg-emerald-50 {
  --tw-bg-opacity: 1;
  background-color: rgb(33, 41, 224) !important;
  color: #fff !important;
}

article.traq-agencia-card {
  font-size: 14px;
}

.font-16 {
  font-size: 14px;
  line-height: 20px;
}

.agency1 {
  font-size: 14px;
  line-height: 19px;
}

span.suc {
  display: block;
  width: 100%;
  font-weight: 700;
  padding: 10px 0px;
  border-bottom: solid rgba(204, 204, 204, 0.4392156863);
  margin-bottom: 13px;
}

/* mf-agencia-card.css */
.mf-agencia-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 20px;
  color: #1e293b;
  font-family: Inter, sans-serif;
  transition: box-shadow 0.2s ease;
}

.mf-agencia-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.mf-agencia-card__logo img {
  max-width: 150px;
  object-fit: contain;
}

.mf-agencia-card__inicial {
  width: 40px;
  height: 40px;
  background: #1e293b;
  color: #fff;
  font-weight: 600;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mf-agencia-card__titulo {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.mf-agencia-card__descripcion {
  font-size: 16px;
  color: #64748b;
  margin-bottom: 10px;
}

.mf-agencia-card__rubros,
.mf-agencia-card__info,
.mf-agencia-card__ubicacion {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.mf-agencia-card__tag,
.mf-agencia-card__pill,
.mf-agencia-card__loc {
  font-size: 14px;
  padding: 4px 10px;
  border-radius: 9999px;
  background: #f8fafc;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.pill-verde {
  background: #ecfdf5;
  color: #047857;
  border: none;
}

.mf-agencia-card__estado-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  margin-top: 10px;
}

.mf-agencia-card__estado {
  background: #e2e8f0;
  color: #1e293b;
  padding: 6px 12px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 9999px;
}

.mf-agencia-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.mf-agencia-card__links a {
  color: #047857;
  text-decoration: none;
}

.mf-agencia-card__links a:hover {
  text-decoration: underline;
}

/* STEP GENERAL DE ESTADO DE LA COTIZACIÓN */
.traq-status-stepper {
  margin: 24px 0 32px;
  padding: 16px 20px 20px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.traq-status-stepper__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.traq-status-stepper__item {
  position: relative;
  flex: 1 1 180px;
  padding-left: 32px;
  min-height: 32px;
}

.traq-status-stepper__circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 2px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  background: #fff;
  color: #64748b;
}

.traq-status-stepper__body {
  font-size: 13px;
}

.traq-status-stepper__label {
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 2px;
}

.traq-status-stepper__desc {
  color: #64748b;
}

/* estado actual */
.traq-status-stepper__item.is-current .traq-status-stepper__circle {
  border-color: #4f46e5;
  background: #4f46e5;
  color: #fff;
}

/* pasos completados */
.traq-status-stepper__item.is-complete .traq-status-stepper__circle {
  border-color: #22c55e;
  background: #22c55e;
  color: #fff;
}

/* nota cuando está descartado */
.traq-status-stepper__note {
  margin-top: 8px;
  font-size: 13px;
  color: #b91c1c;
}

/* ESTADOS DE AGENCIA EN LA PASTILLA */
.mf-agencia-card__estado {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 13px;
  font-weight: 600;
}

.pill-estado--pendiente {
  background: #e2e8f0;
  color: #0f172a;
}

.pill-estado--aprobada {
  background: #dcfce7;
  color: #166534;
}

.pill-estado--rechazada {
  background: #fee2e2;
  color: #b91c1c;
}

/* pequeños helpers para que las cards queden ordenadas */
.mf-agencia-card__bottom {
  display: flex;
}

.mf-agencia-card__logo img {
  margin-bottom: 20px;
}

.mf-agencia-card__inicial {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #1f2937;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 20px;
}

small.woocommerce-price-suffix {
  font-size: 14px;
  font-weight: 400;
}

.dts {
  max-width: 70%;
  padding: 15px;
  background: #f1f0f0;
  margin-bottom: 30px;
  border-radius: 10px;
}

/*BANNER*/
.sas {
  overflow: hidden;
  width: 100%;
}

.banner {
  height: 750px;
  color: #fff;
  position: relative;
}

.textos-banner {
  max-width: 88%;
  padding-top: 20px;
}

.descripcion-banner {
  font-size: 20px;
  padding-top: 25px;
  max-width: 90%;
  padding-bottom: 45px;
  line-height: 28px;
}

.velo-banner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2392156863);
}

a.btn-negro {
  color: #fff;
  background: #000;
  display: block;
  width: fit-content;
  padding: 13px 30px;
  font-size: 18px;
}

.textos-banner h1 {
  font-weight: 700;
  line-height: 57px;
  margin: 0px;
  /* font-style: italic; */
  font-size: 52px;
  font-family: "Poppins", sans-serif;
  max-width: 87%;
}

.textos-banner h1 strong {
  display: block;
  font-style: normal;
}

.foto-pc {
  position: absolute;
  z-index: -1;
  width: 750px;
  overflow: hidden;
  width: 100%;
  top: 0px;
}

.foto-pc img {
  height: 750px;
  object-fit: cover;
}

.foto-pc {
  display: block;
}

.foto-tel {
  display: none;
}

.colores {
  background: transparent !important;
}

.slide {
  position: relative;
}

a.btn-banner {
  background: #2129E0;
  color: #fff;
  padding: 15px;
  display: block;
  width: fit-content;
  font-size: 21px;
  border-radius: 10px;
  font-weight: 700;
}

@media (max-width: 812px) {
  a.btn-banner {
    background: #ffffff;
    color: #242ae2;
    padding: 15px;
    display: block;
    width: fit-content;
    font-size: 21px;
    border-radius: 10px;
    font-weight: 700;
  }
  .foto-pc {
    display: none;
  }
  .foto-tel {
    height: 400px;
    display: block;
  }
  .foto-tel img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .banner {
    height: auto;
    color: #fff;
    position: relative;
    align-items: end;
  }
  .foto-pc {
    position: relative;
    z-index: -1;
    overflow: hidden;
    width: 100%;
  }
  .foto-pc img {
    height: 450px;
    object-fit: cover;
  }
  .textos-banner {
    max-width: 90%;
    margin: 0 auto;
    padding: 30px 0px 50px;
  }
  .textos-banner h1 {
    line-height: 44px;
    font-size: 50px;
  }
}
.imagen-carrucel img {
  max-height: 70px;
  width: auto !important;
  max-width: 200px;
  margin: 0 auto;
}

.imagen-carrucel {
  background: #fff;
}

/*CARD PRODUCTO*/
.texto-producto h4 {
  margin: 10px 0px;
  font-size: 20px;
}

.sale {
  font-size: 18px;
  padding-top: 10px;
}

.descripcion-listado {
  font-size: 18px;
  padding-bottom: 10px;
  max-width: 85%;
}

.precio {
  font-size: 25px;
}

.oferta .normal {
  text-decoration: line-through;
  color: #ccc;
}

.item-producto {
  opacity: 1; /* Aplicamos una opacidad por defecto */
  transition: opacity 0.2s ease-out; /* Añadimos una transición suave */
  position: relative; /* Añadimos posición relativa para alinear el botón */
}

.item-producto:hover {
  opacity: 0.8; /* Al hacer hover aumentamos la opacidad */
}

.agregar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  background: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
}

.agregar:hover {
  background: #000;
  color: #fff;
}

.owl-item li {
  list-style: none;
  padding: 0px;
}

.navi .owl-nav .owl-next, .navi .owl-nav .owl-prev {
  position: absolute;
  top: 48%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}

.navi .owl-nav .owl-next {
  right: 0;
  display: flex;
  margin-right: 2%;
  font-size: 30px !important;
}

.navi .owl-nav .owl-prev {
  left: 0;
  display: flex;
  margin-left: 2%;
  font-size: 30px !important;
}

.navi img {
  border: solid 1px #eee;
}

.navi li {
  margin: 4px;
}

.item-producto:hover .agregar {
  display: block; /* Mostramos el botón al hacer hover */
  opacity: 1; /* Añadimos opacidad 1 para animación */
  animation: fadeIn 0.5s ease-in-out; /* Añadimos una animación de fadeIn */
  width: fit-content;
  min-width: 130px;
  text-align: center;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.producto-traq {
  background: #fff;
  border: solid 1px #ccc;
  border-radius: 10px;
  overflow: hidden;
}

.prod-name {
  text-align: center;
  font-size: 30px;
  color: #fff;
  padding: 28px;
  font-family: "Poppins", sans-serif;
}

.producto-traq .prod-name {
  text-align: center;
  font-size: 24px;
  color: #fff;
  padding: 10px;
  font-family: "Poppins", sans-serif;
}

.producto-traq .descripcion-producto {
  font-size: 14px;
  line-height: 19px;
}

.agregar-ver {
  display: flex;
}

.producto-traq .anadir-al-carro button {
  background: #2129E0;
  color: #fff;
  height: 50px;
  padding: 0px 30px;
  font-size: 20px;
  border-radius: 10px;
  border: solid 2px;
}

@media (max-width: 812px) {
  .producto-traq .anadir-al-carro button {
    background: #2129E0;
    color: #fff;
    height: 50px;
    padding: 0px 15px;
    font-size: 15px;
    border-radius: 10px;
    border: solid 2px;
  }
  .traq-modulos .owl-nav button {
    font-size: 46px !important;
    margin: 0px 15px;
  }
}
.producto-traq .descripcion-producto p {
  margin: 0px;
}

.descripcion-producto br {
  display: none;
}

.producto-traq .descripcion-producto strong {
  font-size: 18px;
  padding-bottom: 14px;
  display: block;
}

.producto-traq .precios {
  padding-top: 20px;
}

.producto-traq .ver-mas a {
  background: #fff;
  color: #2129E0;
  height: 42px;
  padding: 0px 15px;
  font-size: 18px;
  border-radius: 5px;
  border: solid 2px #2129E0;
  display: block;
  line-height: 42px;
  margin-left: 20px;
}

.anadir-al-carro button {
  background: #2129E0;
  color: #fff;
  height: 50px;
  padding: 0px 30px;
  font-size: 20px;
  border-radius: 10px;
  border: solid 2px;
}

.ver-mas a {
  background: #fff;
  color: #2129E0;
  height: 42px;
  padding: 0px 30px;
  font-size: 20px;
  border-radius: 5px;
  border: solid 2px #2129E0;
  display: block;
  line-height: 42px;
  margin-left: 20px;
}

.precio-producto {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  font-size: 25px;
}

@media (max-width: 812px) {
  .anadir-al-carro button {
    background: #2129E0;
    color: #fff;
    height: 50px;
    padding: 0px 10px;
    font-size: 16px;
    border-radius: 10px;
    border: solid 2px;
  }
  .ver-mas a {
    background: #fff;
    color: #2129E0;
    height: 42px;
    padding: 2px 18px;
    font-size: 17px;
    border-radius: 5px;
    border: solid 2px #2129E0;
    display: block;
    line-height: 42px;
    margin-left: 20px;
  }
}
.descripcion-producto {
  font-size: 16px;
}

.descripcion-producto strong {
  font-size: 18px;
  padding-bottom: 0px;
  display: block;
}

.producto-destacado {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -webkit-box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  margin-bottom: 20px;
}

.caja-prod {
  max-width: 80%;
  margin: 0 auto;
  padding-top: 17px;
}

/*CARRUCEL CATEGORIAS*/
.item-categoria {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.image-container:hover img {
  transform: scale(1.1);
}

.velo-gradiente {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
  opacity: 0.6;
  transition: opacity 0.5s;
}

.image-container:hover .velo-gradiente {
  opacity: 1;
}

.card {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: calc(100% - 40px);
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  opacity: 0;
  transition: opacity 0.5s, transform 0.5s;
  height: 100%;
  display: grid;
  align-items: end;
}

.image-container:hover .card {
  opacity: 1;
}

.image-container:hover h3.titulo-card-principal {
  opacity: 0;
}

.descripcion-card {
  font-size: 18px;
  margin-bottom: 20px;
}

.card a {
  display: inline-block;
  padding: 10px 20px;
  background-color: #ff8b14;
  color: #fff;
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.5s;
  font-size: 26px;
}

.card a:hover {
  background-color: #000;
  color: #fff;
}

h3.titulo-card-principal {
  left: 20px;
  bottom: 10px;
  position: absolute;
  color: #fff;
  font-size: 23px;
  font-weight: 700;
  line-height: 27px;
  opacity: 1;
  text-transform: uppercase;
}

.titulo-card {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  opacity: 1;
  text-transform: uppercase;
}

h3.titulo-card-principal strong, .titulo-card strong {
  font-size: 30px;
  font-weight: 600;
  display: block;
}

/*MENSAJE ENVIOS*/
.mensaje-env h3 {
  margin: 0px 0px 10px;
}

@media (min-width: 812px) {
  .mensaje-env h3 {
    margin: 0px 0px 0px;
  }
}
/*DESTACADOS*/
.destacado {
  height: 100%;
}

.contenedor-destacado {
  padding: 30px;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.num {
  font-size: 115px;
  font-weight: 700;
  color: #EBC627;
}

.text-destacados strong {
  font-size: 43px;
  display: block;
  margin-top: -7px;
  padding-bottom: 15px;
}

.text-destacados {
  font-size: 29px;
  line-height: 32px;
}

.code {
  padding: 12px;
  border: dashed 1px #fff;
  margin-top: 20px;
  font-size: 22px;
}

.code strong {
  font-size: 36PX;
}

.mensajes .owl-nav {
  font-size: 32px;
  display: flex;
  justify-content: space-between;
  /* margin-top: -42px; */
  position: absolute;
  width: 100%;
  top: 43%;
}

.mensajes .owl-prev, .mensajes .owl-next {
  left: 0px;
  top: 0px;
  display: block;
  width: 38px;
  display: block;
  height: 50px;
}

.mensajes .owl-nav span {
  font-size: 54px;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 45px;
  border-radius: 50px;
}

.mensajes .owl-nav span:hover {
  font-size: 54px;
  display: block;
  background: #eee;
  width: 50px;
  height: 50px;
  line-height: 45px;
  border-radius: 50px;
}

.mensajes .owl-prev {
  margin-left: -50px;
}

.mensajes .owl-next {
  margin-right: -50px;
}

.pagina-aviso {
  background: #eee;
}

.pagina-aviso .code strong {
  font-size: 45PX;
}

.pagina-aviso .contenedor-destacado {
  padding: 0px;
  text-align: left;
  display: flex;
  flex-direction: inherit;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.pagina-aviso .num {
  font-size: 115px;
  font-weight: 700;
  color: #060606;
}

.pagina-aviso .text-destacados {
  font-size: 29px;
  line-height: 32px;
  margin-left: 16px;
}

.pagina-aviso .text-destacados strong {
  font-size: 63px;
  display: block;
  margin-top: 9px;
  padding-bottom: 11px;
}

.pagina-aviso .code {
  padding: 12px;
  border: dashed 1px #a0a0a0;
  margin-top: 0px;
  font-size: 22px;
  margin-left: 30px;
}

.pagina-aviso .code strong {
  display: block;
}

@media (max-width: 812px) {
  .pagina-aviso .contenedor-destacado {
    flex-wrap: wrap;
  }
  .pagina-aviso .text-destacados {
    font-size: 14px;
    line-height: 11px;
    margin-left: 16px;
  }
  .pagina-aviso .text-destacados strong {
    font-size: 28px;
    display: block;
    margin-top: 9px;
    padding-bottom: 11px;
  }
  .pagina-aviso .num {
    font-size: 52px;
    font-weight: 700;
    color: #060606;
  }
  .pagina-aviso .code strong {
    font-size: 21PX;
  }
  .pagina-aviso .code {
    padding: 8px;
    border: dashed 1px #a0a0a0;
    margin-top: 0px;
    font-size: 17px;
    margin-left: 30px;
    line-height: 20px;
  }
  .pagina-aviso {
    background: #eee;
    padding: 7px 0px;
  }
}
/*REPRODUCTOR DE VIDEO*/
#play-video {
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

#play-video i {
  margin-top: 5px;
  margin-left: 7px;
}

.caja-texto h2 {
  margin: 0px;
  font-weight: 300;
  line-height: 40px;
}

.caja-texto h2 strong {
  margin: 0px;
  font-weight: 700;
}

.caja-texto {
  padding-left: 0px;
}

@media (max-width: 812px) {
  .caja-texto {
    padding-left: 0px;
    padding-top: 20px;
  }
  .caja-texto h2 {
    font-size: 30px !important;
    padding-bottom: 0px !important;
    line-height: 32px !important;
  }
}
.paginas .texto-banner-cat h1 {
  font-size: 25px;
  text-transform: none;
  font-style: normal;
  line-height: 30px;
  font-weight: 300;
  padding-top: 50px;
}

.paginas .texto-banner-cat h1 strong {
  font-size: 80px;
  display: block;
}

.texto-banner-cat h2 {
  font-size: 54px;
  line-height: 50px;
  margin-bottom: 26px;
  font-weight: 200;
  font-style: italic;
}

.texto-banner-cat h2 strong {
  font-weight: 700;
  font-style: normal;
}

.texto-banner-categoria {
  font-size: 22px;
}

a.ir {
  padding: 10px 35px;
  display: block;
  background: #fb6b09;
  font-size: 28px;
  width: fit-content;
  border-radius: 0;
  margin-top: 31px;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
  margin: 30px auto 0px;
}

a.ir:hover {
  background: #fff;
  color: #fb6b09;
}

.imagen-banner {
  display: block;
  position: relative;
  height: 600px;
  background-size: cover !important;
  background-attachment: fixed !important;
}

.texto-banner-cat {
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}

.imagen-banner-tel {
  display: none;
}

.paginas .imagen-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
}

.banner-categoria {
  display: grid;
  position: relative;
  height: 700px;
  overflow: hidden;
}

.texno-interno.grid-center {
  z-index: 10;
  position: relative;
  height: 600px;
  text-align: center;
  width: 100%;
}

@media (min-width: 813px) {
  .banner-categoria.paginas .contenedor-seccion {
    background: transparent !important;
  }
}
@media (max-width: 812px) {
  .banner-categoria {
    display: grid;
    position: relative;
    height: auto;
    overflow: hidden;
  }
  .banner-categoria.paginas .contenedor-seccion {
    width: 100% !important;
    max-width: 100%;
  }
  .paginas .texto-banner-cat h1 strong {
    font-size: 50px;
  }
  .paginas .texto-banner-cat {
    max-width: 100%;
  }
  .paginas .texto-banner-cat h1 {
    font-size: 26px;
    text-transform: none;
    font-style: normal;
    line-height: 30px;
    font-weight: 300;
  }
  .paginas .texto-banner-cat {
    font-size: 16px;
    max-width: 85%;
    font-weight: 300;
    line-height: 19px;
    padding-bottom: 30px;
    margin: 0 auto;
  }
  .texto-banner-categoria {
    padding-bottom: 30px;
    line-height: 30px;
  }
  .texto-banner-cat h2 {
    font-size: 42px;
    line-height: 41px;
    margin-bottom: 26px;
    font-weight: 300;
    font-style: italic;
  }
  .imagen-banner-tel {
    display: block;
    position: relative;
  }
}
.texyos h2 {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 30px;
  font-family: "Poppins", sans-serif;
}

.texyos h2 strong {
  font-weight: 700;
}

.texto-caja {
  padding-top: 10px;
}

.caja-gris ul {
  padding: 0px;
  list-style: none;
}

.primero .texyos h2 {
  padding-top: 65px;
}

.primero img {
  border-radius: 0px;
}

.caja-gris ul li {
  padding-bottom: 5px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 5px;
}

.caja-gris ul li:last-child {
  padding-bottom: 10px;
  border-bottom: solid 1px #fff;
  margin-bottom: 10px;
}

.texto-caja p {
  margin: 0px;
  padding: 0px;
  margin-bottom: 17px;
}

figcaption {
  padding-top: 22px;
  font-style: italic;
  font-size: 14px;
  max-width: 90%;
  margin: 0 auto;
}

a.boton-caja {
  background: #2129E0;
  color: #fff;
  padding: 15px;
  display: block;
  width: fit-content;
  font-size: 21px;
  border-radius: 10px;
  font-weight: 700;
  margin-top: 40px;
}

.invertido .texyos {
  float: right;
  margin-left: 0px;
  margin-right: 40px;
}

@media (max-width: 812px) {
  .invertido .texyos {
    float: none;
    margin-left: auto;
    margin-right: auto;
    padding: 50px 0px 100px;
  }
}
a.boton-caja:hover {
  background: #fff;
  color: #fb6b09;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  border: solid 2px;
}

.invertido .span-1:first-child {
  grid-column: 2;
}

.invertido .span-1:last-child {
  grid-column: 1;
  grid-row: 1;
}

@media (min-width: 812px) {
  .primero {
    margin-top: -50px;
  }
}
.texyos {
  max-width: 500px;
  font-size: 16px;
  line-height: 24px;
  margin-left: 50px;
}

@media (max-width: 812px) {
  .primero .contenedor-seccion {
    max-width: 100%;
    width: 100%;
  }
  .primero .texyos h2 {
    padding-top: 40px;
  }
  .texyos {
    max-width: 90%;
    margin: 0 auto;
  }
  .invertido .span-1:first-child {
    grid-column: 1/3;
    padding-top: 0px;
  }
  .invertido .span-1:last-child {
    grid-column: 1/3;
    grid-row: 2;
  }
  div#dos-textos {
    grid-gap: 0px;
  }
}
ul.pasos-list {
  list-style: none;
  padding: 0px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  /* border-radius: 10px; */
}

.item-pasos {
  background: #fff;
  margin-bottom: 10px;
  text-align: center;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  border-radius: 10px;
  height: 300px;
}

.item-pasos .numero {
  text-align: center;
  padding: 18px;
  font-size: 35px;
  width: 43px;
  /* background: #e1b0fa; */
  /* background: rgb(189, 131, 230); */
  /* background: linear-gradient(180deg, rgb(189, 131, 230) 0%, rgb(226, 9, 159) 100%); */
  color: #fff;
  /* min-width: 50px; */
  height: 40px;
  line-height: 40px;
  background: #fb6b04;
  margin: 0px auto 30px;
}

.pasos-list {
  max-width: 1100px;
  margin: 0 auto;
  width: 90%;
}

.num {
  padding-top: 20px;
}

.item-pasos .texto {
  font-size: 19px;
  /* margin-left: 20px; */
  max-width: 80%;
  margin: 0 auto;
  font-size: 17px;
  padding-bottom: 24px;
}

.texto strong {
  display: block;
  padding-bottom: 12px;
}

.contenedor-especial {
  background-size: cover !important;
  padding: 150px 0px 200px;
  margin-top: -150px;
}

div#nos_importa {
  z-index: 10;
}

h2.titulo-especial strong {
  display: block;
}

h2.titulo-especial {
  font-size: 46px;
  text-transform: none;
  font-weight: 300;
  font-style: normal;
  padding-bottom: 20px;
  line-height: 44px;
  margin: 0px px;
  text-align: center;
  padding-bottom: 50px;
}

@media (max-width: 812px) {
  .item-pasos {
    background: #fff;
    margin-bottom: 10px;
    text-align: center;
    box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
    -webkit-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
    -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
    border-radius: 10px;
    height: 430px;
  }
  ul.pasos-list {
    list-style: none;
    max-width: 90%;
    margin: 0 auto;
  }
  ul.pasos-list .numero {
    text-align: center;
    padding: 18px 25px;
    font-size: 35px;
    width: auto;
    /* background: #e1b0fa; */
    background: rgb(189, 131, 230);
    background: linear-gradient(180deg, rgb(189, 131, 230) 0%, rgb(226, 9, 159) 100%);
    color: #fff;
  }
}
.caja-texto h2 {
  font-size: 55px;
  text-transform: uppercase;
  font-weight: 600;
  font-style: italic;
  padding-bottom: 20px;
  line-height: 44px;
}

.caja-texto h3 {
  font-size: 26px;
  text-transform: uppercase;
}

.caja-texto {
  font-size: 16px;
  font-weight: 300;
  max-width: 100%;
  margin: 0 auto;
}

.contenedor-texto {
  max-width: 800px;
  width: 90%;
}

#como_funciona {
  color: #fff !important;
}

#como_funciona .texto-caja p {
  color: #fff !important;
}

.tit-caja-texto h2 {
  font-size: 30px;
  text-transform: none;
  font-style: normal;
  padding-bottom: 20px;
  line-height: 36px;
  margin: 0px;
  max-width: 100%;
}

.texto-caja ol {
  counter-reset: paso;
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.texto-caja li {
  counter-increment: paso;
  position: relative;
  padding-left: 60px;
}

.texto-caja li::before {
  content: counter(paso);
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  background-color: #08A80E; /* Azul */
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  font-weight: bold;
  font-size: 16px;
}

#como_funciona a.boton-caja {
  background: #fff;
  color: #2129E0;
  padding: 15px;
  display: block;
  width: fit-content;
  font-size: 21px;
  border-radius: 10px;
  font-weight: 700;
  margin-top: 40px;
}

.texto-caja h3 {
  margin: 0 0 5px;
  font-size: 18px;
}

.texto-caja p {
  color: #555;
}

@media (max-width: 812px) {
  .tit-caja-texto h2 {
    padding-top: 34px;
    font-size: 30px;
    line-height: 34px;
  }
}
.texyos ul {
  list-style: none;
  padding: 0px;
}

.texyos li {
  padding-bottom: 0px;
}

strong.as {
  font-size: 21px;
}

.tit-caja-texto span {
  display: block;
  font-size: 29px;
  font-weight: 200;
}

.ui-lista a {
  display: grid;
  align-items: center;
  grid-gap: 27px;
  grid-template-columns: 40% 55%;
}

.foto-lista {
  width: 220px;
  overflow: hidden;
}

.foto-lista img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ui-pos .titulo-seccion h2 {
  padding-bottom: 20px;
}

.ui-pos .titulo-seccion {
  max-width: 70%;
  text-align: center;
  margin: 0 auto;
}

.ui-lista a:hover {
  background: #000;
  color: #fff;
  transform: scale(1.1);
}

@media (max-width: 812px) {
  .ui-pos .titulo-seccion {
    max-width: 90%;
    text-align: center;
    margin: 0 auto;
  }
  .ui-lista {
    margin-bottom: 30px;
    max-width: 90%;
    margin: 0 auto 30px;
  }
  .foto-lista {
    width: 145px;
    overflow: hidden;
    height: 130px;
  }
  .ui-pos .titulo-seccion .font-20 {
    font-size: 15px;
  }
  .ui-lista a {
    display: grid;
    align-items: initial;
    grid-gap: 27px;
    grid-template-columns: 40% 55%;
  }
}
.contenedor-titulo h1 {
  font-size: 25px;
  font-weight: 400;
}

.contenedor-titulo h2 {
  font-size: 77px;
  font-weight: 300;
  max-width: 80%;
  line-height: 83px;
  padding-bottom: 20px;
  font-style: italic;
}

.contenedor-titulo h2 strong {
  display: block;
  font-style: normal;
}

.bajada-titulo {
  font-size: 21px;
  max-width: 80%;
  line-height: 32px;
  font-weight: 300;
}

a.back {
  position: absolute;
  right: 0px;
  font-size: 23px;
}

@media (max-width: 812px) {
  a.back {
    position: relative;
    right: 0px;
    font-size: 21px;
    margin-bottom: 0px;
    display: block;
    top: -80px;
    text-align: left;
  }
  .contenedor-titulo h2 {
    font-size: 50px;
    font-weight: 300;
    max-width: 100%;
    line-height: 48px;
    padding-bottom: 20px;
    font-style: italic;
  }
  .bajada-titulo {
    font-size: 16px;
    max-width: 100%;
    line-height: 21px;
    font-weight: 300;
  }
  .contenedor-titulo h1 {
    font-size: 20px;
    font-weight: 400;
    margin-top: -54px;
  }
}
.galeria-foto {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  padding-top: 30px;
}

.titulo-centrado h2 {
  font-size: 42px;
  text-transform: none;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  padding-bottom: 20px;
  line-height: 37px;
  margin: 0px auto;
  text-align: center;
  padding-bottom: 30px;
  max-width: 700px;
  line-height: 46px;
}

@media (max-width: 812px) {
  .titulo-centrado h2 {
    font-size: 30px;
    text-transform: none;
    font-family: "Poppins", sans-serif;
    font-style: normal;
    padding-bottom: 20px;
    line-height: 37px;
    margin: 0px auto;
    text-align: center;
    padding-bottom: 0px;
    max-width: 700px;
    line-height: 46px;
  }
}
#preguntas .titulo-centrado h2 {
  color: #fff;
}

.descr {
  font-size: 16px;
}

.galeria-item {
  padding-bottom: 20px;
}

/* Estilo general del lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  text-align: center;
}

.lightbox-image {
  max-width: 600px;
  max-height: 100%;
}

.lightbox-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 24px;
  color: white;
  cursor: pointer;
}

/* Estilo para galería de imágenes */
.galeria-item {
  position: relative;
  cursor: pointer;
  margin: 0px;
}

.galeria-item img {
  max-width: 100%;
  height: 100%;
  transition: transform 0.2s ease-in-out;
  display: block;
}

.galeria-item img:hover {
  transform: scale(1.1);
}

.botones-light {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 50%;
}

.botones-light button {
  background: transparent;
  border: none;
  color: #fff;
  padding: 10px;
  font-size: 24px;
  margin-top: 0px;
}

@media (max-width: 812px) {
  .galeria-foto {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    padding-top: 10px;
  }
  .galeria-item {
    position: relative;
    cursor: pointer;
    height: auto;
    margin: 0px;
  }
}
.galeria-foto.tipos {
  display: grid;
  grid-gap: 30px;
  padding-top: 30px;
}

.item-tip .galeria-item {
  position: relative;
  cursor: pointer;
  margin: 0px auto;
  max-width: 100%;
  width: 150px;
}

.descrp {
  font-size: 16px;
}

.descripcion h3 {
  font-size: 20px;
  max-width: 80%;
  margin: 0 0px 30px;
}

.item-tipos {
  display: grid;
  grid-template-columns: 100%;
  /* font-size: 14px; */
}

.item-tipos .descripcion {
  line-height: 18px;
  line-height: 24px;
}

.bajada {
  max-width: 100%;
  margin: 0 auto;
  /* padding-bottom: 33px; */
  font-size: 26px;
  padding-bottom: 10px;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.otros-contenidos {
  max-width: 70%;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0px 50px;
}

.texto-otros ul {
  list-style: none;
  padding: 0px;
}

.texto-otros li {
  padding: 20px 0px;
  border-bottom: solid 1px #ccc;
}

.titulo-otros h3 {
  padding-bottom: 20px;
  font-size: 35px;
  font-weight: 700;
  margin: 0px;
}

.bajada-tipos {
  max-width: 70%;
  margin: 0 auto;
  padding-bottom: 30px;
}

@media (max-width: 812px) {
  .item-tipos .descripcion {
    line-height: 18px;
    text-align: left;
    line-height: 24px;
  }
  .bajada-tipos {
    max-width: 100%;
    text-align: center;
    margin: 0 auto;
    padding-bottom: 30px;
  }
  .descripcion h3 {
    font-size: 20px;
    max-width: 100%;
    margin: 0 auto 10px;
  }
  .descrp {
    font-size: 16px;
    min-height: 100px;
    line-height: 20px;
  }
  .otros-contenidos {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 50px 0px 50px;
  }
  .titulo-otros h3 {
    padding-bottom: 20px;
    font-size: 27px;
    font-weight: 700;
    margin: 0px;
  }
  .bajada {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 0px;
    /* padding-top: 174px; */
  }
  .galeria-foto.tipos {
    display: grid;
    grid-template-columns: repeat(1, 1fr) !important;
    grid-gap: 20px;
    padding-top: 30px;
  }
  .item-tipos {
    display: grid;
    grid-template-columns: 27% 61%;
    align-items: initial;
    /* font-size: 14px; */
  }
  .tipos .titulo-centrado h2 {
    text-align: left;
  }
  .titulo-secciones .bajada {
    max-width: 90%;
    text-align: center;
  }
  .galeria-item img {
    max-width: auto;
    height: 100px;
    object-fit: cover;
    transition: transform 0.2s ease-in-out;
    display: block;
    width: auto;
  }
}
.indice {
  color: #fff;
}

ul.menu-indice {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 20px 0 0;
  margin: 0px;
}

ul.menu-indice a {
  padding: 10px;
  border: solid;
  display: block;
  color: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
}

.caja-texto.otros-contenidos li {
  padding: 20px 0px;
  border-bottom: solid 1px #ccc;
}

.caja-texto.otros-contenidos ul {
  padding: 0px;
  list-style: none;
}

.caja-texto.otros-contenidos {
  padding-top: 20px;
}

.titulo-secciones .bajada {
  padding-top: 40px;
}

@media (min-width: 812px) {
  ul.menu-indice {
    display: flex;
    flex-direction: initial;
    list-style: none;
    padding: 20px 0 0;
    margin: 0px;
    flex-wrap: wrap;
  }
  ul.menu-indice a {
    padding: 10px;
    border: solid;
    display: block;
    color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    min-width: 200px;
    margin: 0px 15px 0px 0px;
  }
}
.item-tip h3 {
  font-weight: 400;
  max-width: 89%;
  text-align: center;
  margin: 0 auto;
  font-size: 27px;
}

.galeria-foto {
  max-width: 1150px;
  margin: 0 auto;
}

.head-porque h2 {
  font-size: 70px;
  max-width: 85%;
  line-height: 75px;
  font-family: "Poppins", sans-serif;
}

@media (max-width: 812px) {
  .head-porque h2 {
    font-size: 50px;
    max-width: 100%;
    line-height: 59px;
    font-family: "Poppins", sans-serif;
  }
}
.head-porque h2 span {
  color: #2129E0;
}

.head-porque {
  max-width: 85%;
  margin: 0 auto;
}

.text-porque {
  font-size: 25PX;
}

.imagen-icono {
  max-width: 100px;
  margin-bottom: 15px;
}

.icono-porque {
  font-size: 16px;
}

.traq {
  /* position: absolute; */
  /* left: 0px; */
  /* bottom: 0; */
  transform: rotate(-90deg);
  /* transform-origin: bottom; */
  margin-left: 10px;
  margin-bottom: 10px;
  font-size: 370px;
  font-family: "Poppins", sans-serif;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 812px) {
  .traq {
    /* position: absolute; */
    /* left: 0px; */
    /* bottom: 0; */
    transform: rotate(-90deg);
    /* transform-origin: bottom; */
    margin-left: 10px;
    margin-bottom: 10px;
    font-size: 370px;
    font-family: "Poppins", sans-serif;
    color: rgba(255, 255, 255, 0.3803921569);
    font-weight: 700;
  }
}
.contenedor-seccion {
  z-index: 1;
}

.texto-traq {
  position: absolute;
  left: -3px;
  /* background: #ccc; */
  width: 258px;
  bottom: 0px;
  height: 392px;
}

.fotos-paraquien {
  will-change: transform;
}

.fotos-paraquien {
  transition: 0.3s all ease;
  position: relative;
  transform: scale(1);
}

.fotos-paraquien:hover {
  z-index: 100;
}

.fotos-paraquien .int {
  transition: 0.3s all ease;
  position: relative;
}

.fotos-paraquien:hover .int {
  z-index: 10;
  cursor: pointer;
  transform: scale(1.05);
  z-index: 10;
  border: solid 4px #2129E0;
  border-radius: 20px;
  overflow: hidden;
}

.head-paraquien h2 {
  font-size: 65px;
  max-width: 85%;
  line-height: 75px;
  font-family: "Poppins", sans-serif;
  color: #fff;
}

@media (max-width: 812px) {
  .head-paraquien h2 {
    font-size: 52px;
    max-width: 86%;
    line-height: 63px;
    font-family: "Poppins", sans-serif;
    color: #fff;
  }
}
.contendor-full-fotos {
  margin: 0px;
  grid-gap: 0px;
}

.head-paraquien {
  max-width: 1000px;
  margin: 0 auto;
}

.tit-quienes {
  background: #000;
  color: #fff;
  padding: 50px 0px;
}

.texto-quien {
  font-size: 16px;
  padding: 25px 30px 10px;
  transition: 0.3s all ease;
  min-height: 136px;
}

.fotos-paraquien:hover .texto-quien {
  background: #000;
}

.imagen-quien {
  overflow: hidden;
}

.imagen-quien img {
  transition: 0.3s all ease;
}

.fotos-paraquien:hover .imagen-quien img {
  transform: scale(1.2);
}

@media (max-width: 812px) {
  .head-paraquien {
    max-width: 90%;
  }
}
.foto-inicio {
  max-height: 600px;
  overflow: hidden;
}

.foto-inicio figure {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%; /* Ajusta la altura según tus necesidades */
  overflow: hidden; /* Para recortar la imagen si es necesario */
}

.foto-inicio figure img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

@media (max-width: 812px) {
  .foto-inicio {
    max-height: 300px;
    overflow: hidden;
  }
  .foto-inicio figure {
    display: block;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Ajusta la altura según tus necesidades */
    overflow: hidden; /* Para recortar la imagen si es necesario */
  }
  .foto-inicio figure img {
    object-fit: cover;
    height: 300px;
    width: 100%;
  }
}
/* Estilo de la tabla */
table.info {
  width: 100%;
  border-collapse: collapse;
  padding: 0px;
  border-spacing: 0;
  table-layout: fixed;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}

@media (min-width: 812px) {
  table.info {
    max-width: 70%;
    margin: 0 auto;
  }
}
table.info tr:first-child {
  font-size: 17px;
  font-weight: 700;
  color: #000;
}

/* Estilo de las celdas de encabezado */
.info tr {
  text-align: left;
  border-bottom: solid 1px #ccc;
}

.info tr:last-child {
  text-align: left;
  border-bottom: solid 1px #fff;
}

/* Estilo de las celdas de datos */
.info td {
  padding: 10px;
  /* border: 1px solid #ccc; */
  border: solid 1px #ccc;
  border-bottom: solid 0px transparent;
  border-top: solid 0px transparent;
}

.info td:first-child {
  border-left: 0px #ccc;
}

.info td:last-child {
  border-right: 0px transparent;
}

/* Alternancia de filas (opcional) */
.info tr:nth-child(even) {
  background-color: #eee;
}

.faq-container {
  width: 100%;
  max-width: 900px;
  /* background-color: #fff; */
  padding: 30px 0px;
  border-radius: 8px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  margin: 0 auto;
  color: #fff;
}

.faq {
  border-bottom: solid 1px rgba(204, 204, 204, 0.2588235294);
  margin-bottom: 0px;
  border-radius: 0px;
  /* background: #eee; */
}

.faq-question {
  padding: 25px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h2 {
  margin: 0;
}

span.toggle-btn {
  font-size: 34px;
}

.faq-question h2 {
  font-size: 21px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.faq-answer {
  padding: 10px;
  display: none;
  line-height: 29px;
}

.otras-preguntas h2 {
  text-align: center;
  color: #fff;
  padding-top: 50px;
}

a.hacer-pregunta {
  text-align: center;
  background: #fff;
  padding: 10px 30px;
  border-radius: 10px;
  margin: 0 auto;
  display: block;
  width: fit-content;
  margin-top: 36px;
}

/* Contenedor general */
.pricing-table {
  background-color: #f9fafb;
  font-family: "Inter", sans-serif;
}

/* Contenedor interior */
.pricing-table .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Título principal */
.pricing-table h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #111827;
}

/* Grilla de planes */
.plans-grid {
  display: grid;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 812px) {
  /* Grilla de planes */
  .plans-grid {
    display: grid;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    grid-template-columns: repeat(1, 1fr);
  }
}
.plan.centro {
  border: solid 3px rgba(36, 42, 226, 0.7098039216);
}

/* Estilo de cada plan */
.plan {
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  padding: 30px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
  box-sizing: border-box;
  overflow: hidden;
}

.basico .price {
  color: #242ae2;
}

.plan:hover {
  transform: translateY(-5px);
}

/* Plan destacado */
.plan.featured {
  border-color: #6366f1;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
}

/* Título del plan */
.plan h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 10px;
}

.icono {
  font-size: 18px;
}

.head-plan .tex-tit {
  padding: 0px;
  margin: 0px;
  /* font-size: 54px !important; */
}

.head-plan .tex-tit h3, .head-plan .tex-tit h3 strong {
  font-size: 40px;
}

.rayado {
  font-weight: 700 !important;
}

.icono .fa-fire-alt {
  color: #e00 !important;
  font-size: 17px !important;
}

/* Precio */
.plan .price {
  font-size: 28px;
  font-weight: bold;
}

.head-plan {
  padding-bottom: 10px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 15px;
}

/* Lista de beneficios */
.plan ul {
  text-align: left;
  margin: 0 auto 30px;
  padding: 0px;
  list-style: none;
  color: #374151;
}

.plan ul li {
  margin-bottom: 10px;
  font-size: 15px;
  position: relative;
}

.icono i {
  font-size: 12px;
  color: #4fd600;
}

.icono .fa-times {
  font-size: 19px;
  color: #ccc;
}

.dato {
  font-size: 13px;
}

.tit-dato {
  font-weight: 400;
  color: #000;
  font-size: 15px;
}

/* Botón */
.plan button {
  background-color: #242ae2;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.plan button:hover {
  background-color: #4b5563;
}

.plan {
  position: relative;
  box-sizing: border-box;
}

.botones-packs {
  display: flex;
  position: absolute;
  bottom: 0px;
  width: 100%;
}

a.ver-mas {
  background: #fff;
  color: #2129E0;
  height: 42px;
  padding: 0px 30px;
  font-size: 20px;
  border-radius: 5px;
  border: solid 2px #2129E0;
  display: block;
  line-height: 42px;
  margin-left: 20px;
}

.mensaje-sin-pedidos {
  /* padding: 2rem; */
  /* border: 2px dashed #ccc; */
  text-align: center;
  /* background: #fefefe; */
  /* margin-bottom: 2rem; */
  margin-top: 30px;
  font-size: 14px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1), 0 0px 6px rgba(0, 0, 0, 0.2);
}

.mensaje-sin-pedidos .icono-vacio {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.boton-explorar {
  background: #1e40af;
  color: #fff;
  padding: 0.75rem 1.5rem;
  display: inline-block;
  margin-top: 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

.dato.dsd {
  display: flex;
}

.dsd {
  display: flex;
}

.dato.dsd .icono {
  margin-right: 12px;
}

.items-incluidos {
  padding-bottom: 30px;
}

.descripcion-plan {
  font-size: 14px;
  padding: 15px 0px;
}

/* Opcional: botones mensual/anual (si los usas) */
.toggle {
  margin-bottom: 40px;
}

.toggle button {
  background: none;
  border: 2px solid #e5e7eb;
  padding: 10px 20px;
  margin: 0 5px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.toggle button.active,
.toggle button:hover {
  background-color: #6366f1;
  color: white;
  border-color: #6366f1;
}

/* Fondo general oscuro */
.fix-testimonio-bg {
  color: #fff;
  text-align: center;
}

.estrella-activa {
  color: #ffcc00;
}

.estrella-inactiva {
  color: #444;
}

/* Títulos */
.fix-testimonio-titulo {
  font-size: 48px;
  font-weight: 800;
  font-family: Montserrat, sans-serif;
}

.fix-testimonio-sub {
  font-size: 20px;
  font-weight: 400;
  margin-top: 10px;
  opacity: 0.8;
}

.fix-testimonio-contenido {
  max-width: 900px;
  margin: 0 auto;
}

/* Foto redonda */
.fix-testimonio-foto {
  width: 250px;
  height: 250px;
  overflow: hidden;
}

.fix-testimonio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Texto del testimonio */
.fix-testimonio-nombre {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: left;
}

.fix-testimonio-estrellas {
  color: #a4d962;
  font-size: 20px;
  text-align: left;
  margin-bottom: 20px;
}

.fix-testimonio-cita {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  max-width: 600px;
}

/* Ajustes carrusel */
.testimonios .owl-nav button.owl-prev,
.testimonios .owl-nav button.owl-next {
  color: white;
  font-size: 30px;
  position: absolute;
  top: 40%;
  background: none;
  border: none;
}

.testimonios .owl-nav button.owl-prev {
  left: -30px;
}

.testimonios .owl-nav button.owl-next {
  right: -30px;
}

.testimonios .owl-dots {
  margin-top: 30px;
}

.testimonios .owl-dot span {
  background: #fff;
  opacity: 0.5;
}

.testimonios .owl-dot.active span {
  background: #a4d962;
  opacity: 1;
}

@media (max-width: 812px) {
  .fix-testimonio-foto {
    width: 200px;
    height: 200px;
    overflow: hidden;
    margin: 0 auto 30px;
  }
  .fix-testimonio-texto.span-2 {
    max-width: 80%;
    margin: 0 auto;
  }
  .fix-testimonio-contenido {
    grid-gap: 0px;
  }
}
.foto-login {
  height: 100vh;
  background: #ccc;
  width: 100%;
  overflow: hidden;
}

.logo-login {
  max-width: 250px;
  margin-bottom: 30px;
}

.foto-login img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.formulario-login {
  max-width: 400px;
  margin-left: 50px;
}

.formulario-login input {
  padding: 11px;
  width: 100%;
}

.formulario-login h2 {
  display: none;
}

.bienvenida h3 {
  font-size: 65px;
  font-weight: 900;
}

.texto-bien {
  line-height: 19px;
  font-size: 14px;
}

.login form.woocommerce-form.woocommerce-form-login.login {
  position: relative;
  background: transparent;
  left: inherit;
  transform: unset;
  top: inherit;
  z-index: 1000;
  padding: 0px;
  border: none;
}

.login label.woocommerce-form__label.woocommerce-form__label-for-checkbox.woocommerce-form-login__rememberme {
  display: flex;
  max-width: 100px;
  margin-bottom: 13px;
}

button.woocommerce-button.button.woocommerce-form-login__submit, .formulario-login .btncrear {
  background: #2129E0;
  color: #fff;
  font-size: 20px;
  width: fit-content;
  border: none;
  border-radius: 5px;
  padding: 13px 20px;
}

.texto-bien a {
  font-weight: 700;
  text-decoration: underline;
}

@media (max-width: 812px) {
  .foto-login {
    height: 330px;
    background: #ccc;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
  }
  .logo-login {
    position: absolute;
    max-width: 225px;
    top: 20px;
    left: 50%;
    transform: translate(-50%);
  }
  .formulario-login {
    max-width: 90%;
    margin-left: 0px;
    margin: 0 auto;
    padding-bottom: 100px;
  }
}
/* Estructura base */
.contenedor-cuenta .woocommerce {
  position: relative;
  height: 100%;
}

/* Navegación de cuenta (barra lateral) */
.woocommerce-MyAccount-navigation {
  background-color: #ffffff;
  padding: 40px 25px;
  color: #fff;
  height: 100vh;
  box-sizing: border-box;
  position: fixed;
  /* top: 0px; */
  left: 0px;
  z-index: 1;
  min-width: 320px;
  -webkit-box-shadow: 4px 0px 11px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 4px 0px 11px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0.5px 0px 11px 0px rgba(0, 0, 0, 0.18);
  box-sizing: border-box;
}

@media (max-width: 812px) {
  .woocommerce-MyAccount-navigation {
    background-color: #ffffff;
    padding: 40px 25px;
    color: #fff;
    height: 100%;
    box-sizing: border-box;
    position: fixed;
    /* top: 0px; */
    left: -100%;
    z-index: 1;
    min-width: 100%;
    -webkit-box-shadow: 4px 0px 11px 0px rgba(0, 0, 0, 0.18);
    -moz-box-shadow: 4px 0px 11px 0px rgba(0, 0, 0, 0.18);
    box-shadow: 0.5px 0px 11px 0px rgba(0, 0, 0, 0.18);
    box-sizing: border-box;
    z-index: 100;
  }
  .traq-header {
    padding-top: 71px;
  }
}
ul.woocommerce-error {
  margin-bottom: 0px;
  margin-top: 21px;
  border: none;
  font-size: 14px;
  border-radius: 10px;
}

.login input {
  padding: 13px !important;
  border-radius: 5px;
  border: solid 1px #ccc !important;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-navigation li {
  margin-bottom: 5px;
}

.woocommerce-MyAccount-navigation a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 8px 15px;
  border-radius: 50px;
  transition: background-color 0.3s ease;
}

.woocommerce-MyAccount-navigation a:hover {
  background-color: #ececee;
}

.woocommerce-MyAccount-navigation .is-active a {
  background-color: #4f46e5;
  font-weight: bold;
  color: #fff;
}

/* Contenido de cuenta */
.woocommerce-MyAccount-content {
  /* border-radius: 10px; */
  padding: 30px;
  max-width: 900px;
  position: relative;
  margin-left: 400px;
  width: 100%;
}

@media (max-width: 812px) {
  /* Contenido de cuenta */
  .woocommerce-MyAccount-content {
    /* border-radius: 10px; */
    padding: 30px;
    max-width: 900px;
    position: relative;
    margin-left: 0px;
    width: 100%;
    box-sizing: border-box;
  }
}
/* Estilos de productos destacados */
.contenedor-cuenta h2 {
  font-size: 22px;
  font-weight: 600;
  color: #1e1e2f;
}

.carrucel-productos-1 {
  margin-top: 20px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contenedor-cuenta {
    flex-direction: column;
  }
  .woocommerce-MyAccount-navigation {
    width: 100%;
  }
  .woocommerce-MyAccount-content {
    width: 100%;
  }
}
.logo-cuenta {
  max-width: 80%;
}

.bienvenida-usuario {
  color: #000;
  padding: 30px 10px;
  max-width: 300px;
}

.traq-subtitulo {
  max-width: 80%;
}

.bienvenida-usuario h2 {
  font-size: 28px;
  margin: 0px;
  font-family: "Poppins", sans-serif;
}

figure {
  margin: 0px;
}

.traq-dashboard {
  padding: 0px 20px 40px;
  font-family: sans-serif;
  position: relative;
}

.traq-modulo {
  position: relative;
}

.traq-container {
  max-width: 900px;
  margin: 0 auto;
}

.traq-header h1 {
  font-size: 2rem;
  color: #2c1a3a;
  margin-bottom: 0.2em;
  font-family: "Poppins", sans-serif;
}

.traq-subtitulo {
  color: #5e5e5e;
  margin-bottom: 1.5em;
}

.traq-acciones {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.traq-acciones a {
  color: #fff;
  text-decoration: underline;
}

.traq-plan {
  background: #3e40f4;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  flex: 1;
  position: relative;
  min-width: 250px;
}

.traq-plan-actual {
  font-style: italic;
  margin-bottom: 0.3rem;
}

.traq-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-weight: bold;
}

.traq-upgrade {
  background: #000;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  flex: 1;
  min-width: 250px;
  align-items: center;
  display: flex;
}

.traq-link-ver {
  display: inline-block;
  margin-top: 0.5rem;
  color: #00f;
  text-decoration: underline;
}

.traq-plus {
  height: 40px;
  background: #4f45e3;
  color: #ffffff;
  font-size: 16px;
  text-align: center;
  border-radius: 50px;
  font-weight: bold;
  line-height: 40px;
  /* position: absolute; */
  top: 0px;
  right: 0px;
  padding: 0px 20px;
  height: 40px;
  display: block;
  width: fit-content;
  margin-right: 20px;
}

.btns-header {
  display: flex;
  align-items: center;
  position: absolute;
  top: 30px;
  right: 0px;
  z-index: 1;
}

.traq-info {
  font-size: 14px;
  line-height: 20px;
}

.tit-plan {
  display: flex;
  align-items: center;
}

.tex-tit {
  margin-left: 20px;
}

.tex-tit h3 {
  margin: 0px;
  font-size: 30px;
  font-weight: 300;
  font-style: italic;
  font-family: "Poppins", sans-serif;
}

.tex-tit h3 strong {
  margin: 0px;
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
}

.traq-icon {
  width: 50px;
  height: 50px;
}

.traq-info h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #2c1a3a;
}

.traq-label {
  font-weight: bold;
  color: #5e5e5e;
  margin: 0.2em 0;
}

.traq-btn-info {
  display: inline-block;
  margin-top: 0.5rem;
  background: #abadfe;
  color: #ffffff;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  text-decoration: none;
  position: absolute;
  top: 0px;
  right: 0;
}

.satra {
  display: block;
  font-size: 43px;
  font-style: italic;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
}

.traq-plan-actual strong {
  font-style: normal;
  font-weight: 700;
}

.fondo-gold {
  background: linear-gradient(135deg, #a67c00, #f1c40f, #c19a00, #7f6000);
  background-blend-mode: overlay;
  color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.fondo-silver {
  background: linear-gradient(135deg, #d8d8d8, #c0c0c0, #eeeeee, #a8a8a8);
  background-blend-mode: overlay;
  color: #333333;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.fondo-blue {
  background: linear-gradient(135deg, #00f, #4a90e2, rgb(2, 2, 165), #00f);
  background-blend-mode: overlay;
  color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cotizaciones-wrap {
  max-width: 900px;
  margin: 0 auto;
  font-family: Arial, sans-serif;
}

.cotizaciones-head,
.cotizaciones-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid #ddd;
}

.cotizaciones-head {
  background-color: #e4e4f5;
  font-weight: bold;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
}

.cotizaciones-item {
  padding: 6px;
}

.traq-dashboard h1 {
  font-family: "Poppins", sans-serif;
}

.ver-mas-btn {
  color: #0073aa;
  text-decoration: underline;
  font-weight: bold;
  display: inline-block;
  /* margin-top: 0.5rem; */
  background: #4f45e5;
  color: #ffffff;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .cotizaciones-head {
    display: none;
  }
  .cotizaciones-row {
    grid-template-columns: 1fr;
    border: 1px solid #ddd;
    margin-bottom: 10px;
    padding: 10px;
  }
  .cotizaciones-item {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    border-bottom: 1px dashed #ccc;
  }
  .cotizaciones-item:last-child {
    border-bottom: none;
  }
  .cotizaciones-item::before {
    content: attr(data-label) ": ";
    font-weight: bold;
  }
}
.tabla-cotizaciones {
  margin-top: 30px;
  font-size: 14px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.1), 0 0px 6px rgba(0, 0, 0, 0.2);
}

.agencia.seleccionada {
  border-color: #007bff !important;
  background-color: #007bff;
  /* border: solid 3px #007bff !important; */
  color: #fff;
}

.circulo {
  border: solid 1px #000;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  margin: 0 auto;
}

ul.lista-datos-agencia {
  list-style: none;
  padding: 0px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-size: 14px;
  margin: 10px 0px;
  line-height: 19px;
}

.nombre-agencia {
  font-weight: 700;
  font-size: 20px;
}

.capitulos {
  font-size: 14px;
  display: flex;
}

.cap {
  /* padding: 10px; */
  background: #eee;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 4px;
  margin-right: 3px;
}

.lista-capitulos {
  display: flex;
  flex-wrap: wrap;
}

.agencia {
  border: solid 1px #ccc;
  border-radius: 10px;
  margin-bottom: 10px;
}

.lista-agencias h2 span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 0px;
  margin-bottom: 29px;
}

.agencia .span-8 {
  padding: 16px 0px;
}

.capitulos-fondo {
  text-align: center;
  background: #f1f1f1;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.seleccionada .cap {
  /* padding: 10px; */
  background: #065bbb;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 4px;
  margin-right: 3px;
}

.seleccionada .circulo {
  background: #d8e009;
  border: solid #d8e009;
}

.valor-arancel small {
  font-size: 13px;
  font-weight: 400;
}

.seleccionada .capitulos-fondo {
  background: #242ae2;
}

.int-cap {
  margin: 0 auto;
}

.capitulos span {
  display: block;
  margin-right: 12px;
  min-width: 198px;
}

.valor-arancel {
  font-size: 35px;
  font-weight: 700;
  text-align: center;
  line-height: 20px;
}

.int-cap span {
  display: block;
  margin-bottom: 17px;
}

.resultado-agencia {
  -webkit-box-shadow: 4px 0px 11px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 4px 0px 11px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0.5px 0px 11px 0px rgba(0, 0, 0, 0.18);
  background: #E2E3EF;
}

.head-res {
  background: #2129E0;
  color: #fff;
  font-size: 24px;
}

.honorarios-ag span {
  display: block;
  font-size: 14px;
}

.head-res {
  border-top-left-radius: 10px;
  background: #2129E0;
  color: #fff;
  font-size: 24px;
  border-top-right-radius: 10px;
}

.name-agencia {
  padding: 15px;
}

.honorarios-ag {
  /* padding-top: 16px; */
  text-align: center;
  /* background: #191e9f; */
  /* min-height: 60px; */
  border-top-right-radius: 0px;
}

.aprovacion {
  background: #fff;
  padding: 10px;
  text-align: center;
  font-weight: 700;
}

.datos-agencia ul {
  list-style: none;
  padding: 0px;
  font-size: 16px;
  line-height: 20px;
  /* margin: 0 auto; */
  max-width: 90%;
  margin-left: 15px;
}

.capitulos-int {
  /* margin-left: 15px; */
  padding-bottom: 20px;
  border-top: solid 1px #000;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 15px;
}

.capitulos-int span {
  font-weight: 700;
  padding-bottom: 10px;
  display: block;
}

.datos-agencia {
  display: flex;
  justify-content: center;
  margin: 10px;
}

.aprovacion {
  background: #fff;
  padding: 10px;
  text-align: center;
  font-weight: 700;
  max-width: 100px;
  font-size: 14px;
  height: 50px;
  display: flex;
  align-items: center;
  margin-left: 20px;
  border-radius: 10px;
}

.capitulos-int .cap {
  /* padding: 10px; */
  background: #9393aa;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 4px;
  margin-right: 3px;
  color: #fff;
  padding: 3px;
  font-size: 13px;
}

.listado-agencias-seleccionadas h2 {
  padding-bottom: 18px;
}

.instruccion {
  font-size: 13px;
  color: #555;
  margin: 4px 0 10px;
}

.dato {
  font-size: 15px;
  font-weight: 700;
}

.instruccion-inline {
  display: block;
  padding: 4px 0px 4px;
  font-size: 13px;
  font-weight: 400;
  max-width: 80%;
}

.instruccion-inline a {
  font-weight: 700;
  text-decoration: underline;
}

main#main {
  margin: 0 auto;
}

select.orderby {
  padding: 10px;
  border-radius: 50px;
  border: solid 1px #ccc;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-weight: 300;
  color: #878787;
}

p.woocommerce-result-count {
  font-size: 16px !important;
}

.single-product {
  margin: 0 auto;
  padding: 100px 0px 50px;
}

@media (max-width: 812px) {
  .single-product {
    max-width: 90%;
    margin: 0 auto;
    padding: 15px 0px;
  }
}
nav.woocommerce-breadcrumb {
  margin: 0 auto;
  width: fit-content;
  padding-top: 30px;
  /* border-top: solid; */
}

h1.woocommerce-products-header__title.page-title {
  text-align: left;
  font-weight: 700;
  font-size: 16px;
  margin: 0px;
  padding-bottom: 20px;
  font-family: "Inter", sans-serif;
}

@media (max-width: 812px) {
  h1.woocommerce-products-header__title.page-title {
    text-align: center;
    font-weight: 700;
    font-size: 25px;
    padding-top: 20px;
  }
  .selecciona {
    display: none;
  }
}
.product_meta {
  display: flex;
  flex-direction: column;
  line-height: 21px;
  padding-top: 18px;
}

section.related.products.contenedor-seccion {
  display: none;
}

span.sku {
  font-weight: 700;
}

.informacion-producto ul {
  list-style: none;
  padding: 0px;
  line-height: 24px;
  font-size: 16px;
  color: #000;
}

.informacion-producto ul li {
  display: flex;
}

.info {
  min-width: 127px;
}

.informacion-producto h3 {
  font-size: 22px;
  font-weight: 400;
}

p.price {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
}

.single-product .product.type-product {
  display: grid;
  grid-template-columns: 50% 50%;
  max-width: 1150px;
  margin: 0 auto;
}

.fotos {
  max-width: 100%;
}

.summary.entry-summary {
  max-width: 100%;
  padding-left: 90px;
  width: 100%;
}

span.posted_in {
  display: none;
}

@media (max-width: 812px) {
  .fotos {
    max-width: 100%;
  }
  .summary.entry-summary {
    max-width: 100%;
    padding-left: 0px;
    width: 100%;
    margin-top: 50px;
  }
}
h1.product_title.entry-title {
  line-height: 40px;
  font-size: 53px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

h1.product_title.entry-title strong {
  color: #3B3BF5;
}

.woocommerce-product-details__short-description ul {
  line-height: 24px;
  font-weight: 300;
  font-size: 16px;
}

.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-disabled {
  display: flex;
  margin-top: 30px;
}

.woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled {
  display: flex;
  margin-top: 30px;
}

.product_meta {
  display: flex;
  flex-direction: column;
  line-height: 27px;
}

table.variations tr {
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: left;
}

table.variations tr select {
  padding: 10px;
  width: 70%;
}

td.value {
  display: flex;
  flex-direction: column;
}

a.reset_variations {
  background: #8ca4bb;
  width: fit-content;
  padding: 5px 10px;
  margin-top: 10px;
  border-radius: 5px;
  color: #fff;
}

label.tit-rad {
  font-size: 24px;
  font-weight: 700;
  padding-bottom: 15px;
  display: block;
}

@media (max-width: 812px) {
  .product_meta {
    display: flex;
    flex-direction: column;
    line-height: 13px;
    font-size: 10px;
  }
  .single-product .product.type-product {
    display: flex;
    flex-direction: column;
  }
  .sas {
    width: 100%;
    overflow: hidden;
    max-width: 100%;
  }
}
.quantity input {
  max-width: 50px;
  padding: 10px;
  text-align: center;
}

button.single_add_to_cart_button.button.alt {
  background: #3B3BF5;
  border: none;
  padding: 10px 20px;
  font-size: 20px;
  color: #fff;
  border-radius: 10px;
  margin-left: 0px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

section.mf-beneficios-updatetraq ul {
  padding: 0px 0px;
  padding-left: 15px;
}

section.mf-beneficios-updatetraq ul li {
  margin-bottom: 10px;
}

form.cart {
  display: flex;
  align-items: center;
  padding: 0px 0px 30px;
}

.comment-rating .star-rating {
  display: block;
  font-size: 12px;
  color: #bc5d42;
}

ul.product-comments {
  list-style: none;
  padding: 0px;
}

li.comment {
  padding-bottom: 14px;
  border-bottom: solid 1px #ccc;
  margin-bottom: 20px;
}

li.comment:last-child {
  padding-bottom: 14px;
  border-bottom: solid 1px #fff;
  margin-bottom: 20px;
}

.resenas {
  position: fixed;
  right: -100%;
  top: 0px;
  max-width: 500px;
  background: #fff;
  z-index: 10000000000;
  height: 100vh;
  overflow: auto;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.17);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.17);
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.17);
}

@media (max-width: 812px) {
  .resenas {
    max-width: 90%;
  }
}
.contenedor-resena {
  height: 100%;
  padding-bottom: 50px;
  overflow: auto;
  padding: 40px;
  box-sizing: border-box;
}

.velo-resena {
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: rgba(255, 255, 255, 0.7294117647);
  position: fixed;
  z-index: 100000000;
  display: none;
}

span.star-rating {
  display: block;
  font-size: 15px;
  margin-right: 20px;
}

i.fas.fa-star {
  color: #000;
}

i.fas.fa-star-half-alt {
  color: #000;
}

.woocommerce-product-rating {
  display: flex;
}

p.stars a {
  display: block;
  width: 30px;
  height: 30px;
  border: solid 1px #ccc;
  text-align: center;
  border-radius: 50%;
  line-height: 30px;
  margin-right: 10px;
}

p.stars span {
  display: flex;
}

p.stars a.active {
  background: #000;
  color: #fff;
}

textarea#comment {
  max-height: 100px;
  margin-top: 10px;
  border: solid 1px #ccc;
  width: 90%;
}

input#submit {
  background: #fff;
  border: solid 2px #000;
  padding: 10px 20px;
  font-size: 18px;
  border-radius: 50px;
}

a.woocommerce-review-link {
  text-decoration: underline;
}

.hidden {
  overflow: hidden;
}

span.onsale {
  position: absolute;
  z-index: 1;
  background: #e00;
  color: #fff;
  padding: 11px;
  font-size: 22px;
  border-top-left-radius: 10px;
  display: none;
}

.descuento-porcentaje {
  display: flex;
  align-items: center;
  padding-top: 20px;
  margin-top: 20px;
}

.summary .descuento-porcentaje {
  position: relative;
}

.summary .descuento-porcentaje .etiqueta-descuento {
  font-size: 13px;
  background: #000;
  color: #fff;
  padding: 6px;
  margin-left: 16px;
  position: relative;
  top: 0px;
  left: inherit;
}

nav.woocommerce-breadcrumb {
  display: none;
}

li.product .descuento-porcentaje {
  display: flex;
  align-items: initial;
  padding-top: 0px;
  border-top: none;
  margin-top: 0px;
}

ins {
  text-decoration: none;
  color: #000;
  font-weight: 700;
}

li.product span.price {
  font-size: 18px;
  font-weight: 700;
}

@media (max-width: 812px) {
  li.product span.price {
    font-size: 15px;
    font-weight: 700;
  }
  .listado {
    max-width: 90%;
    margin: 0 auto;
  }
}
.radio-buttons {
  margin-bottom: 20px;
}

span.price {
  font-size: 25px;
}

del {
  color: #878787;
  font-weight: 300;
}

/* Estilos para el ícono de flecha */
.orderby::after {
  content: "\f078"; /* Código del ícono de flecha hacia abajo en Font Awesome */
  font-family: "Font Awesome 5 Free";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none; /* Evita que el seudoelemento bloquee los clics en el select */
}

/* Estilos para el elemento select */
.orderby {
  position: relative; /* Necesario para posicionar el ícono correctamente */
  overflow: hidden; /* Evita que el ícono sobresalga del contenedor */
}

.orderby {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 30px; /* Ajusta el padding para dejar espacio para el ícono */
  width: 100%; /* Ajusta el ancho para que el select se expanda correctamente */
  background-color: transparent; /* Hace que el fondo del select sea transparente */
  border: none; /* Elimina el borde del select */
  border-bottom: 1px solid #000; /* Agrega un borde inferior */
  cursor: pointer; /* Cambia el cursor al puntero al pasar sobre el select */
}

.etiqueta-descuento {
  font-size: 13px;
  background: #000;
  color: #fff;
  padding: 6px;
  margin-left: 16px;
}

ol.flex-control-nav.flex-control-thumbs {
  display: flex;
  list-style: none;
  padding: 0px;
  margin: 0px;
  margin-top: 20px;
  flex-wrap: wrap;
}

form.variations_form.cart {
  flex-direction: column;
  align-items: initial;
}

.flex-viewport {
  border-radius: 0px;
}

.summary span.price {
  font-size: 25px;
  font-weight: 700;
}

@media (min-width: 812px) {
  .woocommerce-product-gallery__image.flex-active-slide {
    min-width: 530px;
  }
  .summary span.price {
    font-size: 35px;
    font-weight: 700;
  }
}
ol.flex-control-nav.flex-control-thumbs li {
  width: 18%;
  border: solid 1px #e8e8e8;
  margin-right: 5px;
  margin-bottom: 5px;
}

.summary nav.woocommerce-breadcrumb {
  margin: 0;
  width: fit-content;
  padding-top: 0px;
  /* border-top: solid; */
  color: #7f7f7f;
  line-height: 23px;
  font-size: 14px;
  max-width: 90%;
}

.productos-relacionados button.owl-dot {
  height: 3px;
  width: 50px;
  background: #EFEFEF !important;
  margin: 0px 5px;
}

.productos-relacionados .owl-dots {
  padding-top: 19px;
  margin: 0 auto;
  width: fit-content;
}

.productos-relacionados button.owl-dot.active {
  background: #EFEFEF !important;
}

@media (max-width: 812px) {
  .summary nav.woocommerce-breadcrumb {
    margin: 0;
    width: fit-content;
    padding-top: 0px;
    /* border-top: solid; */
    color: #7f7f7f;
    line-height: 23px;
    font-size: 14px;
    max-width: 90%;
  }
}
/* Targeting iPhone 6/7/8 and SE (2nd generation) */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (-webkit-min-device-pixel-ratio: 2) {
  .summary nav.woocommerce-breadcrumb {
    color: #7f7f7f;
    line-height: 15px !important;
    font-size: 10px !important;
  }
}
/* Targeting iPhone X/XS/11 Pro */
@media only screen and (min-device-width: 375px) and (max-device-width: 812px) and (-webkit-min-device-pixel-ratio: 3) {
  .summary nav.woocommerce-breadcrumb {
    color: #7f7f7f;
    line-height: 15px !important;
    font-size: 10px !important;
  }
}
/* Targeting iPhone XR/11 */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 2) {
  .summary nav.woocommerce-breadcrumb {
    color: #7f7f7f;
    line-height: 15px !important;
    font-size: 10px !important;
  }
}
/* Targeting iPhone XS Max/11 Pro Max */
@media only screen and (min-device-width: 414px) and (max-device-width: 896px) and (-webkit-min-device-pixel-ratio: 3) {
  .summary nav.woocommerce-breadcrumb {
    color: #7f7f7f;
    line-height: 15px !important;
    font-size: 10px !important;
  }
}
.dato ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
}

.dato ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  height: 250px;
  flex-direction: column;
}

.dato li {
  /* max-width: 50%; */
  /* border: solid; */
  padding: 5px;
}

.qr {
  position: absolute;
  width: 100px;
  bottom: 30px;
  right: 30px;
  border-radius: 10px;
  /* object-fit: cover; */
  overflow: hidden;
  border: solid 1px #ccc;
}

.qr img {
  object-fit: cover;
  transform: scale(1.07);
}

a.boton-adi img {
  width: 38px;
}

a.boton-adi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  padding: 20px 0px;
  border-bottom: solid 1px #ccc;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 30px;
}

.woocommerce-product-gallery {
  overflow: hidden;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  border-radius: 10px;
}

.woocommerce-product-gallery img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.summary.entry-summary {
  position: sticky;
  top: 100px;
}

.hed-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.info-fish ul {
  list-style: none;
  padding: 0px;
}

.velo-especifico {
  background: rgba(234, 233, 233, 0.8509803922);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 10000000;
  display: none;
}

a.comprar-whatsapp-detalle {
  background: #67c65b;
  border: none;
  padding: 13px 20px;
  font-size: 20px;
  color: #fff;
  border-radius: 5px;
  margin-left: 0px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  margin: 0px 0px 30px;
  display: block;
  width: fit-content;
}

.indos {
  padding-bottom: 20px;
}

.panel-especificaciones {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 10000000000;
  background: #fff;
  max-width: 600px;
  width: 90%;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.07);
  -moz-box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.27);
  height: 100%;
  overflow: auto;
  padding-bottom: 40px;
}

.radio-buttons {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  flex-direction: column;
}

.radio-buttons .rad {
  display: flex;
  align-items: center; /* Alinea los elementos dentro del div verticalmente */
}

.radio-buttons .rad input[type=radio] {
  margin-right: 5px; /* Espacio entre el radio y la etiqueta */
}

.radio-buttons .rad label {
  font-size: 16px; /* Tamaño de fuente de las etiquetas */
  color: #333; /* Color del texto de las etiquetas */
  cursor: pointer; /* Hace que el cursor se convierta en una mano cuando se pasa por encima */
}

.radio-buttons .rad input[type=radio]:checked + label {
  font-weight: bold; /* Hace que la etiqueta del radio seleccionado sea negrita */
  color: #000; /* Cambia el color del texto de la etiqueta seleccionada */
}

.radio-buttons .rad input[type=radio]:focus + label {
  outline: 1px dotted #000; /* Agrega un contorno punteado alrededor de la etiqueta cuando se enfoca */
}

.radio-buttons .rad:hover label {
  color: #007BFF; /* Cambia el color del texto al pasar el ratón por encima */
}

.galeria-recetas {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}

.foto-receta h4 {
  font-size: 14px;
  font-weight: 400;
  padding-top: 16px;
}

ul.menu-detalle {
  padding: 0px;
  list-style: none;
  padding: 30px 0px;
}

ul.menu-detalle li a {
  font-size: 20px;
  display: block;
  padding: 10px;
  color: #fff;
}

ul.menu-detalle li a.active {
  font-weight: 700;
  background: rgb(86, 90, 209);
  color: #fff;
}

.menu-tabs {
  padding-right: 0px;
  border-right: solid 1px rgba(153, 153, 153, 0.3098039216);
  height: 100%;
}

.menu-tabs span {
  max-width: 85%;
  display: block;
}

a.boton-panel {
  padding: 15px;
  display: none;
}

.panel-detalle h3 {
  font-size: 30px;
  padding: 20px 0px;
  font-family: "Poppins", sans-serif;
}

.como-func ul {
  list-style: none;
  padding: 0px;
  font-size: 16px;
  line-height: 22px;
}

.como-func ul li {
  padding-bottom: 10px;
  line-height: 25px;
}

.menu-tabs h3 {
  font-size: 18px;
  padding-top: 20px;
  padding-bottom: 10px;
}

.textos-foto h2 {
  font-size: 40px;
  padding-bottom: 30px;
  /* font-weight: 300 !important; */
  font-family: "Poppins", sans-serif;
}

.detalle-pro {
  background: #2229E0;
  font-size: 16px;
  line-height: 23px;
  color: #fff;
}

.descripcion-panel ol {
  list-style: none;
  counter-reset: circulo;
  padding-left: 0;
}

.pregunt .faq-question h2 {
  font-size: 21px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #000;
}

.pregunt .faq-answer {
  padding: 10px;
  display: none;
  line-height: 29px;
  color: #000;
}

.pregunt span.toggle-btn {
  font-size: 34px;
  color: #000;
}

.pregunt .faq.active .faq-question {
  background: #fff;
}

.pregunt {
  background: #e2e3f7;
  padding: 100px 0px;
}

.pregunt .faq-question {
  padding: 15px 20px;
}

.pregunt .faq-answer {
  padding: 10px 20px;
}

.descripcion-panel ol li {
  counter-increment: circulo;
  position: relative;
  padding-left: 40px;
  margin-bottom: 15px;
}

.descripcion-panel ol li::before {
  content: counter(circulo);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  background-color: #3b3bf5;
  color: #fff;
  font-weight: bold;
  font-family: Inter, sans-serif;
  text-align: center;
  border-radius: 50%;
}

.descripcion-panel ul {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px 40px;
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  border: solid 1px;
  border-radius: 5px;
}

.descripcion-panel ul li {
  position: relative;
  /* padding-left: 38px; */
  padding: 10px 10px 10px 45px;
  border-bottom: solid 1px;
}

.descripcion-panel ul li::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 14px;
  width: 16px;
  height: 16px;
  background-color: #f2a83a;
  border-radius: 50%;
}

@media (max-width: 768px) {
  a.boton-panel {
    padding: 15px;
    display: block;
    background: #fff;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 13px;
  }
  a.boton-panel.active {
    background: #dfddec;
  }
  .menu-tabs {
    display: none;
  }
}
div#abrir {
  background: #e00;
  text-align: center;
  width: 20px;
  height: 20px;
  line-height: 20px;
  border-radius: 50%;
  font-size: 13px;
  color: #fff;
}

.carroheader {
  position: relative;
}

.carroheader a {
  position: relative;
  max-width: 41px;
  display: flex;
  justify-content: space-between;
}

.carrito {
  background: #eee;
  color: #000;
  z-index: 10000000;
  position: fixed;
  height: 100vh;
  right: -50%;
  width: 50%;
  max-width: 550px;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.37);
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.37);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.37);
  top: 0;
  overflow: auto;
}

@media (max-width: 812px) {
  .carrito {
    width: 100%;
    right: -100%;
  }
}
.velo_carro {
  background: rgba(238, 238, 238, 0.85);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 100000;
  top: 0px;
  display: none;
}

li.woocommerce-mini-cart-item.mini_cart_item {
  display: grid;
  grid-template-columns: 3% 20% 70%;
  grid-gap: 15px;
  padding: 10px;
  /* background: #171616; */
  border-radius: 0px;
  margin-bottom: 10px;
  border-bottom: none;
  padding-bottom: 20px;
  grid-row-gap: 0px;
  margin-bottom: 16px !important;
  align-items: center;
}

ul.woocommerce-mini-cart.cart_list.product_list_widget {
  padding: 0px;
}

span.quantity {
  padding: 7px 0px;
  /* border-radius: 5px; */
  width: fit-content;
  font-size: 16px;
  margin-top: 0px;
  /* border: solid 2px #e6e6e6; */
  font-weight: 700;
}

a.remove.remove_from_cart_button {
  background: transparent;
  color: #000 !important;
}

div#cerrar {
  font-size: 24px;
  font-weight: 700;
  padding: 14px 0px 0px 30px;
  color: #000;
}

p.woocommerce-mini-cart__buttons.buttons {
  padding-top: 25px;
}

p.woocommerce-mini-cart__buttons.buttons a {
  padding: 10px 20px;
  margin-right: 10px;
  border-radius: 10px;
  font-weight: 700;
  background: #fff;
  font-size: 20px;
  display: block;
  margin-bottom: 10px;
}

div#abrir {
  min-width: 20px;
  margin-left: 5px;
}

a.button.checkout.wc-forward {
  background: #242ae2;
  color: #fff;
}

.desc-carro {
  max-width: 70%;
  padding: 10px;
  font-size: 16px;
  padding-left: 30px;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 17px;
  color: #000;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
}

p.woocommerce-mini-cart__total.total {
  font-size: 27px;
  color: #000;
  border-top: solid 1px #393838;
  padding-top: 17px;
}

a.remove.remove_from_cart_button:hover {
  background: #000;
  color: #fff !important;
}

li.woocommerce-mini-cart-item.mini_cart_item img {
  border: solid 1px #ccc;
}

a.remove.remove_from_cart_button {
  font-size: 26px !important;
  font-weight: 700;
  width: 25px;
  text-align: center;
  border-radius: 50px;
  margin-left: -10px;
  height: 25px;
  line-height: 25px;
}

.nombre-producto span.woocommerce-Price-amount.amount {
  padding: 5px;
  border-radius: 3px;
  font-size: 15px;
}

.header.finalizar.stick {
  background: #fff;
}

.blockUI {
  background: rgba(255, 255, 255, 0.7098039216) !important;
}

a.added_to_cart.wc-forward {
  display: none;
}

.nombre-producto {
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

span.quantity {
  display: block;
}

.woocommerce ul.product_list_widget li::before {
  display: none;
}

.woocommerce ul.cart_list li img, .woocommerce ul.product_list_widget li img {
  float: none;
  margin-left: 4px;
  height: auto;
  box-shadow: none;
  width: 90px;
  border: solid 1px #ccc;
}

.mini-cart-content {
  padding: 30px;
}

.no-scroll {
  overflow: hidden;
}

a.remove.remove_from_cart_button {
  margin-top: 14px;
}

tr.woocommerce-cart-form__cart-item.cart_item.bopobb-cart-item.bopobb-cart-child img {
  width: 32px;
}

.coupon {
  display: flex;
}

.coupon input#coupon_code {
  border-radius: 3px;
  border: solid 1px #ccc;
  padding: 6px;
  margin-right: 10px;
  min-width: 300px;
  margin-right: 10px;
  width: 58%;
}

td.actions .button:nth-child(2) {
  background: #fff !important;
}

@media (max-width: 812px) {
  .coupon input#coupon_code {
    min-width: 200px;
  }
  .copy {
    padding: 30px 20px;
    font-size: 16px;
  }
  .tit-carrocompra h1 {
    /* line-height: 30px; */
    font-size: 36px;
  }
}
.contenedor-carro-compra {
  max-width: 1100px;
  margin: 0 auto;
}

.banner-tit h1 {
  font-size: 30px !important;
  text-align: center !important;
}

.banner-tit {
  height: 100px;
  line-height: 100px;
  background: #e6e7fd !important;
  margin-bottom: 40px;
}

a.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  background: #242ae2;
  color: #fff;
  border-radius: 10px;
}

.woocommerce-form-login-toggle {
  display: none;
}

.finalizar-compra .woocommerce-notices-wrapper {
  width: fit-content;
  margin: 0 auto !important;
}

.contenedor-checkout {
  position: relative;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
  float: left;
  background: #242ae2;
}

.foto-producto-check {
  margin-right: 0px;
  min-width: 60px;
  overflow: hidden;
  width: 60px;
  margin-right: 10px;
}

.finaliar-compra .woocommerce-error {
  border: none;
  background: #e8ecef;
  max-width: 600px;
  font-size: 13px;
  line-height: 21px;
  color: #004895;
  border-radius: 5px;
  margin: 0 a;
}

.header-finalizar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
  position: absolute;
  width: 100%;
  left: 50%;
  transform: translate(-50%);
  z-index: 100;
}

form.woocommerce-form.woocommerce-form-login.login {
  max-width: 800px;
  margin: 0 auto;
  border: none;
  padding: 25px 0px 0px !important;
}

.finalizar-compra h2 {
  display: none;
}

button.woocommerce-button.button.woocommerce-form-login__submit {
  background: #004895;
  border-radius: 5px !important;
  color: #fff;
  font-size: 20px;
  padding: 15px 30px;
}

a.volver-cas {
  font-size: 30px;
}

.login-register-container {
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: 100px;
  position: relative;
  padding-top: 115px;
}

.login-register-container .header-finalizar {
  top: 0;
}

.tabs {
  display: flex;
  /* justify-content: space-around; */
  margin-bottom: 20px;
  margin: 0 auto;
  justify-content: initial;
}

.tab-button {
  background: #e5e5e5;
  border-radius: 5px !important;
  color: #000;
  font-size: 16px;
  padding: 10px 30px;
  border: none;
  margin: 0px 10px 0px 0px;
  font-weight: 700;
}

.tab-button.active {
  /* background-color: #0071a1; */
  /* color: #fff; */
  background: #2129e0;
  border-radius: 5px !important;
  color: #fff;
  font-size: 18px;
  padding: 10px 30px;
  border: none;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.nombre-producto-check {
  display: flex;
  align-items: center;
}

li.wc_payment_method.payment_method_transbank_webpay_plus_rest img {
  width: 191px;
}

div#envios {
  display: none;
}

.mensaje-seccion {
  font-size: 16px;
  /* background: #dbe5f1; */
  /* margin: 0px; */
  padding: 30px 0px;
  color: #000000;
  line-height: 21px;
  margin-top: 11px;
  border-radius: 5px;
}

.nombre-check {
  font-family: Arial, Helvetica, sans-serif;
}

div#cliente {
  position: fixed;
  top: 0px;
  left: -100%;
  background: #fff;
  padding: 40px;
  max-width: 40%;
  height: 100%;
  z-index: 1000000;
  box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.37);
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.37);
  -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.37);
  overflow: auto;
}

.woocommerce-billing-fields h3 {
  display: none;
}

.informacion-de-envio ul {
  list-style: none;
  padding: 0px;
  padding-bottom: 19px;
  line-height: 25px;
}

.abrete {
  display: block !important;
}

.woocommerce-shipping-fields {
  display: none !important;
}

form.checkout_coupon.woocommerce-form-coupon.abrete {
  position: relative;
}

.botones a {
  display: block;
  padding: 13px 30px;
  border-radius: 5px;
  font-weight: 700;
  width: fit-content;
}

.botones {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

button.button {
  background: #3B3BF5;
  border-radius: 5px !important;
  color: #fff !important;
  padding: 13px 30px !important;
}

a.informacion-envio {
  /* border: solid; */
  padding: 15px 15px;
  display: block;
  border-radius: 5px;
  background: #254685;
  color: #fff;
  width: fit-content;
  margin-top: 20px;
}

a.abrir-cupon {
  font-weight: 700;
  text-decoration: underline;
}

.clap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checkout {
  max-width: 100%;
  margin: 0 auto;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
  display: none;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  border: none !important;
  padding: 0px;
  margin: 2em 0;
  text-align: left;
  border-radius: 5px;
  background: transparent !important;
}

.velo-envio {
  position: fixed;
  background: rgba(204, 204, 204, 0.7411764706);
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: none;
}

div#order_review {
  height: 100%;
  background: #eee;
  padding-bottom: 70px;
}

.woocommerce-privacy-policy-text {
  display: none;
}

.f1 {
  max-width: 500px;
  float: right;
  padding-top: 50px;
  margin-right: 30px;
  position: sticky;
  top: 50px;
  padding-bottom: 70px;
}

.soo {
  max-width: 500px;
  margin-left: 50px;
  padding-top: 99px;
}

#add_payment_method #payment ul.payment_methods, .woocommerce-cart #payment ul.payment_methods, .woocommerce-checkout #payment ul.payment_methods {
  text-align: left;
  padding: 0px;
  border-bottom: 1px solid rgba(104, 87, 125, 0.14);
  margin: 0;
  list-style: none outside;
}

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background: transparent;
}

#add_payment_method #payment div.form-row, .woocommerce-cart #payment div.form-row, .woocommerce-checkout #payment div.form-row {
  padding: 0px;
  margin-top: 40px;
  padding-bottom: 30px;
}

.contenedor-full.finalizar-compra.order-pago {
  max-width: 1100px;
  padding-top: 130px;
}

@media (max-width: 812px) {
  .f1 {
    max-width: 86%;
    float: none;
    padding-top: 50px;
    margin-right: 0px;
    position: sticky;
    top: 50px;
    padding-bottom: 70px;
    margin: 0 auto;
  }
  .soo {
    max-width: 85%;
    margin-left: 0px;
    padding-top: 30px;
    margin: 0 auto;
    padding-bottom: 100px;
    margin-top: -104px;
    z-index: 100000;
    position: relative;
  }
  div#order_review {
    height: 100%;
    background: #fff;
  }
  .header-finalizar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 82%;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
    position: absolute;
    width: 100%;
    left: 50%;
    transform: translate(-50%);
  }
  div#cliente {
    position: fixed;
    top: 0px;
    left: -100%;
    background: #fff;
    padding: 40px;
    max-width: 90%;
    height: 100%;
    z-index: 10000;
    box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.37);
    -webkit-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.37);
    -moz-box-shadow: 1px 1px 5px 0px rgba(0, 0, 0, 0.37);
  }
}
.cab-thank {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* color: #fff; */
}

.dvs a {
  color: #fff;
}

.woocommerce-message {
  border-top-color: #242ae2;
}

.titulo-modulo {
  font-family: "Poppins", sans-serif;
}

.gracias-compra {
  font-size: 30px;
  max-width: 80%;
  padding-top: 20px;
  text-align: center;
  margin: 0 auto;
}

.woocommerce-message::before {
  content: "\e015";
  color: #242ae2;
}

.contenedor-checkout.thanks {
  font-size: 14px;
}

.thanks {
  max-width: 800px;
  margin: 0 auto;
  padding: 50px;
}

.enviar-cotizacion.gracias {
  max-width: 800px;
  margin: 0 auto;
  font-size: 14px;
}

button.woocommerce-Button.button {
  background: #3a3bf4;
}

.planes-grid {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.plan-item {
  flex: 1 1 200px;
  /* padding: 1rem; */
  /* border: 1px solid #ddd; */
  text-align: left;
  border-radius: 8px;
  background: #f9f9f9;
}

.plan-item .single_add_to_cart_button {
  background-color: #242ae2;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 10px;
  display: block;
  width: fit-content;
}

.icono-vacio {
  max-width: 100px;
  margin: 0 auto;
}

.mensaje-sin-pedidos {
  margin-top: 40px;
}

.plan-item img {
  max-width: 100%;
  height: auto;
}

.plan-item h3 {
  margin-top: 0.5rem;
}

.precio-plan {
  display: block;
  margin: 0.5rem 0;
  font-weight: bold;
}

.foto-tra {
  height: 200px;
  overflow: hidden;
  border-radius: 10px;
}

.foto-tra img:hover {
  transform: scale(1.05);
}

.step {
  display: flex;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.linea-step {
  position: absolute;
  height: 10px;
  background: #e2e0fd;
  width: 100%;
  top: 39%;
  /* border: solid 1px #4f45e3; */
}

.numero.n-active {
  background: #4f45e3;
  color: #fff;
}

.barra-interna {
  height: 10px;
  width: 30%;
  background: #3a33a7;
}

.numero {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #ffffff;
  text-align: center;
  color: #4f45e3;
  border-radius: 50%;
  min-width: 30px;
  min-height: 30px;
  position: relative;
  z-index: 1;
  font-weight: 700;
  border: solid 3px #4f45e3;
}

.nivels {
  padding: 30px;
  font-size: 16px;
  background: #fff;
  margin: 30px 0px;
  box-sizing: border-box;
  border-radius: 10px;
  -webkit-box-shadow: 4px 0px 11px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 4px 0px 11px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0.5px 0px 11px 0px rgba(0, 0, 0, 0.18);
}

.btn-movimiento {
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: solid 1px #ccc;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
}

.btn-movimiento.active {
  background: #4f45e3;
  color: #fff;
}

.nivels input {
  width: 100%;
  height: 40px;
  margin: 0px 0px 0px;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 0px 20px;
  box-sizing: border-box;
  font-size: 16px;
}

.nivels select {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: solid 1px #ccc;
  font-size: 16px;
  padding: 0px 14px;
}

select#select_incoterm {
  width: 100%;
  height: 40px;
  border-radius: 10px;
  border: solid 1px #ccc;
  font-size: 16px;
  padding: 0px 14px;
}

select#select_capitulo {
  width: 100%;
  height: 40px;
  font-size: 16px;
  padding: 0px 15px;
  margin-top: 20px;
  border-radius: 10px;
  border: solid 1px #ccc;
}

input#input_codigo_arancelario {
  width: 100%;
  height: 40px;
  margin: 20px 0px 0px;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 0px 20px;
  box-sizing: border-box;
  font-size: 16px;
}

.siguiente a, .anterior a {
  display: block;
  padding: 15px 25px;
  /* border: solid 1px; */
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  width: fit-content;
  background: #cccdec;
}

.botones-nivel {
  margin-top: 38px;
  display: flex;
  justify-content: space-between;
}

.radio input {
  padding: 0px !important;
  height: 20px !important;
}

.radio {
  display: flex;
  text-align: center;
  justify-content: center;
  border: solid 1px #ccc;
  border-radius: 10px;
  margin: 0px;
  padding: 0px;
}

#comentario {
  width: 100%;
  height: 100px;
  border: solid 1px #ccc;
  border-radius: 10px;
  padding: 15px;
  font-family: "Inter", sans-serif;
}

.enviar a {
  display: block;
  padding: 15px 25px;
  /* border: solid 1px; */
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  width: fit-content;
  background: #242ae2;
  color: #fff;
}

.fila-uno {
  margin-bottom: 30px;
  border-bottom: solid 1px #ccc;
  padding-bottom: 20px;
}

.it-dat {
  font-size: 20px;
  font-weight: 700;
}

.it-one span {
  font-size: 14px;
  padding-bottom: 6px;
  display: block;
}

.it-one {
  border-right: solid 1px #b0acac;
  margin-right: 21px;
}

.it-one:last-child {
  border-right: none;
  margin-right: 21px;
}

.cj-otro {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 6px;
  font-size: 14px;
  line-height: 13px;
}

.otros-datos {
  font-size: 16px;
}

.d1 {
  font-weight: 700;
}

.contenedor-detalle {
  padding: 30px;
  background: #FFFFFF;
  border-radius: 10px;
  -webkit-box-shadow: 4px 0px 11px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 4px 0px 11px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0.5px 0px 11px 0px rgba(0, 0, 0, 0.18);
  /* color: #fff; */
}

.mensaje-cotizacion {
  font-size: 16px;
  padding: 20px;
  background: #e9ebdc;
  margin-bottom: 30px;
  border-radius: 10px;
}

.con-linea {
  border-top: solid #242ae2 4px;
}

table.woocommerce-orders-table.woocommerce-MyAccount-orders.shop_table.shop_table_responsive.my_account_orders.account-orders-table {
  margin-top: 30px;
  background: #fff;
}

div#pantalla-confirmacion {
  position: absolute;
  top: 0px;
  background: #f9fafb;
  z-index: 1000;
  padding: 50px;
  min-height: 500px;
  align-content: center;
}

.foto-confirm {
  max-width: 400px;
  margin: 0 auto 40px;
}

.pantalla-resumen h2 {
  font-family: "Poppins", sans-serif;
  font-size: 30px;
}

button#btn-confirmar-envio {
  padding: 18px;
  font-size: 20px;
  border: none;
  background: #2129e0;
  color: #fff;
  border-radius: 10px;
  margin-top: 30px;
}

.errores-formulario {
  background: #ffe6e6;
  border: 1px solid #d9534f;
  color: #b52b27;
  padding: 10px 15px;
  border-radius: 6px;
  margin-top: 10px;
  font-size: 14px;
}

.error-resaltado {
  box-shadow: 0 0 10px 2px rgba(255, 0, 0, 0.3);
  transition: box-shadow 0.3s ease-in-out;
}

.etiqueta-operacion {
  display: inline-block;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
  margin-top: 10px;
  max-width: 90%;
  margin: 10px auto;
  border-top: solid 1px;
}

.honorarios-ag {
  /* background: #f7f7f7; */
  border-radius: 10px;
  padding: 0px 20px;
  text-align: center;
  margin-top: 10px;
  color: #fff;
}

.honorarios-ag span {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.honorarios-ag strong {
  display: block;
  font-size: 1.3em;
  margin-bottom: 4px;
}

.honorarios-ag small {
  display: block;
  font-size: 12px;
}

ul#agencias-confirmadas {
  list-style: none;
  padding: 0px;
  background: #fff;
  border: solid 1px #999;
  border-radius: 10px;
  overflow: hidden;
}

ul#agencias-confirmadas li:last-child {
  border: none;
}

ul#agencias-confirmadas li {
  padding: 10px;
  border-bottom: solid 1px #999;
}

@media (max-width: 1024px) {
  .sas {
    overflow: hidden;
    width: 100%;
  }
}