@charset "UTF-8";
.lateral {
  background: #E8E5ED;
  padding: 30px;
  height: 100vh;
  position: fixed;
  left: 0px;
}

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

.top-section {
  color: white;
  text-align: center;
  padding: 50px 0px;
}

.top-section .tits {
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 50%;
  margin: 0 auto 70px;
  line-height: 41px;
}

.feature p {
  font-size: 18px;
  max-width: 80%;
  margin: 0 auto;
}

@media (max-width: 812px) {
  .top-section .tits {
    font-size: 23px;
    font-weight: 400;
    margin-bottom: 40px;
    max-width: 90%;
    margin: 0 auto 70px;
    line-height: 31px;
  }
}
.top-section .tits strong {
  font-weight: 700;
}

.features {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.feature {
  text-align: center;
}

.feature h3 {
  font-size: 52px;
  font-weight: 700;
  margin: 0 0 22px;
}

.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: 0px;
  font-weight: 300;
}

.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;
}

.numero {
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #696969;
  text-align: center;
  color: #fff;
  border-radius: 50%;
  margin-right: 10px;
  min-width: 30px;
  min-height: 30px;
}

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;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio (para videos de YouTube) */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.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: 16px;
  font-family: "Inter", sans-serif;
  margin: 0px;
  padding: 0px;
  font-weight: 400;
}

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

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

.salto {
  height: 161px;
}

@media (max-width: 812px) {
  .salto {
    height: 138px;
  }
}
.gradiente {
  background: #FFF;
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(234, 241, 247) 100%);
}

.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 a {
  color: #fff;
}

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

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

.logo {
  width: fit-content;
}

@media (max-width: 812px) {
  .logo {
    width: fit-content;
    max-width: 150px;
  }
}
.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;
  }
}
.pegajoso {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #f3f4f6; /* o el color que uses */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* sombra opcional */
}

/*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: #000000;
  font-size: 16px;
  display: block;
  font-weight: 500;
  padding: 10px 15px;
  text-transform: none;
  border-radius: 5px;
}

a.btn-iniciar {
  background: #EB4640;
  border-radius: 5px;
  color: #fff !important;
}

a.btn-iniciar:hover {
  background: #b73733;
  border-radius: 5px;
  color: #fff !important;
}

li.destacado a {
  background: #00063d;
  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;
}

@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: #1a1b37;
  color: #fff;
}

.flex-ss {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  border-top: solid 1px rgba(255, 255, 255, 0.1882352941);
  margin-top: 60px;
}

.con-foot {
  max-width: 1100px;
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
  line-height: 25px;
}

.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;
  }
}
.logo-footer {
  width: fit-content;
  padding-bottom: 30px;
}

.footer a {
  color: #fff;
}

.menu-links.botones, .menu-legales {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0px;
  width: 100%;
  margin: 0px;
}

.menu-links.botones li a, .menu-legales li a {
  color: #fff !important;
}

.footer-menu h3 {
  border-bottom: solid 1px rgba(255, 255, 255, 0.1803921569);
  padding-bottom: 15px;
}

.formulario-contacto {
  position: fixed;
  top: 0px;
  max-width: 600px;
  left: 50%;
  transform: translate(-50%);
  z-index: 100000;
  background: #fff;
  padding: 45px;
  box-sizing: border-box;
  margin: 50px 0px;
  border-radius: 10px;
  overflow: auto;
  max-height: 700px;
  display: none;
}

.velo-formulario {
  background: rgba(26, 48, 147, 0.5098039216);
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
}

.logo-form {
  max-width: 200px;
  margin: 0 auto;
  padding-bottom: 40px;
}

.txxo {
  text-align: center;
  padding-bottom: 17px;
}

.formulario-contacto input, .formulario-contacto textarea {
  border: solid 1px #ccc;
  padding: 15px !important;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
}

input#gform_submit_button_1 {
  background: #00063d;
  color: #fff;
  font-size: 20px;
  padding: 10px 30px !important;
}

.hide {
  overflow: hidden;
}

.mensaje-gracias {
  color: green;
  margin-top: 10px;
  font-weight: bold;
}

.formulario-whatsapp {
  position: fixed;
  background: #fff;
  top: 100px;
  z-index: 10000;
  left: 50%;
  transform: translate(-50%);
  display: none;
}

.textomodal {
  padding: 30px;
}

.formulario-wats {
  padding: 30px;
  color: #fff;
  background: #265B9F;
}

a.cerra-pop {
  position: absolute;
  right: 21px;
  top: 13px;
  font-size: 24px;
  color: #fff;
}

form#form-whatsapp {
  margin-top: 30px;
}

.mensaje-gracias {
  color: #ffffff;
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
  background: #0f407f;
  padding: 10px;
  border-radius: 5px;
}

.velo-whatsapp {
  background: rgba(75, 112, 167, 0.7490196078);
  position: fixed;
  height: 100vh;
  width: 100%;
  top: 0px;
  left: 0px;
  z-index: 1000;
  display: none;
}

form#form-whatsapp button {
  background: #ea4540;
  color: #fff;
  border: none;
  font-size: 20px;
  height: 48px;
  border-radius: 5px;
  margin-top: 20px;
}

form#form-whatsapp input {
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border: none;
  margin-bottom: 10px;
  border-radius: 5px;
}

.text-form {
  padding-bottom: 30px;
}

.textomodal h2, .textomodal h3 {
  color: #030E3E;
}

/* Layout general */
.contenedor {
  display: flex;
  min-height: 100vh;
}

