/* ==========================================================================
   Nova Navigation Component Stylesheet
   ========================================================================== */

/* --- Variables de Diseño (Tokens) --- */
:root {
  /* Paleta de Colores Corporativos Ligeros (Azul y Blanco) */
  --bg-primary: #ffffff;          /* Fondo principal blanco */
  --bg-secondary: #f4f7fe;        /* Fondo secundario azul tenue */
  --bg-glass: rgba(255, 255, 255, 0.8); /* Glassmorphism claro */
  --border-glass: rgba(29, 70, 180, 0.1);
  
  --primary-color: #1D46B4;      /* Azul Real Institucional */
  --secondary-color: #B7ECE3;    /* Menta Suave Institucional */
  --text-main: #0f172a;          /* Slate muy oscuro para máxima legibilidad */
  --text-muted: #475569;         /* Slate grisáceo para textos secundarios */
  --accent-gradient: linear-gradient(135deg, #1D46B4 0%, #0c2b7a 100%); /* Degradado de azul real */
  --accent-gradient-hover: linear-gradient(135deg, #2a5ae4 0%, #153896 100%);
  
  /* Fuentes & Sombras */
  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-glow: 0 8px 32px 0 rgba(29, 70, 180, 0.08); /* Sombra más sutil */
  --shadow-button: 0 4px 16px rgba(29, 70, 180, 0.2);
  
  /* Transiciones */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Dimensiones */
  --header-height: 80px;
}

/* --- Reseteo de Estilos & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* --- Selección de Texto UX Personalizada --- */
::selection {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

::-moz-selection {
  background-color: var(--secondary-color);
  color: var(--primary-color);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-family);
  overflow-x: hidden;
  line-height: 1.5;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

/* --- Estructura del Header (Menú Principal) --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  background-color: #1D46B4;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all var(--transition-normal);
}

/* Efecto cuando se hace scroll */
.header.scrolled {
  height: 70px;
  background-color: #153896;
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.header-container {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --- Logo de la Empresa --- */
.logo-link {
  display: inline-block;
  outline: none;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform var(--transition-slow);
}

.logo-link:hover .logo-img {
  transform: scale(1.1);
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #ffffff 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: filter var(--transition-normal);
}

.logo-link:hover .logo-text {
  filter: brightness(1.2);
}

/* --- Menú de Enlaces (Navegación) --- */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 8px 0;
  transition: color var(--transition-normal);
}

/* Animación del subrayado (expandir desde el centro) */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width var(--transition-normal), left var(--transition-normal);
  border-radius: 2px;
}

.nav-link:hover {
  color: #ffffff;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

.nav-link.active {
  color: #ffffff;
  font-weight: 600;
}

/* --- Contenedor de Acciones (Login / Botones) --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Botón de Login Premium con degradado animado */
.btn-login {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  background: transparent;
  border-radius: 30px;
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-normal), color var(--transition-fast);
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-login::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  z-index: -1;
  transition: opacity var(--transition-normal);
}

.btn-login:hover {
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
  border-color: transparent;
}

.btn-login:hover::before {
  opacity: 1;
}

.btn-login:active {
  transform: translateY(0);
}

/* --- Botón del Menú Hamburguesa (Móvil) --- */
.menu-toggle {
  display: none; /* Oculto en pantallas de escritorio */
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  outline: none;
}

.hamburger-box {
  display: inline-block;
  width: 24px;
  height: 18px;
  position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  border-radius: 4px;
  transition: transform var(--transition-normal), background-color var(--transition-normal);
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

/* Animación del menú hamburguesa al transformarse en 'X' */
.menu-toggle.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.menu-toggle.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.menu-toggle.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}


/* ==========================================================================
   DISEÑO RESPONSIVO (Media Queries)
   ========================================================================== */

@media (max-width: 768px) {
  /* Ocultar menú normal y mostrar botón hamburguesa */
  .menu-toggle {
    display: inline-block;
  }

  /* Rediseño del menú para móvil en estilo cortina/drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Oculto inicialmente a la derecha */
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: rgba(29, 70, 180, 0.98);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 120px 40px 40px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: right var(--transition-slow);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  }

  /* Cuando el menú móvil está activo */
  .nav-menu.is-open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    width: 100%;
  }

  .nav-item {
    width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity var(--transition-normal), transform var(--transition-normal);
  }

  /* Animación escalonada (Stagger) de los enlaces al abrir */
  .nav-menu.is-open .nav-item {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-menu.is-open .nav-item:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu.is-open .nav-item:nth-child(2) { transition-delay: 0.15s; }
  .nav-menu.is-open .nav-item:nth-child(3) { transition-delay: 0.2s; }
  .nav-menu.is-open .nav-item:nth-child(4) { transition-delay: 0.25s; }
  .nav-menu.is-open .nav-item:nth-child(5) { transition-delay: 0.3s; }

  .nav-link {
    font-size: 1.25rem;
    width: 100%;
    display: block;
    padding: 10px 0;
  }

  .nav-link::after {
    bottom: 5px; /* Ajustar posición en móvil */
  }

  /* El botón de login se moverá dentro de las acciones o del menú móvil.
     Para móvil, colocamos una copia o lo reposicionamos con Flex */
  .nav-actions {
    gap: 12px;
  }

  /* Opcional: Estilo para desactivar scroll en el body cuando el menú móvil esté abierto */
  body.menu-open {
    overflow: hidden;
  }
}

/* Ajuste fino para pantallas extra pequeñas */
@media (max-width: 480px) {
  .logo-text {
    font-size: 1.1rem;
    letter-spacing: 1px;
  }
  
  .btn-login {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .nav-menu {
    width: 100%; /* Ocupa toda la pantalla en móviles pequeños */
  }
}


/* ==========================================================================
   ESTILOS DE DEMOSTRACIÓN (Hero Section)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 60px;
  background-color: var(--bg-primary);
  overflow: hidden;
}

/* Puntos de resplandor neón en el fondo para lucir el blur */
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12; /* Softer opacity for white background */
  z-index: 0;
  pointer-events: none;
}

.glow-1 {
  width: 400px;
  height: 400px;
  background-color: var(--primary-color);
  top: 15%;
  left: 10%;
  animation: floatGlow 15s infinite alternate ease-in-out;
}

.glow-2 {
  width: 500px;
  height: 500px;
  background-color: var(--secondary-color);
  bottom: 10%;
  right: 5%;
  animation: floatGlow 20s infinite alternate-reverse ease-in-out;
}

@keyframes floatGlow {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(80px, 50px) scale(1.2);
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Botones Hero */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--bg-primary);
  box-shadow: var(--shadow-button);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
  box-shadow: 0 6px 24px rgba(0, 255, 255, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}


/* ==========================================================================
   ESTILOS DE LA SECCIÓN DE INFORMACIÓN (Servicios / Corporativo)
   ========================================================================== */
.info-section {
  padding: 120px 24px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.info-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}

/* --- Bloque de Texto --- */
.info-text-block {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.info-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.info-description {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.info-detail {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

.info-btn {
  align-self: flex-start;
}

/* --- Bloque de Imagen --- */
.info-image-block {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-glow);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  transition: border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(29, 70, 180, 0) 60%, rgba(29, 70, 180, 0.15) 100%);
  pointer-events: none;
}

.responsive-info-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

/* Animación sutil en la imagen al pasar el cursor */
.image-wrapper:hover {
  border-color: rgba(183, 236, 227, 0.25);
  box-shadow: 0 12px 40px rgba(29, 70, 180, 0.3);
}

.image-wrapper:hover .responsive-info-image {
  transform: scale(1.03);
}

/* --- Adaptación UX Responsiva (Móvil) --- */
@media (max-width: 992px) {
  .info-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .info-section {
    padding: 80px 20px;
  }

  .info-container {
    flex-direction: column; /* Apilar verticalmente */
    text-align: center;
    gap: 48px;
  }

  .info-text-block {
    align-items: center;
    text-align: center;
  }

  .info-btn {
    align-self: center; /* Centrar botón en móvil */
  }

  .info-image-block {
    order: 2; /* Asegurar que el texto aparezca antes de la imagen */
  }

  .responsive-info-image {
    max-width: 100%;
  }
}


/* ==========================================================================
   ESTILOS DE LA SECCIÓN QUIÉNES SOMOS (Nosotros)
   ========================================================================== */
.about-section {
  padding: 120px 24px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
  /* Checkerboard effect: Image on left, Text on right */
  flex-direction: row;
}

/* --- Bloque de Texto --- */
.about-text-block {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.title-wrapper {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 24px;
}

.about-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0px;
  letter-spacing: -0.5px;
}

/* Contenedor del decorado tipo "brush" */
.brush-stroke-container {
  width: 100%;
  display: flex;
  margin-top: 4px;
}

.brush-stroke {
  width: 100%;
  height: 10px; /* Altura controlada para que no se deforme verticalmente */
  object-fit: fill; /* Estirar horizontalmente al tamaño del título */
  display: block;
  transform: scaleX(1.25); /* Escalar horizontalmente para compensar márgenes transparentes de la imagen */
  transform-origin: center center; /* Centrar de forma simétrica */
}

.about-description {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-detail {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.about-btn {
  align-self: flex-start;
  margin-top: 32px;
}

/* --- Bloque de Imagen --- */
.about-image-block {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.responsive-about-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.image-wrapper:hover .responsive-about-image {
  transform: scale(1.03);
}

/* --- Adaptación UX Responsiva (Móvil) --- */
@media (max-width: 992px) {
  .about-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 80px 20px;
  }

  .about-container {
    flex-direction: column; /* Apilar verticalmente, texto arriba e imagen abajo */
    text-align: center;
    gap: 48px;
  }

  .about-text-block {
    align-items: center;
    text-align: center;
    order: 1; /* Cargar texto arriba */
  }

  .about-btn {
    align-self: center; /* Centrar botón en móvil */
  }

  .title-wrapper {
    align-items: center;
  }

  .brush-stroke-container {
    justify-content: center;
  }

  .brush-stroke {
    transform-origin: center center;
  }

  .about-image-block {
    order: 2; /* Cargar imagen abajo */
  }

  .responsive-about-image {
    max-width: 100%;
  }
}


/* ==========================================================================
   ESTILOS DE LA SECCIÓN VISIÓN
   ========================================================================== */
.vision-section {
  padding: 120px 24px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.vision-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
  flex-direction: row;
}

/* --- Bloque de Texto --- */
.vision-text-block {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.vision-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0px;
  letter-spacing: -0.5px;
}

.vision-description {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
  margin-top: 24px;
}

/* --- Bloque de Imagen --- */
.vision-image-block {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.responsive-vision-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.image-wrapper:hover .responsive-vision-image {
  transform: scale(1.03);
}

/* --- Adaptación UX Responsiva (Móvil) --- */
@media (max-width: 992px) {
  .vision-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .vision-section {
    padding: 80px 20px;
  }

  .vision-container {
    flex-direction: column; /* Apilar verticalmente */
    text-align: center;
    gap: 48px;
  }

  .vision-text-block {
    align-items: center;
    text-align: center;
  }

  .vision-image-block {
    order: 2; /* Cargar imagen abajo */
  }

  .responsive-vision-image {
    max-width: 100%;
  }
}


/* ==========================================================================
   ESTILOS DE LA SECCIÓN NUESTRA PROMESA
   ========================================================================== */
.promise-section {
  padding: 120px 24px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.promise-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
  /* Checkerboard effect: Text on left, Image on right */
  flex-direction: row;
}

/* --- Bloque de Texto --- */
.promise-text-block {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.promise-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0px;
  letter-spacing: -0.5px;
}

/* Efecto brush de sentido contrario (espejo horizontal) */
.brush-2 {
  transform: scaleX(-1.25) !important; /* Voltear horizontalmente la pincelada */
  transform-origin: center center !important; /* Centrado simétrico */
}

.promise-description {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
}

.promise-detail {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.promise-btn {
  align-self: flex-start;
  margin-top: 32px;
}

/* --- Bloque de Imagen --- */
.promise-image-block {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.responsive-promise-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.image-wrapper:hover .responsive-promise-image {
  transform: scale(1.03);
}

/* --- Adaptación UX Responsiva (Móvil) --- */
@media (max-width: 992px) {
  .promise-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .promise-section {
    padding: 80px 20px;
  }

  .promise-container {
    flex-direction: column; /* Apilar verticalmente */
    text-align: center;
    gap: 48px;
  }

  .promise-text-block {
    align-items: center;
    text-align: center;
  }

  .promise-btn {
    align-self: center; /* Centrar botón en móvil */
  }

  .brush-2 {
    transform-origin: center center !important; /* Alinear origen de escala en el centro */
  }

  .promise-image-block {
    order: 2; /* Cargar imagen abajo */
  }

  .responsive-promise-image {
    max-width: 100%;
  }
}


/* ==========================================================================
   ESTILOS DE LA SECCIÓN SOMOS TU MEJOR OPCIÓN
   ========================================================================== */
.option-section {
  padding: 120px 24px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.option-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
  flex-direction: row;
}

/* --- Bloque de Texto --- */
.option-text-block {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.option-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0px;
  letter-spacing: -0.5px;
}

.option-description {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 500;
  margin-top: 24px;
}

.option-btn {
  align-self: flex-start;
  margin-top: 32px;
}

/* --- Bloque de Imagen --- */
.option-image-block {
  flex: 0.9;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.responsive-option-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform var(--transition-slow);
}

.image-wrapper:hover .responsive-option-image {
  transform: scale(1.03);
}

/* --- Adaptación UX Responsiva (Móvil) --- */
@media (max-width: 992px) {
  .option-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .option-section {
    padding: 80px 20px;
  }

  .option-container {
    flex-direction: column; /* Apilar verticalmente */
    text-align: center;
    gap: 48px;
  }

  .option-text-block {
    align-items: center;
    text-align: center;
  }

  .option-btn {
    align-self: center; /* Centrar botón en móvil */
  }

  .option-image-block {
    order: 2; /* Cargar imagen abajo */
  }

  .responsive-option-image {
    max-width: 100%;
  }
}


/* ==========================================================================
   ESTILOS DE LA SECCIÓN NUESTRA FILOSOFÍA
   ========================================================================== */
.philosophy-section {
  position: relative;
  padding: 120px 24px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.philosophy-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.philosophy-title {
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 0px;
  letter-spacing: -0.5px;
}

.philosophy-description {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 500;
  margin-top: 24px;
}

.centered-title {
  align-items: center !important;
  text-align: center !important;
  display: flex;
  flex-direction: column;
}


/* ==========================================================================
   ESTILOS DE LA NUEVA SECCIÓN DE SERVICIOS (TARJETAS FIGMA)
   ========================================================================== */
.services-section {
  padding: 120px 24px;
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.services-header {
  margin-bottom: 60px;
  max-width: 700px;
}

.services-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.services-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Grilla de Tarjetas */
.services-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  margin-bottom: 48px;
  align-items: stretch;
}

/* Tarjeta Base */
.service-card {
  background-color: #ffffff;
  border-radius: 32px;
  padding: 50px 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
  position: relative;
}

/* Tarjetas Laterales (White background, colored borders) */
.card-left {
  border: 2px solid #B7ECE3; /* Menthe border */
  box-shadow: 0 10px 30px rgba(183, 236, 227, 0.15);
}

.card-left:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(183, 236, 227, 0.3);
}

.card-right {
  border: 2px solid rgba(29, 70, 180, 0.3); /* Soft blue border */
  box-shadow: 0 10px 30px rgba(29, 70, 180, 0.05);
}

.card-right:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(29, 70, 180, 0.15);
}

/* Tarjeta Central Destacada (Blue background) */
.card-featured {
  background-color: #1D46B4; /* Institutional Blue */
  color: #ffffff;
  transform: translateY(-12px); /* Slightly raised by default */
  box-shadow: 0 20px 40px rgba(29, 70, 180, 0.35);
  border: 2px solid transparent;
}

.card-featured:hover {
  transform: translateY(-18px);
  box-shadow: 0 24px 48px rgba(29, 70, 180, 0.45);
}

/* Iconos de las Tarjetas */
.service-icon-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto; /* Push icon to the bottom of the card content */
  margin-bottom: 10px;
  transition: transform var(--transition-normal);
}

.service-card:hover .service-icon-wrapper {
  transform: scale(1.08);
}

.service-icon-wrapper svg {
  width: 54px;
  height: 54px;
}

/* Colores de Iconos */
.icon-blue-circle {
  background-color: #1D46B4;
  color: #ffffff;
}

.icon-white-circle {
  background-color: #ffffff;
  color: #1D46B4;
}

/* Textos dentro de Tarjetas */
.service-card-title {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
  color: inherit;
}

/* Dark text for white cards, white text for featured card is inherited/defined */
.card-left .service-card-title,
.card-right .service-card-title {
  color: var(--text-main);
}

.service-card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 32px;
  color: inherit;
  opacity: 0.85;
}

.card-left .service-card-description,
.card-right .service-card-description {
  color: var(--text-muted);
}

/* Indicadores de Páginas (Puntos) */
.services-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.service-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(29, 70, 180, 0.2); /* Inactive dot */
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.service-dot.active {
  background-color: #1D46B4; /* Institutional Blue for active */
  transform: scale(1.2);
}

/* --- Adaptación UX Responsiva (Móvil) --- */
@media (max-width: 992px) {
  .services-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .card-featured {
    transform: none;
    grid-column: span 2; /* Make featured card span full width when in 2 cols */
  }
  
  .card-featured:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 80px 20px;
  }
  
  .services-header {
    margin-bottom: 40px;
  }

  .services-card-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .card-featured {
    grid-column: span 1;
  }
}


/* ==========================================================================
   ESTILOS DEL PIE DE PÁGINA (MAIN FOOTER FIGMA)
   ========================================================================== */
.main-footer {
  position: relative;
  background-color: #1D46B4; /* Institutional Royal Blue */
  color: #ffffff;
  padding: 100px 24px 40px;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Fondo decorativo de líneas SVG */
.footer-bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Crect x='20' y='20' width='160' height='160' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3Crect x='40' y='40' width='120' height='120' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3Crect x='60' y='60' width='80' height='80' fill='none' stroke='%23ffffff' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 1;
}

/* 1. Sección Call to Action (CTA) */
.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.cta-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.cta-text {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 620px;
}

/* Botón Mint Premium */
.btn-mint {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #B7ECE3; /* Mint */
  color: #0f172a; /* Dark slate text */
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: 0 4px 14px rgba(183, 236, 227, 0.3);
}

.btn-mint:hover {
  background-color: #a3ded3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(183, 236, 227, 0.55);
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-mint:hover .btn-arrow {
  transform: translateX(4px);
}

.cta-question {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 24px;
  opacity: 0.95;
}

.footer-illustration {
  margin-top: 10px;
  opacity: 0.95;
}

.footer-illustration svg {
  stroke: #ffffff;
}

/* 2. Divisores y Grilla */
.footer-divider {
  border: 0;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.12);
  margin: 40px 0;
}

/* Grilla de Enlaces */
.footer-links-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr) 1.2fr;
  gap: 40px;
  width: 100%;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Columna de Información */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.footer-info-text {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.75;
}

/* Columnas de Navegación */
.footer-col-title {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  transition: color var(--transition-fast);
}

.footer-link:hover {
  color: #B7ECE3; /* Mint hover */
}

.active-link {
  color: #B7ECE3; /* Mint for active */
  font-weight: 600;
}

/* Columna de Eventos */
.footer-events-text {
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.8;
}

.event-btn {
  padding: 12px 20px;
  font-size: 0.9rem;
  align-self: flex-start;
}

/* 3. Sub-footer */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.8;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color var(--transition-fast);
}

.footer-lang-selector:hover {
  background-color: rgba(255, 255, 255, 0.08);
}

.globe-icon, .chevron-icon {
  opacity: 0.8;
}

.footer-bottom-link {
  color: #ffffff;
  transition: color var(--transition-fast);
}

.footer-bottom-link:hover {
  color: #B7ECE3;
}

.footer-copyright {
  font-size: 0.85rem;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-link {
  color: #ffffff;
  opacity: 0.8;
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  display: inline-flex;
}

.social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* --- Adaptación UX Responsiva (Móvil) --- */
@media (max-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .col-info {
    grid-column: span 2;
  }
  
  .col-events {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 80px 20px 40px;
  }
  
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .col-info, .col-events {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 20px;
  }
  
  .footer-bottom-left {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
}


/* ==========================================================================
   ESTILOS DE LA SECCIÓN DE TESTIMONIOS (CLIENTES)
   ========================================================================== */
.testimonials-section {
  padding: 120px 24px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.testimonials-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.testimonials-header {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonials-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 0px;
  letter-spacing: -1px;
}

/* Grilla de Testimonios */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  margin-bottom: 48px;
  align-items: stretch;
}

/* Tarjeta de Testimonio */
.testimonial-card {
  border-radius: 24px;
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
}

/* Tarjetas Mint (1 y 3) */
.card-mint {
  background-color: rgba(183, 236, 227, 0.4); /* Soft mint tint */
  border: 1px solid rgba(183, 236, 227, 0.6);
}

.card-mint:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(183, 236, 227, 0.25);
}

/* Tarjeta White (2 - Destacada) */
.card-white {
  background-color: #ffffff;
  border: 1px solid rgba(29, 70, 180, 0.08);
  box-shadow: 0 15px 40px rgba(29, 70, 180, 0.06);
  transform: translateY(-8px); /* Raised by default */
}

.card-white:hover {
  transform: translateY(-14px);
  box-shadow: 0 20px 48px rgba(29, 70, 180, 0.15);
}

/* Comillas */
.quote-icon {
  font-size: 5rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: #1D46B4; /* Royal Blue quote marks */
  margin-top: -20px;
  margin-bottom: 0px;
  user-select: none;
}

.testimonial-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-main);
  margin-bottom: 30px;
  font-weight: 500;
  flex-grow: 1; /* Stretch text to push author to bottom */
}

.testimonial-divider {
  border: 0;
  height: 1px;
  background-color: rgba(29, 70, 180, 0.12);
  margin-bottom: 24px;
}

/* Información de Autor */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.author-meta {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1D46B4; /* Name in Institutional Blue */
  margin-bottom: 2px;
}

.author-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Paginación Dots */
.testimonials-dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(29, 70, 180, 0.2);
  transition: background-color var(--transition-normal), transform var(--transition-normal);
}

