*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
}

:root {
  --fondo_claro: #fdfdfd;
  --fondoNav: #f0f0f0;
  --fondoNavHover: #e0e0e0;
  --fondo_oscuro: #333;
  --contrastante: #fff;
}

html {
  width: 100%;
  height: 100%;
  background-color: #e4e9ed;
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: 'Roboto', sans-serif;
  background-color: var(--fondo_claro);
  color: #333;
  margin: 0;
  padding: 0;
  font-size: 16px;
  word-break: break-word;
}

#identidad {
  display: flex;
  flex-flow: column;
  flex: 0 100px;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  /* background: linear-gradient(168deg, #f6fcff, #b2b5ba); */
  align-items: center;
  flex-direction: row;
  justify-content: flex-start;
  gap: 30px;
}

.encabezado_h2 {
  font-size: 1.5em;
  font-weight: 600;
  color: #323232;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

#topLogoLang-Lab {
  width: 96px;
  height: 100px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
}

#topLogoLang-Lab img {
  width: 88px;
  height: 88px;
}

span.slogan2 {
  color: #7e3534;
  font-size: 18px;
  font-variant: petite-caps;
  font-weight: 600;
  user-select: none;
}

.azul_bold {
  color: #47a5c9;
}

header {
  display: flex;
  position: sticky;
  top: 0;
  min-height: 50px;
  left: 0;
  width: 100%;
  background-color: var(--fondo_oscuro);
  z-index: 1000;
  user-select: none;
  flex: 0 auto;
  flex-direction: row;
  justify-content: flex-start;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: left;
}

main {
  position: relative;
  padding: 0px 20px;
  min-width: 300px;
  max-width: 1600px;
  width: 100%;
  flex: 1 0 100%;
  background: #fbfbfb;
}

footer {
  position: relative;
  margin: 0 auto;
  width: 100%;
  flex: 0;
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  font-size: 14px;
}

footer menu {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

footer menu ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  list-style: none;
}

footer menu ul li a {
  color: #fff;
  text-decoration: none;
}

#menuPrincipal {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 50px;
  background-color: #e1e1e1;
  z-index: 1000;
  user-select: none;
  flex-wrap: wrap;
  flex-direction: row;
  border-bottom: 1px solid #ffffff;
}

.toggleIcon {
  display: none;
  font-size: 2.2rem;
  margin-left: 28px;
  margin-top: -3px;
  color: #20324e;
}

input,
select {
  background-color: var(--camposFondo);
}

.menu-toggle {
  display: none;
}

nav {
  position: relative;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  height: 50px;
  flex-direction: row;
  z-index: 1;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  height: 50px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
}

nav ul li {
  position: relative;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}


nav ul li a {
  text-decoration: none;
  color: #292929;
  cursor: pointer !important;
  transition: background-color 0.3s, mix-blend-mode 0.3s;
  background-color: transparent;
  -webkit-tap-highlight-color: transparent;
  height: 50px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  mix-blend-mode: normal;
  transform: translateY(-1px);
}

nav ul li a:hover {
  background-color: #ffffffc9;
  mix-blend-mode: screen;
  border-radius: 6px;
}

nav ul li .active {
  color: #000000;
  font-weight: 600;
}

.homeIcon {
  display: none;
}


#intro span,
#hero p,
.beneficios li {
  word-break: keep-all;
  white-space: normal;
  overflow-wrap: break-word;
  line-height: normal;
}

#intro span {
  display: block;
  width: 100%;
  text-align: center;
}

@media (max-width: 873px) {
  #menuPrincipal {
    height: 60px;
  }

  .toggleIcon {
    display: block;
    -webkit-tap-highlight-color: transparent;
    text-shadow: -1px 1px 0 white;
  }

  nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    position: absolute;
    top: 59px;
    left: 0;
    height: 93vh;
    background-color: #f0f0f0;
  }

  .menu-toggle:checked+nav {
    display: flex;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  nav ul li {
    width: 100%;
    height: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  nav ul li a {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
  }

  .homeIcon {
    display: block;
    position: absolute;
    width: 50px;
    top: 4px;
    right: 44%;
    outline: none;
    -webkit-tap-highlight-color: transparent;
  }

  .homeIcon:hover,
  .homeIcon:focus {
    outline: none;
    border-radius: 20px;
    box-shadow: 0 0 10px 0 rgba(132, 171, 233, 0.7);
  }
}

/* Finaliza menú principal */

#chanCom {
  opacity: 1;
  position: absolute;
  right: 20px;
  top: -72px;
  display: flex;
  z-index: 70000;
  height: 50px;
  list-style: none;
  transition: all .1s;
}

