/* ==============================
   Variables y base
============================== */
:root {
  --color-principal: #0e3a5d;
  --color-secundario: #e0f7fa;
  --color-terciario: #e8f5e9;
  --color-texto: #333;
  --color-fondo: #fdfdfd;
  --color-acento: #ffd54f;
  --espaciado: 1rem;
  --radio-borde: 6px;
  --sombra: 0 4px 6px rgba(0, 0, 0, 0.1);
  --animacion-suave: all 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Roboto, Arial, sans-serif;
  background-color: var(--color-fondo);
  color: var(--color-texto);
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

/* ==============================
   Utilidades
============================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--espaciado);
}

.text-center {
  text-align: center;
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: none;
  }
}

/* ==============================
   Cabecera y Pie de Página
============================== */

/* --- HEADER GENERAL --- */
.site-header {
  background-color: var(--color-principal, #0e3a5d);
  color: #fff;
  padding: 0.75rem 1rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: background-color 0.3s ease, padding 0.3s ease;
}

/* Mejora visual cuando se hace scroll (versión opcional con clase scroll) */
.site-header.scroll {
  background-color: var(--color-principal-oscuro, #0b2d47);
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* --- NAV CONTAINER --- */
.navbar-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* --- LOGO --- */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
}

/* --- BOTÓN HAMBURGUESA --- */
.nav-toggle {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* --- LINKS DE NAVEGACIÓN --- */
.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  padding-left: 0;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 0.5rem;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--color-acento);
}

/* ====================================
   NAVEGACIÓN PRINCIPAL
==================================== */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 0.75rem var(--espaciado);
  background-color: var(--color-principal);
  position: relative;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Contenedor interno con control completo */
.navbar-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Logo --- */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.5px;
  transition: opacity 0.3s ease;
}

.logo img {
  height: 48px;
  width: auto;
}

.logo:hover {
  opacity: 0.85;
}

/* --- Enlaces de navegación --- */
.nav-links {
  list-style: none;
  display: flex;
  gap: var(--espaciado);
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.5rem;
  transition: color 0.3s ease, background-color 0.3s ease;
  border-radius: 4px;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--color-acento, #ffd54f);
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
}

/* --- Botón hamburguesa (responsive) --- */
.nav-toggle {
  display: none; /* Se muestra en mobile */
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

/* Feedback visual al pasar o enfocar */
.nav-toggle:hover,
.nav-toggle:focus {
  background-color: rgba(255, 255, 255, 0.1);
  outline: none;
  transform: scale(1.05);
}

/* Accesibilidad adicional */
.nav-toggle:focus-visible {
  box-shadow: 0 0 0 2px #ffd54f;
}
/* Responsive para pantallas pequeñas */
/* ======================================
   Navegación Responsive — Mobile First
====================================== */

@media (max-width: 768px) {
  .site-header {
    padding: 0.5rem 1rem;
    text-align: center;
  }

  .site-header .logo {
    justify-content: center;
  }

  .navbar-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    border-radius: 0 0 12px 12px;
    padding: 1rem 0;
    display: none;
  }

  .nav-links.nav-open {
    display: flex;
    flex-direction: column;
  }
}

/* ============================
   Accesibilidad & refinamiento
============================ */
.site-header a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
}