.sa {
  height: 60px;
}

/* Sidebar */
.sidebar {
  background-color: #EFEFEF;
  color: #000000;
  width: 100%;
  padding: 0px 40px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  max-width: 350px;
  position: fixed;
  height: 100%;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-top: 40px;
}

.logo-img {
  width: 40px;
  height: 40px;
}

.usuario {
  margin-bottom: 2rem;
}

.bienvenido {
  font-size: 16px;
}

.nombre {
  font-weight: bold;
  font-size: 24px;
}

.menu a {
  display: block;
  color: #000000;
  text-decoration: none;
  padding: 10px 0px;
  transition: color 0.3s;
}

.menu a:hover {
  color: #a5b4fc;
}

a.current-btn {
  font-weight: 700;
  border-bottom: solid 2px #cfcfcf;
}

/* Main */
.main {
  flex: 1;
  position: relative;
  max-width: 900px;
  margin: 0 auto 0px 400px;
}

.header-paginas.pegatina {
  position: fixed;
  width: 100%;
  max-width: 900px;
  z-index: 1000;
}

h2.titulo-secciones {
  font-size: 40px;
  padding: 30px 0px 20px;
}

/* Botones y enlaces */
.btn {
  background-color: #265B9F;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #1d4ed8;
}

.detalle {
  color: #265b9f;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.detalle:hover {
  text-decoration: underline;
}

.cerrar-sesion {
  color: #000000;
  text-decoration: none;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  text-decoration: underline;
}

.busqueda-avanzada-normativa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  background-color: #EB4640;
  color: white;
  padding: 10px 15px;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 18px;
  border: none;
  margin-bottom: 30px;
}

form#formulario-busqueda-avanzada-normativas {
  background: #ecf1f9;
  padding: 30px;
  border-radius: 10px;
}

.busqueda-avanzada {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  background-color: #EB4640;
  color: white;
  padding: 10px 15px;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 18px;
  border: none;
}

.ver-mas {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
  background-color: #265B9F;
  color: white;
  padding: 10px 15px;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 18px;
  border: none;
}

.busqueda:hover {
  background-color: #059669;
}

.mensaje {
  margin-bottom: 1.5rem;
  font-size: 18px;
  max-width: 70%;
  padding: 10px 0px 20px;
}

/* Plan */
span.acceso-restringido {
  background: #2663eb;
  color: #fff;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 50px;
}

a.menu-btn-restringido, a.menu-btn-restringido:hover {
  opacity: 0.5;
  color: #000;
}

.plan {
  background-color: #e0f2fe;
  padding: 1rem;
  border-left: 4px solid #2563eb;
  margin-bottom: 2rem;
  border-radius: 0.375rem;
}

.plan h2 {
  font-size: 35px;
}

.vence {
  font-size: 0.875rem;
  color: #374151;
}

.texto-italica {
  font-style: italic;
}

/* Tabla */
.tabla-contenedor {
  overflow-x: auto;
  margin-bottom: 2rem;
}

.tabla {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.tabla thead {
  text-align: left;
}

.tabla th,
.tabla td {
  padding: 0.75rem;
  border-bottom: 1px solid #d1d5db;
}

.icono-archivo {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-color: #2563eb;
  border-radius: 0.25rem;
  margin-right: 0.5rem;
}

/* Paginación */
.paginacion {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.paginacion button {
  padding: 0.5rem 0.75rem;
  background-color: #e5e7eb;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
}

.paginacion button.activo {
  background-color: #2563eb;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
  .contenedor {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    min-width: 300px;
  }
  .main {
    padding: 1rem;
  }
  .tabla {
    min-width: 100%;
  }
  .cerrar-sesion {
    top: auto;
    bottom: 1rem;
    right: 1rem;
  }
}
.foto-login {
  height: 100vh;
  overflow: hidden;
}

.foto-login img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  margin: 0px;
  display: block;
}

div#login {
  max-width: 500px;
  margin: 0 auto;
}

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

