/* === 1. RESET GLOBAL Y CONFIGURACIÓN BASE === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fff;
  padding-top: 90px;
}



/* === 2. DISEÑO NAVBAR === */
.navbar {
  background-color: #001636;
  height: 90px;
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 1rem;
}

.logo img {
  width: 220px;
  height: auto;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-tabs a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  margin-right: 3rem;
  font-size: 0.8rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-tabs a:hover {
  font-size: 0.85rem;
}

.nav-tabs a:hover::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #4FC3F7;
}

.nav-social a img {
  width: 30px;
  height: 30px;
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.nav-social a:hover img {
  transform: scale(1.1);
}

.nav-social a {
  text-decoration: none;
  border: none;
  outline: none;
}

.nav-social a:visited,
.nav-social a:focus,
.nav-social a:hover {
  text-decoration: none;
  border: none;
  outline: none;
}

/* === 3. RESPONSIVE NAVBAR === */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #001636;
  padding: 1rem;
  gap: 1rem;
  position: fixed;
  top: 90px;
  left: 0;
  width: 100%;
  z-index: 999;
}

.mobile-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-tabs a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

.mobile-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.mobile-social a img {
  width: 28px;
  height: 28px;
  margin-right: 1rem;
}

@media (max-width: 768px) {
  .nav-tabs,
  .nav-social {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu.active {
    display: flex;
  }

  .container {
    justify-content: space-between;
    width: 100%;
  }

  .nav-right {
    flex-direction: row-reverse;
    align-items: center;
    gap: 1rem;
  }

  .logo img {
    width: 150px;
  }

  .nav-tabs a {
    margin-right: 1rem;
  }
}

/* === 4. DISEÑO SECCIÓN HERO === */
.hero {
  background-image: url('imgs/fondo_1.png');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 5rem;
  color: #fff;
  overflow: hidden;

  animation: fadeUpHero 1.2s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 22, 54, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: 3rem;

  animation: fadeUpContent 1.6s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background-color: #0095ec;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 3px;
  transition: background-color 0.3s ease;
  margin-top: 4rem;
  font-size: 0.85rem;
}

.hero-button:hover {
  background-color: #29B6F6;
}

/* === 5. RESPONSIVE SECCIÓN HERO === */
@media (max-width: 768px) {
  .hero {
    padding: 0 1.5rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    margin-left: 0;
    max-width: 90%;
  }

  .hero h1 {
    font-size: 1.5rem;
    font-weight: 550;
  }

  .hero-button {
    margin-top: 2rem;
  }
}

/* === 6. ANIMACIONES SECCIÓN HERO === */
@keyframes fadeUpHero {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpContent {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === INICIO: estilos compactados para sección informativa === */
.info-section {
  display: flex;
  background-color: #e7e7e7;
  padding: 2rem 0; /* Menos espacio vertical */
  position: relative;
  overflow: hidden;
  align-items: center; /* Centra verticalmente los elementos */
}

/* Imagen alineada a la izquierda */
.info-image img {
  height: auto;
  max-height: 500px; /* Mucho menos alto */
  margin-top: 1rem;
  margin-bottom: 1rem;
  object-fit: contain;
  display: block;
}

.info-box {
  background-color: #ffffff;
  padding: 1.5rem 4rem;
  font-weight:500 ;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: -8.5rem;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 750px;
  width: 100%;
  box-sizing: border-box;
  height: 400px;
}

.info-title {
  font-size: 2.5rem;           /* Tamaño del título */
  font-weight: 600;            /* Grosor del texto */
  color: #001636;              /* Color azul oscuro */
  margin-bottom: 2rem;         /* ← Espacio entre el título y el párrafo */
  text-align: left;            /* Alineación a la izquierda */
}

.info-text {
  font-size: 1.2rem;           /* Tamaño del texto del párrafo */
  color: #333333;               /* Color del texto */
  text-align: justify;          /* Justificación para lectura ordenada */
  line-height: 1.2;             /* ← Espacio entre líneas ligeramente ampliado */
  font-weight: 500;
}


/* === FIN: estilos compactados para sección informativa === */

/* === RESPONSIVE: adaptación de sección informativa en pantallas pequeñas === */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;       /* Apila imagen y caja blanca verticalmente */
    padding: 2rem 1rem;           /* Reduce el padding lateral */
    align-items: center;          /* Centra los elementos */
  }

  .info-image img {
    max-width: 100%;              /* Imagen escala al ancho disponible */
    max-height: 300px;            /* Altura reducida para móviles */
    display: block;
    margin: 0 auto;

  }

  .info-box {
    margin-left: 0;               /* Elimina superposición lateral */
    max-width: 100%;              /* Caja blanca ocupa todo el ancho disponible */
    height: auto;                 /* Altura dinámica según contenido */
    padding: 1.5rem;              /* Espaciado interno más compacto */
    display: flex;
    flex-direction: column;
    justify-content: center;

  }

  .info-title {
    font-size: 1.8rem;            /* Título más compacto en móviles */
  }

  .info-text {
    font-size: 1rem;              /* Texto ligeramente más pequeño */
    line-height: 1.4;             /* Mejora legibilidad en pantallas pequeñas */
  }
  
}

/* === ANIMACIONES: entrada lateral para sección informativa === */



/* Keyframes para entrada desde la izquierda */
@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Keyframes para entrada desde la derecha */
@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* === ANIMACIONES CON SCROLL: entrada lateral diferida === */
.hidden-left,
.hidden-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.hidden-left {
  transform: translateX(-30px);
}

.visible {
  opacity: 1;
  transform: translateX(0);
}


/* === INICIO: estilos para la tercera sección === */
.cards-section {
  background-color: #ffffff;
  padding: 3rem 4rem 1rem;
  text-align: center;
}

.cards-title {
  font-size: 2rem;
  font-weight: 700;
  color: #001636;
  margin-bottom: 3rem;
  margin-top: 1.2;
}

.cards-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.card {
  padding: 1.5rem;
  flex: 1 1 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 400px;
  transition: transform 0.3s ease;
}

.card img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 120px;
  height: auto;
  transition: transform 0.3s ease;
}