.site-header a:hover,
.site-header a:focus {
  text-decoration: underline;
}
@media (max-width: 768px) {
  /* Botón hamburguesa visible en móvil */
  .nav-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 1001;
    padding: 0.5rem;
    background: transparent;
    border: none;
    font-size: 2rem;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .nav-toggle:hover,
  .nav-toggle:focus {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
  }

  /* Menú oculto por defecto */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 64px;
    right: 0;
    background-color: white;
    box-shadow: var(--sombra, 0 4px 8px rgba(0, 0, 0, 0.15));
    border-radius: 0 0 var(--radio-borde) var(--radio-borde);
    padding: 1rem;
    transition: all 0.3s ease;
    z-index: 1000;
  }

  /* Estilo cuando se activa el menú */
  .nav-links.nav-open {
    display: flex;
  }

  /* Estilos individuales de enlaces */
  .nav-links a {
    color: var(--color-principal);
    font-weight: 600;
    padding: 0.75rem 1rem;
    text-align: center;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a:hover,
  .nav-links a:focus {
    background-color: var(--color-acento, #fce4ec);
    color: #0e3a5d;
    border-radius: 4px;
  }
}




/* ==============================
   Hero Section
============================== */
/* ============================
   Sección Hero - Profesional
============================ */

/* HERO impactante */
.hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: clamp(4rem, 6vw, 7rem) 2rem;
  border-radius: var(--radio-borde, 12px);
  overflow: hidden;
  isolation: isolate;
  min-height: 85vh; /* un poco más alto para impacto */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Imagen con efecto Ken Burns */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/img/Hero1.png') center/cover no-repeat;
  transform: scale(1.05);
  transition: transform 14s ease;
  z-index: -2;
  will-change: transform;
}
.hero:hover::before {
  transform: scale(1.1);
}

/* Overlay con degradado sutil (sin difuminar) */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.15) 60%,
      rgba(0, 0, 0, 0.05) 100%
  );
  transition: background 0.6s ease;
  z-index: -1;
}
.hero:hover::after {
  background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65) 0%,
      rgba(0, 0, 0, 0.25) 60%,
      rgba(0, 0, 0, 0.1) 100%
  );
}

/* Contenido */
.hero-overlay {
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}

/* Animación */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Título */
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.7);
}

/* Subtítulo */
.hero .lead {
  font-size: clamp(1rem, 1.3vw, 1.35rem);
  margin: 1rem auto 1.5rem;
  max-width: 720px;
  color: #f5f7fa;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
  animation: fadeUp 1.6s ease forwards;
  opacity: 0;
}

/* Delay animaciones */
.hero h1 { animation-delay: 0.2s; }
.hero .lead { animation-delay: 0.5s; }
.hero .btn { animation-delay: 0.8s; }

/* Botón CTA */
.hero .btn {
  margin-top: 1rem;
  padding: 1rem 2.2rem;
  background: linear-gradient(135deg, #ffd54f, #fbc02d);
  color: #0e2a47;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.05rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35),
              0 0 12px rgba(255, 213, 79, 0.4);
  opacity: 0;
  animation: fadeUp 1.8s ease forwards;
}
.hero .btn:hover,
.hero .btn:focus {
  background: linear-gradient(135deg, #fbc02d, #ffa000);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.4),
              0 0 18px rgba(255, 213, 79, 0.6);
}

/* Accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero,
  .hero-overlay,
  .hero h1,
  .hero .lead,
  .hero .btn {
    transition: none !important;
    animation: none !important;
  }
}






/* =============================
   Botón Primario - Profesional
============================= */
.btn {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.75rem;
  background-color: var(--color-principal);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radio-borde);
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.btn:hover,
.btn:focus {
  background-color: #fcf9fc;
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  outline: none;
}

/* Para accesibilidad con teclado */
.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

/* ==========================================
   VALORES / PILARES FUNDACIONALES
========================================== */
.pilares-section {
  background: #f5f9fc;
  padding: 6rem 2rem;
  text-align: center;
}

.section-title {
  font-size: 2.8rem;
  color: #ffde59;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.versiculo {
  font-size: 1.25rem;
  color: #5d6d7e;
  font-style: italic;
  margin: 0 auto 4rem;
  max-width: 720px;
}

.pilares-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pilar {
  position: relative;
  height: 360px;
  border-radius: 1.2rem;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.12);
}

.pilar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.15));
  z-index: 1;
  transition: background 0.3s ease;
}

.pilar-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  color: #fff;
  text-align: left;
}

.pilar h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: #ffd54f;
}

.pilar p {
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
}

.pilar:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Background images */
.pilar-fisico {
  background-image: url('../assets/img/image2.png');
}
.pilar-intelectual {
  background-image: url('../assets/img/image3.png');
}
.pilar-espiritual {
  background-image: url('../assets/img/image4.png');
}
.pilar-social {
  background-image: url('../assets/img/image5.png');
}