@media (max-width: 630px) {
  #chanCom {
    top: 5px;
  }
}

#chanCom li a {
  opacity: .7;
  display: inline-block;
  text-decoration: none;
  transition: opacity .3s;
  padding: 0 16px;
}

#chanCom li a:hover {
  opacity: 1;
}

.ico_com {
  width: 50px;
  height: 50px;
}

#chanCom li:not(:last-child) a {
  border-right: 1px #00000033 solid;
  box-shadow: -1px 0 0 0 #ffffff inset;
}

/* Inicia el Footer */
/* Estilos generales del footer */

footer .contenedor {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}



/* Estilos para las redes sociales */
footer .sociales {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  display: flex;
  justify-content: center;
  gap: 15px;
  /* Espacio entre iconos */
}

footer .sociales li {
  display: inline-block;
}

footer .sociales li a {
  display: inline-block;
  text-decoration: none;
  transition: transform 0.3s ease;
  /* Animación al pasar el mouse */
}

footer .sociales li a:hover {
  transform: scale(1.2);
  /* Agranda ligeramente el icono */
}

footer .sociales li img {
  width: 24px;
  height: 24px;
  /* Tamaño de los iconos */
  height: auto;
  filter: brightness(1);
  /* Blanco sobre fondo oscuro */
  transition: filter 0.3s ease;
}

footer .sociales li a:hover img {
  filter: brightness(1);
  /* Brillo al pasar el mouse */
}

/* Estilos para los enlaces del footer */
footer p a {
  color: #1e90ff;
  /* Azul claro */
  text-decoration: none;
  transition: color 0.3s ease;
}

footer p a:hover {
  color: #87ceeb;
  /* Azul más claro al pasar el mouse */
}

.em1_3 {
  font-size: 1.9em;
  text-align: center;
}

.seo-header {
  font-family: "Oswald", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
}

.beneficios {
  position: relative;
  margin: 0 auto;
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.beneficios h2 {
  display: flex;
  margin: 21px 0;
  font-size: clamp(1.1em, 5vw, 1.5em);
  font-weight: bold;
  height: 100px;
  align-items: center;
  color: #4a638a;
  justify-content: center;
  text-align: center;
}

.beneficios ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0px;
}

.beneficios ul li {
  width: 33%;
  padding: 12px;
  flex: 1 0 auto;
}

.beneficios ul li span:first-child {
  display: block;
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.5em;
  padding: .7em;
  border-bottom: 1px solid #eae7e7;
  color: #5e6d83;
  font-family: 'Oswald';
  font-weight: 400;
  background-color: #20324e;
  color: #fff;
  border-radius: 7px;
}

.beneficios ul li span:last-child {
  display: block;
  font-size: 1.3em;
  text-align: center;
}

.beneficios ul li span:last-child b {
  display: block;
}

/* Estilos responsivos para dispositivos pequeños */
@media (max-width: 768px) {
  footer .contenedor {
    padding: 0 10px;
  }

  footer .sociales {
    gap: 10px;
  }

  footer .sociales li img {
    width: 20px;
    /* Iconos más pequeños en móviles */
  }

  .beneficios ul li {
    width: 44%;
    font-size: 14px;
  }

  .seo-header {
    font-size: 3rem;
    line-height: 3.5rem;
  }

}

/* Finaliza el Footer */

figure#logotipoContainer {
  position: relative;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fdfdfd;
}

#logotipoContainer img {
  width: 60%;
  max-width: 600px;
}

#intro {
  display: flex;
  flex-wrap: wrap;
  background-color: #fdfdfd;
  padding: 20px 0;
  text-align: center;
  font-size: 160px;
  font-weight: 700;
  transition: all 0.12s ease;
  overflow-wrap: break-word;
  word-break: break-word;
  text-shadow: -6px 21px 23px #70757514;
}

#costo {
  display: flex;
  background-color: var(--fondo_oscuro);
  color: var(--contrastante);
  padding: 20px 0;
  text-align: center;
  font-weight: 600;
  transition: all 0.12s ease;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
}