.card img:hover {
  transform: scale(1.05);
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #001636;
  margin: 1rem 0 0.5rem;
  text-align: center;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
}

.card p {
  font-size: 0.9rem;
  color: #333333;
  text-align: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  font-weight: 500;
  max-width: 230px;
}

.card-button {
  margin-top: 1rem;
  margin-bottom: 0.05rem;
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background-color: #4FC3F7;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.card-button:hover {
  transform: scale(1.05);
}

@media (max-width: 1024px) {
  .cards-container {
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .card {
    flex: 0 0 calc(50% - 1rem); /* dos tarjetas por fila con espacio */
    max-width: calc(50% - 1rem);
    min-height: 420px;
  }

  .card p {
    max-width: 220px; /* igualamos el ancho del texto para evitar desbalance */
  }
}

@media (max-width: 768px) {
  .cards-section {
    padding: 2rem 1rem;
    overflow-x: hidden;
  }

  .cards-title {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
  }

  .cards-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;         /* ← límite visual como Directriz */
    margin: 0 auto;           /* ← centra el contenedor */
    padding: 0 0.5rem;        /* ← margen interno lateral */
    box-sizing: border-box;
  }

  .card {
    width: 100%;
    max-width: 250px;
    min-height: 340px;
    padding: 1rem;
  }

  .card img {
    max-width: 55px;
    margin-bottom: 0.5rem;
  }

  .card h3 {
    font-size: 0.78rem;
    max-width: 150px;
    margin: 0.5rem auto 0.3rem;
  }

  .card p {
    font-size: 0.7rem;
    max-width: 190px;
    margin-top: 0.5rem;
    margin-bottom: 0.6rem;
  }

  .card-button {
    font-size: 0.8rem;
    padding: 0.35rem 0.9rem;
  }
}