/* Responsive text and layout */
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }

  .versiculo {
    font-size: 1.05rem;
  }

  .pilar {
    height: 300px;
  }

  .pilar-content {
    padding: 1.5rem;
  }
}








/* ==============================
   Highlights
============================== */
/* ================================
   Sección de Destacados - Profesional
================================ */

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 4rem auto;
  padding: 0 clamp(1rem, 5vw, 2.5rem);
  max-width: 1200px;
}

/* Caja destacada */
.highlight-box {
  background: linear-gradient(135deg, #f8fafd 0%, #ffffff 100%);
  padding: 2rem 1.5rem;
  border-left: 6px solid var(--color-principal, #0e3a5d);
  border-radius: var(--radio-borde, 12px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  flex: 1 1 320px;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* Efecto hover */
.highlight-box:hover,
.highlight-box:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Icono decorativo opcional */
.highlight-box::before {
  content: "★";
  font-size: 2rem;
  color: var(--color-acento, #ffd54f);
  position: absolute;
  top: 1rem;
  right: 1.2rem;
  opacity: 0.15;
  pointer-events: none;
}

/* Título del box */
.highlight-box h3 {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-principal, #0e3a5d);
  margin-bottom: 0.75rem;
}

/* Texto del box */
.highlight-box p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin: 0;
  max-width: 95%;
}


/* ===== Niveles de Educación ===== */
/* ===== Niveles de Educación (versión clara y fresca) ===== */
.niveles-section{
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  background: #f9fafb; /* fondo suave */
}

.niveles-header{
  text-align:center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  padding: 0 1rem;
}
.niveles-header h2{
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  margin: 0 0 .5rem;
  color: #1e3a8a; /* azul más académico */
}
.niveles-sub{
  color:#475569; /* gris azulado más legible */
  max-width: 60ch;
  margin: 0 auto;
}

.niveles-grid{
  list-style:none;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 72rem;
  display:grid;
  gap: clamp(1rem, 2.4vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.nivel-card{
  display:grid;
  grid-template-columns: auto 1fr;
  gap: .9rem 1rem;
  align-items:flex-start;
  padding: 1.5rem;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.nivel-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,.1);
  border-color: rgba(59,130,246,.25); /* azul claro */
}

.nivel-icon{
  width: 52px; height: 52px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: #e0f2fe; /* celeste claro */
  color: #0369a1;     /* azul vivo */
}
.nivel-icon i{ width: 26px; height: 26px; }

.nivel-body h3{
  margin: 0 0 .35rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a; /* casi negro */
}
.nivel-body p{
  margin: .15rem 0;
  color:#334155; /* gris oscuro legible */
}

.nivel-meta{
  grid-column: 1 / -1;
  display:flex; gap:.5rem; flex-wrap:wrap; align-items:center;
}
.chip{
  display:inline-block;
  padding: .3rem .75rem;
  border-radius: 999px;
  background: #dbeafe; /* azul pastel */
  color:#1e40af;       /* azul profundo */
  font-size:.8rem; font-weight:700;
}
.nivel-link{
  margin-left:auto;
  font-weight:700;
  text-decoration:none;
  color:#2563eb;
}
.nivel-link:hover{ text-decoration:underline; }



/* ==========================================
   Sección de Llamado a la Acción (CTA)
========================================== */
.llamado-accion {
  background: linear-gradient(135deg, #e0f2f1 0%, #f1fdfc 100%);
  padding: 3.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  margin: 4rem auto;
  max-width: 960px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.llamado-accion:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

/* Imagen superior opcional */
.llamado-accion img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1.75rem;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
}

/* Título */
.llamado-accion h2 {
  font-size: 2.2rem;
  color: var(--color-principal, #00695c);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

/* Descripción */
.llamado-accion p {
  font-size: 1.15rem;
  color: #333;
  max-width: 720px;
  margin: 0 auto 2rem auto;
  line-height: 1.6;
}

/* Botón de llamado a la acción */
.llamado-accion .btn {
  background-color: var(--color-acento, #00796b);
  color: #fff;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.llamado-accion .btn:hover,
.llamado-accion .btn:focus {
  background-color: #004d40;
  transform: scale(1.05);
  outline: none;
}




/* ==============================
   Footer profesional
============================== */
.site-footer {
  background-color: #0e3a5d;
  color: #f0f4f8;
  padding: 4rem 2rem 2rem;
  border-top: 4px solid #ffd54f;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-info {
  flex: 1 1 300px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
}

.footer-logo span {
  color: #ffd54f;
}

.footer-mision,
.footer-nit,
.footer-contacto {
  margin: 0.5rem 0;
  font-size: 0.95rem;
}

.footer-links,
.footer-social {
  flex: 1 1 200px;
}

.footer-links h3,
.footer-social h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-links ul,
.social-icons {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.social-icons li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #f0f4f8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd54f;
}

.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  color: #ffd54f;
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.legal-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.legal-links a {
  color: #f0f4f8;
  text-decoration: none;
}

.legal-links a:hover {
  color: #ffd54f;
}


@media (max-width: 768px) {
  .hero {
    padding: 5rem 1.5rem;
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero .lead {
    font-size: 1rem;
    max-width: 90%;
  }

  .hero .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 4rem 1rem;
    min-height: 55vh;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero .lead {
    font-size: 0.95rem;
  }

  .hero .btn {
    width: 100%;
    max-width: 280px;
    font-size: 0.95rem;
  }
}

/* Responsive ajustes finos */
@media (max-width: 480px) {
  .valores-section {
    padding: 3rem 1rem;
  }

  .valores-grid article {
    padding: 1.5rem 1rem;
  }

  .valores-grid strong {
    font-size: 1.3rem;
  }

  .icono-valor {
    max-width: 180px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .highlights {
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
  }

  .highlight-box {
    max-width: 100%;
  }
}

@media (max-width: 1024px) {
  .llamado-accion {
    padding: 3rem 1.5rem;
    margin: 3rem auto;
  }

  .llamado-accion h2 {
    font-size: 2rem;
  }

  .llamado-accion p {
    font-size: 1.05rem;
    max-width: 90%;
  }

  .llamado-accion img {
    max-height: 320px;
  }
}

@media (max-width: 768px) {
  .llamado-accion {
    padding: 2.5rem 1rem;
    border-radius: 10px;
  }

  .llamado-accion h2 {
    font-size: 1.75rem;
  }

  .llamado-accion p {
    font-size: 1rem;
  }

  .llamado-accion img {
    max-height: 260px;
    margin-bottom: 1.25rem;
  }

  .llamado-accion .btn {
    width: 100%;
    max-width: 300px;
    font-size: 1rem;
    padding: 0.75rem 1.2rem;
  }
}

@media (max-width: 480px) {
  .llamado-accion {
    padding: 2rem 0.75rem;
    border-radius: 8px;
  }

  .llamado-accion h2 {
    font-size: 1.5rem;
  }

  .llamado-accion p {
    font-size: 0.95rem;
  }

  .llamado-accion img {
    max-height: 200px;
    border-radius: 6px;
  }

  .llamado-accion .btn {
    font-size: 0.95rem;
    padding: 0.7rem 1.2rem;
  }
}


@media (max-width: 992px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2.5rem;
  }

  .footer-info,
  .footer-links,
  .footer-social {
    min-width: 100%;
  }

  .footer-links ul a {
    margin-bottom: 0.5rem;
  }

  .social-icons {
    justify-content: center;
    gap: 1.25rem;
  }

  .footer-social h4 {
    font-size: 1.2rem;
  }

  .social-icons a {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .site-footer {
    padding: 2rem 1rem;
  }

  .footer-links h4,
  .footer-social h4 {
    font-size: 1rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding-top: 1rem;
  }

  .footer-bottom .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}




/* ==============================
   Responsive
============================== */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    padding: var(--espaciado);
    box-shadow: var(--sombra);
  }

  .nav-links.nav-open {
    display: flex;
  }

  .highlight-box,
  .footer-container {
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom .legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }
}