#centavos {
  font-size: 50%;
  transform: translateY(-18%);
}


#costo span {
  padding: 2rem 0;
}


section#intro,
section#costo {

  margin-top: 40px;
  /* Adjust the value as needed */
  /* padding: 4rem; */
}

@media (max-width: 4200px) {

  section#intro,
  section#costo {
    font-size: 6vw;
  }

  #intro span {
    line-height: 6vw;
  }

  .beneficios_container li {
    font-size: 1.7em !important;
  }
}

@media (max-width: 2000px) {

  section#intro,
  section#costo {
    font-size: 10vw;
    letter-spacing: -3px;
  }

  #intro span {
    line-height: 11vw;
  }

  .beneficios_container li {
    font-size: 1.8em !important;
  }
}

@media (max-width: 1200px) {

  section#intro,
  section#costo {
    font-size: 12vw;
    letter-spacing: -2px;
  }

  #intro span {
    line-height: 12vw;
  }

}

@media (max-width: 900px) {

  section#intro,
  section#costo {
    font-size: 11vw;
    letter-spacing: -1px;
  }

  #intro span {
    line-height: 11vw;
  }
}


@media (max-width: 768px) {

  section#intro,
  section#costo {
    font-size: 17vw;
  }

  #intro span {
    line-height: 17vw;
  }

  .em1_3 {
    font-size: 1.5em;
    text-align: left;
  }

  .beneficios_container li {
    font-size: 1.5em !important;
  }
}

@media (max-width: 480px) {

  section#intro,
  section#costo {
    font-size: 18vw;
  }

  .em1_3 {
    font-size: 1.2em;
  }
}

@media (max-width: 412px) {
  .beneficios_container li {
    font-size: 1.3em !important;
  }
}

#hero {
  padding: 30px 0 20px 0;
}

.beneficios {
  background-color: #f9f9f9;
}

.boton_registro {
  width: 100%;
  text-align: center;
  display: block;
  padding: 44px 20px;
  font-size: 32px;
  background-color: #7b2527;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin: 40px 0px;
  box-shadow: 0 34px 28px -34px #0000009e;
}

.centrado {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#testimonios {
  display: flex;
  background-color: #f1f1f1;
  padding: 1em;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  border-radius: 4px;
}

.testimonio_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1 0;
  background-color: #ffffff;
  padding: 24px;
  gap: 18px;
  min-width: 200px;
  max-width: 100%;
  border-radius: 4px;
}

.tetimonio_header {
  position: relative;
  width: 100%;
  display: flex;
  font-size: 1em;
  font-weight: bold;
  color: #333;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 20px;
}

.tetimonio_header a {
  color: #333;
  text-decoration: none;
}

.tetimonio_footer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 0.8em;
  color: #666;
  flex-wrap: wrap;
  gap: 8px;
}

.testim_temporalidad {
  font-size: 0.8em;
  font-weight: 600;
  color: #666;
}

.microseparador {
  height: 1px;
  width: 100%;
  background: #ffffff00;
  border-top: 3px solid #fff;
  border-bottom: 1px solid #f1f1f1;
}

.banner-index {
  position: relative;
  margin: 0 auto;
  transform: translateY(-38px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  min-width: 257px;
  max-width: 1700px;
  width: 100%;
  box-shadow: 0 40px 40px -20px #0000004a;
}

.banner-index img {
  position: relative;
  margin: 0 auto;
  width: 100%;
  border-radius: 4px;
}

.textbox_1 {
  display: block;
  padding: 12px;
  background-color: #f7f7f7;
  border-radius: 4px;
  margin: 0 auto;
  max-width: 1600px;
  width: 100%;
  font-size: 1.2em;
  line-height: 1.4em;
  box-shadow: 0 20px 30px -20px #476b7159;
  border: 2px solid #fff;
}

.textbox_1 ul {
  list-style: none;
  /* Quita las viñetas predeterminadas */
  padding: 0;
}

.textbox_1 ul li {
  position: relative;
  padding-left: 1.2em;
  /* Espacio para la estrella */
}

.textbox_1 ul li::before {
  content: "\2605";
  /* Código Unicode para la estrella (★) */
  position: absolute;
  left: -6px;
  top: 0;
  color: #4a71af;
  /* Color de la estrella */
  font-size: 1em;
  /* Puedes ajustar el tamaño */
}

#inscripciones_inician {
  font-size: 3em;
  font-weight: 600;
  color: #666;
  text-align: center;
}