/* === INICIO: estilos para la sección con imagen de fondo y CTA === */
.cta-section {
  background-image: url('imgs/fondo_3.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-overlay {
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.cta-title {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.2px;
  color: #ffffff;
  margin: 0;
  padding: 0 200px;
  line-height: 1.6rem;
  margin-top: 0.2rem;
  margin-bottom: 1rem;
}

.cta-button {

  background-color: #001636;
  color: #ffffff;
  text-decoration: none;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  width: 160px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.cta-button:hover {
  background-color: #33425f; /* ← Color más claro al pasar el cursor */
}
/* === FIN: estilos para la sección con imagen de fondo y CTA === */

@media (max-width: 768px) {
  .cta-section {
    height: 260px; /* ← Reduce altura para evitar desbordes */
    background-position: center center;
  }

  .cta-overlay {
    gap: 2rem; /* ← Reduce espacio vertical entre título y botón */
  }

  .cta-title {
    font-size: 1rem;           /* ← Reduce tamaño del texto */
    line-height: 1.3rem;
    padding: 0 30px;           /* ← Menos espacio lateral */
    margin-bottom: 0.5rem;
  }

  .cta-button {
    width: 130px;
    height: 42px;
    font-size: 0.7rem;
  }
}

/* === ANIMACIONES CON SCROLL: fade suave para fondo + fade-up para contenido === */
.hidden-fade {
  opacity: 0;
  transition: opacity 1.2s ease-out;
}

.hidden-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}


/* === INICIO: estilos para la sección de contacto === */
.contact-section {
  background-color: #ffffff;
  padding: 4rem 4rem 4rem 1rem;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: -0.3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

/* Mitad izquierda: formulario */
.contact-form {
  flex: 1 1 55%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form h1 {
  font-size: 2.25rem;
  font-weight: 700;
  color: #001636;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;

}

.contact-form h3 {
  font-size: 1.3rem;
  font-weight: 500;
  color: #333333;
  margin-bottom: 2rem;
  text-align: left;
  max-width: 500px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Formulario */
form {
  width: 100%;
  max-width: 500px;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
  margin-bottom: 1.5rem;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #001636;
  margin-bottom: 0.5rem;
}

input,
textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 0;              /* ← Sin bordes redondeados */
  background-color: #f2f2f2;     /* ← Fondo gris claro */
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  resize: none;
}

textarea {
  height: 90px;
}

/* Botón de envío */
.submit-button {
  background-color: #4FC3F7;
  color: #ffffff;
  border: none;
  padding: 0.7rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;         /* ← Permite alineación izquierda */
  margin-left: 0;                /* ← Alineado con los campos */
}

.submit-button:hover {
  background-color: #76d4f9;
}

/* Mitad derecha: imagen y sombra */
.contact-image {
  flex: 1 1 40%;
  position: relative;
  display: flex;
  justify-content: flex-start;   /* ← Mueve ambas imágenes hacia la izquierda */
  align-items: center;
  padding-right: 2rem;           /* ← Espacio a la derecha */
}

.contact-image img {
  width: 110%;
  max-width: 550px;              /* ← Imagen principal más grande */
  position: relative;
  z-index: 2;
}

.image-shadow {
  position: absolute;
  top: 105px;
  left: 65px;                    /* ← Mueve sombra hacia la izquierda */
  width: 95%;                    /* ← Reduce ligeramente el tamaño */
  max-width: 470px;
  height: 80%;
  background-color: #001636;
  z-index: 1;
}
/* === FIN: estilos para la sección de contacto === */

/* === INICIO: responsividad para la sección de contacto === */
@media (max-width: 768px) {
  .contact-section {
    padding: 2rem 1rem; /* ← Reduce y equilibra el padding lateral */
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;           /* ← Valor seguro para separación vertical */
  }

  .contact-form {
    width: 100%;
    max-width: 500px;
    align-items: center;
  }

  .contact-form h1,
  .contact-form h3,
  form {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .submit-button {
    margin-left: 0;
    display: block;
    width: auto;
  }

  .contact-image {
    width: 100%;
    justify-content: center;
    padding-right: 0; /* ← Elimina el padding heredado */
  }

  .contact-image img {
    max-width: 95%;
    width: auto;
  }

  .image-shadow {
    left: 5%;
    top: 20px;
    max-width: 90%;
    width: 100%;
    height: 85%;
    display: block;
  }
}
/* === FIN: responsividad para la sección de contacto === */

/* === ANIMACIONES CON SCROLL: fade-up simultáneo para contacto === */
.hidden-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}


html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* === INICIO: estilos para la sección DIRECTRIZ === */
.directriz-section {
  background-color: #e7e7e7;
  padding: 5rem 0.7rem;
  text-align: center;
}

.directriz-section h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 3.5rem;
}

.directriz-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1050px;
  margin: 0 auto;
}

.directriz-card {
  flex: 1 1 22%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.directriz-card img {
  width: 100%;
  max-width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.directriz-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #000000;
  margin-top: 0;
}

@media (max-width: 768px) {
  .directriz-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
  }

  .directriz-card {
    flex: none;
    width: 100%;
    max-width: 300px;
  }

  .directriz-card img {
    max-width: 60px;
    height: 60px;
    margin-bottom: 0.8rem;
  }

  .directriz-card h3 {
    font-size: 1rem;
    margin: 0;
  }

  .directriz-section h1 {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
  }

  .directriz-section {
    padding: 3rem 1rem;
  }
}

/* === ANIMACIONES CON SCROLL: fade-up con desfase progresivo === */
.hidden-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Desfase progresivo reutilizable */
.delay-1 {
  transition-delay: 0s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.4s;
}
.delay-4 {
  transition-delay: 0.6s;
}
.delay-5 {
  transition-delay: 0.8s;
}



/* === INICIO: estilos para la sección FOOTER === */
.footer-section {
  background-color: #001636;
  padding: 5rem 8rem 0.5rem;
  color: white;
  font-family: system-ui, sans-serif;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Columna izquierda: logo + contacto */
.footer-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 200px;
  height: auto;
  margin-bottom: 2rem;
}

.footer-address {
  font-size: 0.8rem;
  line-height: 1.4;
  font-weight: 300;
  margin-bottom: 1rem;
  max-width: 290px;
}

.footer-contact {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-icon {
  font-size: 0.9rem;
  color: #00bfff; /* Azul claro para íconos */
  margin-right: 0.5rem;
}

.footer-text {
  font-size: 0.7rem;
  color: white;
  margin: 0;
}

/* Columna centro: lista de enlaces */
.footer-center {
  flex: 1;
  padding-top: 4rem; /* ← Alinea con los textos, no con el logo */
  padding-left: 3.8rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  font-size: 0.8rem;
  margin-bottom: 0.3rem;
  color: white;
}

/* Columna derecha: redes sociales */
.footer-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.7rem;
  padding-top: 3.2rem; /* ← Alinea con los textos */
}

.footer-social {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.footer-social img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-social img:hover {
  transform: scale(1.1);
}

/* Línea decorativa + copyright */
.footer-line {
  border: none;
  border-top: 1px solid white;
  margin: 3rem 0 0.5rem;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: white;
  margin: 0;
  font-weight: 300;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer-bottom {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* === FIN: estilos para la sección FOOTER === */

/* === INICIO: responsividad para la sección FOOTER === */
@media (max-width: 768px) {
  .footer-section {
    padding: 4rem 2rem 1rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: none;
    width: 100%;
    max-width: 320px;
    padding: 0;
    align-items: center;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-logo {
    margin-bottom: 1.5rem;
  }

  .footer-address {
    font-size: 0.75rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer-contact {
    justify-content: center;
  }

  .footer-text {
    font-size: 0.7rem;
  }

  .footer-center {
    padding-top: 0;
    padding-left: 0;
  }

  .footer-links li {
    font-size: 0.75rem;
    margin-bottom: 0.4rem;
  }

  .footer-right {
    justify-content: center;
    padding-top: 0;
    gap: 1rem;
  }

  .footer-social img {
    width: 26px;
    height: 26px;
  }

  .footer-line {
    margin: 2rem auto 0.5rem;
    width: 100%;
    max-width: 320px;
  }

  .footer-copy {
    font-size: 0.75rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
/* === FIN: responsividad para la sección FOOTER === */

/* =====================================================SUBPAGINA 1 NOSOTROS====================================== */

/* === INICIO: sección portada NOSOTROS === */
.nosotros-hero {
  background-image: url('imgs/nosotros1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 500px;
}

.nosotros-overlay {
  text-align: center;
  z-index: 2;
}

.nosotros-title {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  padding: 0 2rem;
  line-height: 1.2;
}

/* === RESPONSIVE: portada NOSOTROS === */
@media (max-width: 768px) {
  .nosotros-hero {
    height: 60vh;
  }

  .nosotros-title {
    font-size: 2rem;
    padding: 0 1rem;
  }
}

/* === INICIO: sección informativa NOSOTROS con imagen a la derecha === */
.nosotros-info-section {
  display: flex;
  background-color: #e7e7e7;
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
  align-items: center;
}

/* Recuadro de texto alineado a la izquierda */
.nosotros-box {
  background-color: #ffffff;
  padding: 1.5rem 4rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: -8.5rem;
  z-index: 2;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 750px;
  width: 100%;
  box-sizing: border-box;
  height: 400px;
}

.nosotros-text {
  font-size: 1.2rem;
  color: #333333;
  text-align: justify;
  line-height: 1.4;
  font-weight: 500;
}

/* Imagen alineada a la derecha */
.nosotros-image img {
  height: auto;
  max-height: 500px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  object-fit: contain;
  display: block;
}

/* === RESPONSIVE: adaptación en pantallas pequeñas === */
@media (max-width: 768px) {
  .nosotros-info-section {
    flex-direction: column;
    padding: 2rem 1rem;
    align-items: center;
  }

  .nosotros-box {
    margin-right: 0;
    max-width: 100%;
    height: auto;
    padding: 1.5rem;
  }

  .nosotros-image img {
    max-width: 100%;
    max-height: 300px;
    display: block;
    margin: 0 auto;
  }

  .nosotros-text {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* === ANIMACIONES CON SCROLL: entrada lateral === */
.hidden-left,
.hidden-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.hidden-left {
  transform: translateX(-30px);
}

.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === INICIO: sección VALORES INSTITUCIONALES === */
.valores-section {
  background-color: #ffffff;
  padding: 4rem 5rem;
  letter-spacing: 3px;
}

.valores-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #001636;
  text-align: left;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

/* Lista escalonada */
.valores-list {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.valor-item h3 {
  font-size: 1.3rem;
  font-weight: bolder;
  color: #0095ec;
  margin-bottom: 0.5rem;
  padding-left: 0.5rem;
  text-align: left;
  letter-spacing: 1px;
}

.valor-item p {
  font-size: 1.1rem;
  color: #333333;
  font-weight: 500;
  padding-left: 1.2rem; /* ← Escalonado extra */
  text-align: left;
  line-height: 1.4;
  letter-spacing: 1px;
}

/* === ANIMACIONES CON SCROLL: fade desde la izquierda con desfase === */
.hidden-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Desfase progresivo por ítem */
.delay-1 {
  transition-delay: 0s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.4s;
}
.delay-4 {
  transition-delay: 0.6s;
}
.delay-5 {
  transition-delay: 0.8s;
}


/* === RESPONSIVE: sección VALORES INSTITUCIONALES === */
@media (max-width: 768px) {
  .valores-section {
    padding: 3rem 1.5rem;
    text-align: center;
  }

  .valores-title {
    font-size: 1.6rem;
    text-align: center;
    padding-bottom: 1rem;
  }

  .valores-list {
    padding-left: 0;
    align-items: center;
  }

  .valor-item {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .valor-item h3 {
    font-size: 1.1rem;
    text-align: center;
    padding-left: 0;
  }

  .valor-item p {
    font-size: 0.95rem;
    text-align: justify;
    padding-left: 0.5rem;
  }
}

/* === INICIO: sección FILOSOFÍA === */
.filosofia-section {
  background-image: url('imgs/fondo_5.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 5rem 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-direction: column;
}



.filosofia-overlay {
  text-align: center;
  z-index: 2;
  padding: 0 2rem;
}

.filosofia-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.filosofia-text {
  font-size: 1.1rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
  max-width: 1100px;
  margin: 0 auto;
}

/* === RESPONSIVE: sección FILOSOFÍA === */
@media (max-width: 768px) {
  .filosofia-section {
    padding: 3rem 1rem;
  }

  .filosofia-title {
    font-size: 2rem;
    text-align: center;
  }

  .filosofia-text {
    font-size: 0.95rem;
    text-align: justify;
    max-width: 100%;
  }
}


/* === ANIMACIÓN: fade-up simultáneo === */
.hidden-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================SUBPAGINA CURSOS=============================== */

/* === INICIO: sección portada CURSOS === */
.cursos-hero {
  background-image: url('imgs/cursos_1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-height: 500px;
}

.cursos-overlay {
  text-align: center;
  z-index: 2;
}

.cursos-title {
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  margin: 0;
  padding: 0 2rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .cursos-hero {
    height: 60vh;
  }

  .cursos-title {
    font-size: 2rem;
    padding: 0 1rem;
  }
}
/* === FIN: sección portada CURSOS === */

/* === INICIO: sección tarjetas CURSOS === */
.cursos-cards-section {
  background-color: #ffffff;
  padding: 4rem 2rem;
}

.cursos-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.cursos-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.cursos-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.cursos-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.cursos-card:nth-child(4) { grid-column: 1; grid-row: 2; }
.cursos-card:nth-child(5) { grid-column: 2; grid-row: 2; }

.cursos-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  height: 100%;
  min-height: 320px;
}

.cursos-card-img {
  flex: 1;
  height: calc(100% - 100px);
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cursos-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cursos-card-content {
  background-color: #adadad;
  padding: 1rem;
  color: #ffffff;
  height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}


.cursos-card-content p {
  font-size: 0.9rem;
  margin: 0;
  text-align: left;
  line-height: 1.2rem;
  min-height: 2.4rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cursos-card-button {
  background-color: #001636;
  color: #ffffff;
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.8rem;
  align-self: flex-start;
  transition: background-color 0.3s ease;
  border: none;
  outline: none;
  box-shadow: none;
}

.cursos-card-button:hover {
  background-color: #003f87;
}
/* === FIN: sección tarjetas CURSOS === */

/* === INICIO: estilos para modales CURSOS === */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1000;
  display: none;
  overflow: hidden;
}

.curso-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 520px;
  max-height: 520px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  z-index: 1001;
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  overflow: hidden;
}

.modal-content {
  padding: 2rem;
  text-align: left;
  position: relative;
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
}

.modal-content h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-right: 3rem;
  color: #333333;
}

.modal-content p {
  font-size: 0.95rem;
  line-height: 1.4rem;
  color: #333333;
  margin: 0;
  text-align: justify;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  background-color: #001636;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
  z-index: 1002;
}

.modal-close:hover {
  background-color: #33425f;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
/* === FIN: estilos para modales CURSOS === */

/* === INICIO: responsive tarjetas CURSOS === */
@media (max-width: 1024px) {
  .cursos-cards-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto;
  }

  .cursos-card:nth-child(1) { grid-column: 1; grid-row: 1; }
  .cursos-card:nth-child(2) { grid-column: 2; grid-row: 1; }
  .cursos-card:nth-child(3) { grid-column: 1; grid-row: 2; }
  .cursos-card:nth-child(4) { grid-column: 2; grid-row: 2; }
  .cursos-card:nth-child(5) { grid-column: 1; grid-row: 3; }
}

@media (max-width: 640px) {
  .cursos-cards-container {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto auto;
  }

  .cursos-card:nth-child(n) {
    grid-column: 1;
    grid-row: auto;
  }

  .cursos-card-button {
    margin-top: 0.4rem;
  }

  .cursos-card:nth-child(5) .cursos-card-content {
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
/* === FIN: responsive tarjetas CURSOS === */

/* === INICIO: responsive títulos modales === */
@media (max-width: 640px) {
  .modal-content h2 {
    font-size: 0.85rem;
    padding-right: 2.5rem;
  }

  #modal-5 .modal-content h2 {
    font-size: 0.64rem;
  }
}
/* === FIN: responsive títulos modales === */

/* === INICIO: animaciones únicas tarjetas CURSOS === */
.cursos-card-anim-hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.cursos-card-anim-visible {
  opacity: 1;
  transform: translateY(0);
}

.cursos-card-delay-1 { transition-delay: 0.2s; }
.cursos-card-delay-2 { transition-delay: 0.4s; }
.cursos-card-delay-3 { transition-delay: 0.6s; }
.cursos-card-delay-4 { transition-delay: 0.8s; }
.cursos-card-delay-5 { transition-delay: 1s; }
/* === FIN: animaciones únicas tarjetas CURSOS === */