.testimonial-dot.active {
  background-color: #1D46B4;
  transform: scale(1.2);
}

/* --- Adaptación UX Responsiva (Móvil) --- */
@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .card-white {
    transform: none;
    grid-column: span 2;
  }
  
  .card-white:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 80px 20px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .card-white {
    grid-column: span 1;
  }
}


/* ==========================================================================
   ESTILOS DE LA SECCIÓN NUESTROS VALORES
   ========================================================================== */
.values-section {
  padding: 100px 24px;
  background-color: var(--bg-primary);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.values-header {
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.values-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 0px;
  letter-spacing: -1px;
}

.values-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
}

.values-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: var(--text-main);
  font-weight: 600;
}

.value-dot-bullet {
  color: #1D46B4; /* Dot in brand color */
  font-size: 1.4rem;
  line-height: 1;
}

/* --- Adaptación UX Responsiva (Móvil) --- */
@media (max-width: 768px) {
  .values-section {
    padding: 80px 20px;
  }
  
  .values-content {
    gap: 20px;
  }

  .values-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding-left: 20px;
    max-width: 380px;
    margin: 0 auto;
  }
  
  .value-item {
    font-size: 1rem;
    text-align: left;
  }
}


/* ==========================================================================
   ESTILOS DE LA SECCIÓN MEDIOS DE CONTACTO
   ========================================================================== */