#itinerarios_msg {
  position: relative;
  margin: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-size: 1.6em;
  letter-spacing: -.5px;
  padding: 8px 28px 8px 8px;
  background-color: #20324e;
  color: #ffffff;
  border-radius: 43px;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s;
}

#itinerarios_msg:hover {
  background-color: #2f5176;
  color: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

#itinerarios_msg img {
  width: 40px;
  height: 40px;
}

.cajon_texto {
  min-width: 300px;
  max-width: 1048px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  font-size: 1.1rem;
  padding: 0 20px;
}

.ligaIntexto {
  color: #1f73b4;
  text-decoration: none;
  font-weight: 600;
  opacity: .8;
  transition: opacity .15s;
}

.ligaIntexto:hover {
  opacity: 1;
}

.direccion_box {
  font-size: 1.2em;
  text-align: left;
  margin: 10px 0;
  color: #333;
  background: hsl(0deg 0% 96.24%);
  line-height: 1.2;
  width: 100%;
  padding: 26px;
  border: 1px solid #f1f1f1;
  border-radius: 6px;
  box-shadow: 0 -2px 0 0 #ffffff;
}

/* Exclusivo para Horarios */

.tituloBeneficios {
  margin: 20px auto !important;
  background-color: #47a5c9;
  color: #ffffff;
  padding: 28px 40px;
  border-radius: 6px;
  font-size: 2rem;
  text-align: center;
}

.beneficios p {
  display: block;
  min-width: 300px;
  max-width: 777px;
  width: 100%;
  text-align: justify;
}

.beneficios_container {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 0px;
  min-width: 300px;
  max-width: 700px;
  width: 100%;
  padding: 10px !important;
  gap: 4px !important;
}

.beneficios_container li {
  display: block;
  text-align: center;
  padding: .8em !important;
  border-bottom: 1px solid #eae7e7;
  color: #ffffff !important;
  font-family: 'Oswald';
  font-weight: 400;
  background-color: #20324e;
  border-radius: 7px;
}

.contact-form {
  font-family: 'Montserrat', Arial, sans-serif;
  max-width: 600px;
  margin: 0 auto;
  padding: 2em 1em;
  background: #FAFAFA;
  color: #333;
}

.contact-form h2 {
  font-size: 1.5em;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0.5em;
}

.contact-form label {
  display: block;
  margin-bottom: 0.3em;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.5em;
  font-size: 1em;
  font-family: inherit;
  color: #333;
  background: #FFF;
  border: 1px solid #C8CDD2;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 1em;
}

.contact-form textarea {
  min-height: 6em;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #5AB1F5;
  box-shadow: 0 0 8px rgba(90, 177, 245, 0.3);
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  padding: 0.6em 1.2em;
  font-size: 1em;
  font-weight: 600;
  font-family: inherit;
  color: #5AB1F5;
  background: transparent;
  border: 2px solid #5AB1F5;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease, color 0.3s ease;
  margin-top: 0.5em;
}

.contact-form button svg,
.contact-form button i {
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  fill: currentColor;
}

.contact-form button:hover {
  background: #5AB1F5;
  color: #FFF;
}

.contact-form .contact-info {
  font-size: 0.9em;
  color: #555;
  text-align: center;
  margin-top: 1.5em;
}

.mensaje-confirmacion {
  text-align: center;
  padding: 2em;
  background: #f8f9fa;
  border-radius: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.mensaje-confirmacion h2 {
  color: #28a745;
  margin-bottom: 1em;
}

.mensaje-confirmacion p {
  color: #666;
  margin-bottom: 2em;
}

.btn-nuevo-mensaje {
  background: #5AB1F5;
  color: white;
  border: none;
  padding: 0.8em 1.5em;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-nuevo-mensaje:hover {
  background: #4a94d3;
}

.contact-item {
  flex: 1;
  text-align: center;
}

#fila_contact_com {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin: 1em 0;
  list-style: none;
}

#fila_contact_com a {
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

#fila_contact_com a:hover {
  opacity: 1;
}