form#loginform {
  display: flex;
  flex-direction: column;
  margin: 30px 0px;
}

form#loginform input {
  padding: 10px;
  margin-bottom: 15px;
  font-size: 18px;
  border: solid 1px #ccc;
  border-radius: 5px;
}

input#wp-submit {
  background: #EB4640;
  font-weight: 700;
  color: #fff;
  width: fit-content;
  padding: 10px 30px !important;
  display: block;
  border-radius: 5px;
  margin-top: 14px;
}

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

.volver-home {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 22px;
  opacity: 0.3;
}

.volver-home:hover {
  opacity: 1;
}

.vencimiento {
  margin-top: -20px;
  margin-bottom: 30px;
}

.titulo-archivo h2 {
  max-width: 87%;
}

span.cerrar {
  font-size: 48px;
  position: absolute;
  right: 30px;
}

.titulo-doc {
  display: flex;
  align-items: center;
}

.icono-doc {
  max-width: 30px;
  margin-right: 15px;
}

.texto-titulo {
  line-height: 20px;
}

.tabla {
  font-size: 14px;
}

.header-paginas {
  display: flex;
  align-items: center;
}

.header-paginas {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* position: fixed; */
  background: #fff;
}

.modal {
  position: fixed;
  top: 0px;
  right: -100%;
  width: 50%;
  background: #fff;
  height: 100%;
  z-index: 10000000;
  overflow: auto;
}

.h-archi {
  display: flex;
  justify-content: space-between;
}

.busc-simple {
  margin-top: 40px;
}

.busc-simple input, .busc-simple-normativa input {
  padding: 10px;
}

.modal-contenido {
  padding: 35px;
}

.velo_modal {
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(186, 186, 186, 0.7803921569);
  z-index: 100000;
  display: none;
}

.titulo-archivo h2 {
  text-transform: lowercase; /* primero todo en minúscula */
}

.titulo-archivo h2::first-letter {
  text-transform: uppercase; /* primera letra en mayúscula */
}

.tabla-datos-archivo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  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);
  margin: 30px 0px;
  border-radius: 10px;
}

.tabla-datos-archivo div {
  padding: 10px;
  border-bottom: solid 1px #ccc;
}

.campo-formulario {
  display: flex;
  flex-direction: column;
}

.campo-formulario input, .campo-formulario select {
  padding: 10px;
  border: solid 1px #ccc;
  box-sizing: border-box;
}

.formulario-busqueda-avanzada {
  background: #ecf1f9;
  padding: 30px;
  border-radius: 10px;
}

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

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

.textos-banner {
  max-width: 700px;
  padding-top: 20px;
  color: #000;
}

.descripcion-banner {
  font-size: 20px;
  padding-top: 25px;
  max-width: 70%;
  font-weight: 400;
  margin-top: 10px;
  line-height: 26px;
}

@media (max-width: 812px) {
  .descripcion-banner {
    font-size: 16px;
    padding-top: 25px;
    /* max-width: 70%; */
    font-weight: 400;
    line-height: 23px;
  }
}
a.btn-negro {
  color: #fff;
  background: #000;
  display: block;
  width: fit-content;
  padding: 13px 30px;
  font-size: 18px;
}

.textos-banner h1 {
  font-weight: 200;
  line-height: 58px;
  margin: 0px;
  font-style: italic;
  font-size: 40px;
  font-family: "Poppins", sans-serif;
}

.textos-banner h1 strong {
  font-style: normal;
  display: block;
  font-size: 95px;
  padding-top: 10px;
}

.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;
}

.velo-banner {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

a.btn-banner {
  background: #265B9F;
  color: #fff;
  font-weight: 700;
  padding: 15px 25px;
  display: block;
  width: fit-content;
  border-radius: 5px;
  margin-top: 20px;
}

@media (max-width: 812px) {
  .velo-banner {
    background: transparent;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
  }
  .foto-pc {
    display: none;
  }
  .foto-tel {
    height: 600px;
    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: 60px;
    font-size: 34px;
    margin-top: 9px;
  }
  .pegajoso {
    top: 0px;
  }
}
/*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;
  }
}
/*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*/
.video-container {
  position: relative;
  width: 100%;
  max-width: 720px;
  height: 0;
  padding-bottom: 56.25%; /* Proporción 16:9 */
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#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: 600;
  font-style: italic;
}

.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: 45px;
  line-height: 50px;
  margin-bottom: 26px;
  font-weight: 200;
  font-style: italic;
  font-family: "Poppins", sans-serif;
}

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

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

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;
  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-weight: 300;
  font-family: "Inter", sans-serif;
}

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

.texto-caja {
  padding-top: 10px;
  font-weight: 400;
  font-size: 17px;
  line-height: 25px;
}