.contact-section {
  padding: 120px 24px;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
  overflow: hidden;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.contact-header {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 700px;
}

.contact-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-main);
  margin-bottom: 0px;
  letter-spacing: -1px;
}

.contact-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 24px;
}

/* Grilla de Tarjetas de Contacto */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  align-items: stretch;
}

/* Tarjeta de Contacto */
.contact-card {
  background-color: #ffffff;
  border: 1px solid rgba(29, 70, 180, 0.08);
  border-radius: 24px;
  padding: 48px 36px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: 0 10px 30px rgba(29, 70, 180, 0.04);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(29, 70, 180, 0.1);
}

/* Tarjeta Destacada (Centro) */
.card-highlight {
  background-color: #1D46B4;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(29, 70, 180, 0.25);
  transform: translateY(-6px);
}

.card-highlight:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 45px rgba(29, 70, 180, 0.35);
}

.card-highlight .contact-card-title {
  color: #ffffff;
}

.card-highlight .contact-card-detail {
  color: rgba(255, 255, 255, 0.85);
}

/* Iconos de las Tarjetas */
.contact-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(29, 70, 180, 0.1);
  color: #1D46B4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: transform var(--transition-normal);
}

.contact-card:hover .contact-icon-wrapper {
  transform: scale(1.1);
}

.icon-white {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.contact-svg {
  width: 32px;
  height: 32px;
}

.contact-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 12px;
}

.contact-card-info {
  font-size: 1.1rem;
  font-weight: 700;
  color: #B7ECE3; /* Mint accent */
  margin-bottom: 16px;
}

.card-highlight .contact-card-info {
  color: #B7ECE3;
}

.contact-card-detail {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 28px;
  flex-grow: 1;
}

/* Enlaces de Acción */
.contact-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1D46B4;
  transition: color var(--transition-fast);
}

.contact-action-link svg {
  transition: transform var(--transition-fast);
}

.contact-action-link:hover svg {
  transform: translateX(4px);
}

.contact-action-link:hover {
  color: #0c2b7a;
}

.card-highlight .contact-action-link:hover {
  color: #B7ECE3;
}

/* --- Adaptación UX Responsiva (Móvil) --- */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .card-highlight {
    transform: none;
    grid-column: span 2;
  }
  
  .card-highlight:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 80px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .card-highlight {
    grid-column: span 1;
  }
}