.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 {
  padding: 10px 20px;
  display: block;
  background: #fb6b09;
  font-size: 20px;
  width: fit-content;
  border-radius: 0;
  margin-top: 31px;
  color: #fff;
  border-radius: 50px;
  font-weight: 700;
}

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;
  }
}
@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: 50px;
  }
  .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%;
}

.tit-caja-texto h2 {
  font-size: 42px;
  text-transform: none;
  font-weight: 300;
  font-style: normal;
  padding-bottom: 20px;
  line-height: 45px;
  margin: 0px;
  color: #00063d;
}

.texto-caja ol {
  list-style: none; /* Oculta numeración predeterminada */
  padding-left: 0;
  counter-reset: custom-counter; /* Reinicia el contador */
  margin-top: 30px;
}

.texto-caja ol li {
  position: relative;
  padding-left: 42px;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 18px;
  color: #030E3E;
  max-width: 82%;
}

.texto-caja ol li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 7px;
  width: 27px;
  height: 27px;
  font-size: 14px;
  background-color: #f97316;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

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

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

.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(4, 1fr);
  grid-gap: 20px;
  padding-top: 30px;
}

.titulo-centrado h2 {
  font-size: 32px;
  text-transform: none;
  font-weight: 300;
  font-style: normal;
  padding-bottom: 20px;
  line-height: 37px;
  margin: 0px;
  text-align: center;
  padding-bottom: 30px;
  font-family: "Poppins", sans-serif;
}

.titulo-centrado.tipos h2 {
  font-family: "Inter", sans-serif;
}

#bloque2 {
  color: #fff;
}

/* 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;
  height: 250px;
  margin: 0px;
}

.galeria-item img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  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: 200px;
    margin: 0px;
  }
}
.galeria-foto.tipos {
  display: grid;
  grid-gap: 30px;
  padding-top: 30px;
}

.item-tipos .galeria-item {
  position: relative;
  cursor: pointer;
  /* overflow: hidden; */
  height: 100px;
  margin: 0px auto;
  max-width: 150px;
  width: auto;
}

.descrp {
  font-size: 16px;
  min-height: 100px;
  font-weight: 400;
}

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

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

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

.titulo-centrado.tipos h2 {
  font-size: 46px;
  max-width: 56%;
  line-height: 49px;
  margin: 0 auto;
}

.bajada {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  /* padding-bottom: 33px; */
  font-size: 24px;
  padding-bottom: 10px;
  font-weight: 400;
}

.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%;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 30px;
  font-weight: 400;
  line-height: 26px;
  font-size: 24px;
}

@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;
  }
  .titulo-centrado.tipos h2 {
    font-size: 46px;
    line-height: 46px;
  }
  .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;
    grid-gap: 30px;
    /* font-size: 14px; */
  }
  .item-tipos .galeria-item {
    height: 130px;
  }
  .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;
  }
}
.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;
  padding: 30px 0px;
  border-radius: 8px;
  /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
  margin: 0 auto;
}

.faq {
  border-bottom: solid 1px #ccc;
  margin-bottom: 0px;
  /* background: #eee; */
}

.faq-question {
  padding: 20px 10px;
  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;
  display: flex;
  align-items: center;
  color: #030E3E;
  line-height: 33px;
}

.numero-faq {
  font-size: 39px;
  margin-right: 10px;
}

.faq-answer {
  padding: 10px;
  display: none;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 50px;
}

.faq-answer a {
  font-weight: 700 !important;
  text-decoration: underline;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: #ccc;
  font-family: sans-serif;
  max-width: 1150px;
  margin: 0 auto 70px;
}

.planes-grid div {
  background: #fff;
  padding: 20px;
}

.titulo-columna {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  background-color: #f4f4f4;
}

.boton-inscribirse {
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
}

.boton-color {
  background-color: #265B9F;
  color: #fff;
}

.columna-uno {
  font-weight: 700;
}

.planes-grid div:first-child, .planes-grid div:nth-child(2), .planes-grid div:nth-child(3), .planes-grid div:nth-child(4) {
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
}

.planes-grid div:nth-child(3) {
  padding-right: 62px;
}

.planes-grid div:nth-child(5), .planes-grid div:nth-child(6), .planes-grid div:nth-child(7), .planes-grid div:nth-child(8), .planes-grid div:nth-child(13), .planes-grid div:nth-child(14), .planes-grid div:nth-child(15), .planes-grid div:nth-child(16) {
  background: #eee;
}

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

.btn-plan a {
  background: #265B9F;
  color: #fff;
  padding: 15px 20px;
  font-weight: 700;
  display: block;
  text-align: center;
  border-radius: 5px;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .planes-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .sas {
    overflow: hidden;
    width: 100%;
  }
}