@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
/* style.css */

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /* Usamos la tipografía premium escogida */
  overflow-x: hidden;
  background-color: #FAFAFA;
  /* Un color mucho más suave y neutro */
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* Ocultar el scroll por defecto hasta que cargue */
body:not(.loaded) {
  overflow: hidden;
}

#loader-wrapper {
  transition: opacity 0.6s ease-in-out;
}


/* Contenedor Principal Hero */
.hero-container {
  position: relative;
  min-height: 100vh;
  /* Fallback para navegadores antiguos de TV */
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8vw;
  padding-right: 8vw;
  /* Aseguramos margen en ambos lados */
}

/* Efecto de difuminado hacia gallery-section */
.hero-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, #FAFAFA 100%);
  pointer-events: none;
  z-index: 40;
}

/* Capa 1: Fondo generado por IA */
.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 105%;
  background-image: url('./hero_banner\ \(1\).webp');
  background-size: cover;
  background-position: 70% center;
  /* Enfoca al niño a la derecha, deja aire a la izq */
  z-index: 1;
  /* Fondo más al fondo */
  transform-origin: center center;
}

/* Añadimos un velo (overlay) sutil a la imagen para oscurecer el fondo */
.hero-background::before {
  background: linear-gradient(90deg,
      rgba(15, 10, 30, 0.85) 0%,
      rgba(15, 10, 30, 0.4) 50%,
      rgba(15, 10, 30, 0.2) 80%,
      transparent 100%);
  z-index: 2;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Capa 2: Texto Gigante de Fondo (Antigravedad) */
.hero-text-back {
  position: absolute;
  width: 100%;
  max-width: 1800px;
  /* Limitamos el área de los textos decorativos en 4k */
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
}

.giant-text {
  position: absolute;
  font-size: clamp(6rem, 12vw, 18rem);
  /* Reducimos el tamaño máximo para que no sea tan invasivo */
  font-weight: 800;
  color: rgba(255, 255, 255, 0.25);
  /* Bajamos opacidad base por si el blend-mode falla */
  text-transform: uppercase;
  line-height: 0.8;
  mix-blend-mode: overlay;
  opacity: 0;
}

.el-futuro {
  top: 15%;
  left: 8%;
  /* Sale un poco del borde para dinamismo */
}

.se-construye {
  bottom: 10%;
  right: -2%;
}

/* Capa 3: Contenido de Primer Plano (z-index alto) */
.hero-content-front {
  visibility: hidden;
  opacity: 0;
  position: relative;
  z-index: 30;
  /* Por encima de todo */
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 650px;
  /* Limitamos ancho para no tapar la foto */
  padding-top: 5vh;
  /* Ajuste visual vertical */
}


/* Textos */
.brand-text {
  text-align: left;
  pointer-events: auto;
  margin-bottom: 2.5rem;
}

.brand-text .sub-text {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #B496FA;
  /* Morado más oscuro y nítido para resaltar en fondo nocturno/oscuro */
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.brand-text .main-title {
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  /* Refuerza lectura sobre fondo oscuro */
}

.brand-text .slogan {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #F0F0F0;
  font-weight: 500;
  line-height: 1.8;
  max-width: 90%;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
  /* Refuerza lectura */
}

/* Botón de acción limpio y simple */
.cta-button-vibrant {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  pointer-events: auto;
  padding: 1rem 2.5rem;
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  /* Más simple, limpio, line-art */
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 6px;
  /* Borde más arquitectónico y menos infantil */
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  align-self: flex-start;
}

.cta-button-vibrant:hover {
  background: #FFFFFF;
  color: #3B0764;
  /* Morado muy oscuro al iluminarse */
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button-vibrant .arrow {
  transition: transform 0.3s ease;
}

.cta-button-vibrant:hover .arrow {
  transform: translateX(5px);
}

/* Botón de WhatsApp Flotante Global */
.whatsapp-sticky {
  position: fixed;
  /* Cambiado a fixed para que flote sobre toda la web, no solo la sección hero */
  bottom: 30px;
  right: 30px;
  /* Separación de la pared derecha */
  z-index: 1000;
  /* Aseguramos que esté por encima de todos los z-index (como el 999 de la nav o el 99 del hover) */
  width: 60px;
  height: 60px;
  background-color: #25D366;
  /* Verde oficial WhatsApp */
  color: #FFFFFF;
  border-radius: 50%;
  /* Circular */
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.whatsapp-sticky svg {
  width: 35px;
  height: 35px;
}

/* --- Ajustes Ultra-Wide / Smart TV (4K y Monitores grandes) --- */
@media (min-width: 1600px) {
  .hero-container {
    padding-left: 12vw;
    align-items: center;
  }

  .hero-content-front {
    max-width: 850px;
    /* Prevalece el ajuste más específico para TV */
    padding-top: 0;
    /* Centrado vertical real */
  }

  .brand-text .main-title {
    font-size: 6.5rem;
    /* Tamaño sólido en 4k */
  }

  .brand-text .slogan {
    font-size: 1.5rem;
    max-width: 80%;
  }

  .giant-text {
    font-size: 20rem;
    /* Límite para evitar que explote en pantallas gigantes */
  }

  .el-futuro {
    top: 15%;
    left: 5%;
  }

  .se-construye {
    bottom: 15%;
    right: 5%;
  }
}

/* --- MEDIA QUERIES (Mobile) --- */
@media (max-width: 768px) {
  .giant-text {
    font-size: 6rem;
  }

  .hero-container {
    padding: 0 2rem;
    align-items: flex-end;
    min-height: 100vh;
    /* Obliga a la sección a medir al menos la altura de la pantalla */
    position: relative;
    overflow: hidden;
    /* Bajamos el contenido en móvil si la foto queda arriba */
  }

  /* Añadimos un velo suave oscuro en móvil para garantizar lectura total */
  .hero-background::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 10, 30, 0.95), transparent);
    z-index: 2;
  }

  .hero-content-front {
    padding-bottom: 10vh;
  }
}

/* --- Sección: Huellas de Aprendizaje (Galería Interactiva) --- */
.gallery-section {
  position: relative;
  padding: 6rem 2rem;
  background-color: #FAFAFA;
  min-height: 120vh;
  /* Altura generosa para esparcir las fotos */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  z-index: 10;
}

/* Efecto de difuminado hacia la siguiente sección */
.gallery-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, #070707 100%);
  pointer-events: none;
  z-index: 100;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
  z-index: 50;
  position: relative;
}

.section-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  /* Mucho más grande y llamativo */
  color: #2B2B2B;
  margin-bottom: 1rem;
  font-weight: 800;
  letter-spacing: -2px;
  /* Letras un poco más juntas para modernidad */
  position: relative;
  display: inline-block;
}

/* Resalte de la palabra 'Huellas' */
.title-hl {
  background: linear-gradient(90deg, #3E54AC, #8D72E1);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}



.collage-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  flex-grow: 1;
  min-height: 1800px;
  /* Duplicamos la altura para repartir mejor las 8 fotos */
  margin-top: 2rem;
}

/* Tipografía Flotante */
.floating-text {
  position: absolute;
  font-family: 'Quicksand', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 10vw, 8rem);
  /* Más grande para que funcione como textura */
  color: rgba(62, 84, 172, 0.05);
  /* Muy sutil, casi transparente */
  pointer-events: none;
  transform: rotate(var(--r));
  z-index: 1;
  /* Al fondo del collage */
  text-transform: uppercase;
  letter-spacing: 15px;
  /* Más espaciado para estilo premium */
  white-space: nowrap;
}

/* Items del Collage (Posicionamiento estático para la estructura, dinámico vía inline styles) */
.collage-item {
  position: absolute;
  width: 320px;
  /* Un poco más grandes para que se aprecien mejor */
  z-index: 10;
  cursor: pointer;
}

.collage-item.center-item {
  width: 380px;
  /* Algunas imágenes más grandes como focos principales */
  z-index: 15;
}

/* Hover Interactivity: Eleva el z-index de la capa padre */
.collage-item:hover {
  z-index: 99 !important;
}

/* La rotación original (--r) se la aplicamos a la foto física. Cuando haya hover, se endereza y escala */
.collage-item:hover .torn-paper {
  transform: scale(1.15) rotate(0deg);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.3);
}

/* Estética de Recorte de Periódico / Papel Rasgado */
.torn-paper {
  background-color: #FFFFFF;
  padding: 12px 12px 35px 12px;
  /* Aumentamos el margen inferior para el look Polaroid */
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);

  /* Movemos la transición y rotación a este elemento para que GSAP pueda animar libremente el parent .collage-item */
  transform: rotate(var(--r));
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s ease;

  /* Distorsión orgánica sutil visual con border-radius irregular para un efecto "torn/cortado a mano" */
  border-radius: 2px 255px 3px 25px / 255px 5px 225px 3px;

  /* Textura de grano SVG ultra sutil embebida (Paper grain) */
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.06'/%3E%3C/svg%3E");
}

.torn-paper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4/3;
  background-color: #FFFFFF;
  /* Evita que el transparente muestre la textura sucia del parent */
  filter: sepia(0.05) contrast(1.05);
  /* Ligeramente cálido analógico */
  display: block;

  /* La imagen por dentro también sufre la ligera distorsión del recorte */
  border-radius: 2px 10px 2px 10px / 10px 2px 10px 2px;
}

/* --- Responsive para Collage (Vertical Orgánico) --- */
@media (max-width: 768px) {
  .gallery-section {
    min-height: auto;
    padding: 4rem 1rem;
  }

  .collage-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
    min-height: auto;
  }

  .collage-item {
    position: relative !important;
    /* Pasamos de Absolute a Relative (Flow document) */
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 85%;
    max-width: 400px;
  }

  .collage-item.center-item {
    width: 90%;
  }

  .floating-text {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    margin: 1.5rem 0;
    text-align: center;
    display: none !important;
  }

  .premium-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin: 0;
    color: #FFFFFF;
    display: none;
  }

  .premium-subtitle {
    display: none !important;
  }

  .premium-header {
    display: none;
  }

  .premium-card {
    margin-top: -7.75rem;
  }


  /* Evitamos que el texto gigante choque con el borde superior y el contenido */
  .giant-text {
    font-size: clamp(5rem, 12vw, 8rem);
    /* Reducimos el tamaño para que no sea invasivo */
    opacity: 0.15 !important;
    /* Bajamos la opacidad para priorizar el mensaje central */
    mix-blend-mode: overlay;
    /* Mantiene el look premium pero más sutil */
  }

  .el-futuro {
    top: 8%;
    /* Lo bajamos un poco para que no lo corte el notch o el navegador */
    left: 9%;
  }

  .se-construye {
    bottom: 71%;
    /* Lo subimos para que no se pierda detrás del gradiente inferior */
    right: -30%;
  }

  /* Refuerza el contraste del texto principal sobre el fondo */
  .brand-text .main-title {
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    /* Asegura que "Forma Tu Futuro" destaque */
  }
}

/* --- Sección Premium Dark (Características del Producto) --- */
.premium-features-section {
  background-color: #070707;
  /* Fondo súper oscuro, casi negro */
  color: #FFFFFF;
  padding: 8rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 10;
}

/* Efecto de difuminado hacia la siguiente sección */
.premium-features-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, #0F0A1E 100%);
  pointer-events: none;
  z-index: 20;
}

.premium-header {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  gap: 2rem;
}

.premium-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  color: #FFFFFF;
}

.premium-subtitle {
  font-size: 1rem;
  color: #A0A0A0;
  /* Gris sutil param mantener el estilo Dark Tech */
  text-align: right;
  max-width: 400px;
  line-height: 1.6;
  margin: 0;
}

.premium-card {
  background-color: #121212;
  /* Tarjeta oscura pero un poco más clara que el fondo */
  border-radius: 20px;
  width: 100%;
  max-width: 1200px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.05);
  /* Ligerísimo borde para separación volumetrica */
}

.premium-specs {
  flex: 1;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  /* Línea divisoria muy sutil tecnológica */
  font-size: 0.95rem;
}

.spec-row:last-of-type {
  border-bottom: none;
  margin-bottom: 2rem;
}

.spec-label {
  color: #EEEEEE;
  font-weight: 700;
  flex: 1;
}

.spec-value {
  color: #A0A0A0;
  text-align: right;
  width: 60%;
  font-weight: 500;
  flex: 1.5;
}

.premium-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #050505;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 15px 30px;
  border-radius: 8px;
  /* Redondeo conservador moderno */
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  /* Borde blanco sutil */
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.premium-btn:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.premium-btn:hover .cart-icon {
  stroke: #000000;
}

.cart-icon {
  width: 18px;
  height: 18px;
  stroke: #FFFFFF;
  transition: all 0.3s ease;
}

.premium-image-wrapper {
  flex: 1.2;
  position: relative;
  /* Un gradiente radial en la zona de la imagen para emular el spotlight de estudio de fondo */
  background: radial-gradient(circle at center, #222222 0%, #0d0d0d 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  overflow: hidden;
}

.premium-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.8));
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);

}

.premium-card:hover .premium-img {
  transform: scale(1.05) rotate(2deg);
  mix-blend-mode: normal;
  opacity: 1;
}



/* --- Sección: Ubicación con Fondo de Video --- */
.location-section {
  position: relative;
  width: 100vw;
  min-height: 90vh;
  /* Ocupa casi toda la pantalla */
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 6rem 2rem;
  z-index: 10;
}

/* Efecto de difuminado hacia el footer/siguiente sección */
.location-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(to bottom, transparent 0%, #070707 100%);
  pointer-events: none;
  z-index: 20;
}

/* El Video Ocupa Todo el Fondo */
.location-video-bg {
  background-color: #000000;
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  /* Fondo absoluto */
  transform: translateX(-50%) translateY(-50%);
  /* Centrado perfecto de video HD */
  object-fit: cover;
}

/* Capa Oscura sobre el video para garantizar lectura perfecta de los textos */
.location-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 10, 30, 0.85) 0%, rgba(15, 10, 30, 0.5) 100%);
  z-index: 2;
}

/* Contenedor relativo para poner el contenido por encima del video y la pantalla oscura */
.location-container {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  /* Para que colapse en movil */
  gap: 4rem;
  align-items: stretch;
}

.location-header {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #FFFFFF;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.location-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

/* Tarjeta Pequeña / Estilo Glassmorphism Premium */
.location-cards-wrapper {
  flex: 1;
  min-width: 300px;
  display: flex;
  align-items: center;
}

.location-card {
  background: rgba(255, 255, 255, 0.1);
  /* Efecto Glass */
  backdrop-filter: blur(15px);
  /* Desenfoque tipo vidrio macOS */
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 3rem;
  width: 100%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.card-title {
  color: #FFFFFF;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
}

.location-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.location-details li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #FFFFFF;
}

.detail-icon {
  min-width: 24px;
  height: 24px;
  color: #8D72E1;
  /* Resaltamos los iconos en Violeta corporativo */
  margin-top: 3px;
}

.location-details strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  font-family: 'Quicksand', sans-serif;
  color: #FFFFFF;
}

.location-details span {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  font-family: 'Quicksand', sans-serif;
}

/* Botón flotante para Maps */
.maps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 3rem;
  background-color: #FFFFFF;
  color: #3E54AC;
  /* Texto morado */
  font-weight: 800;
  padding: 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.maps-btn:hover {
  background-color: #3E54AC;
  color: #FFFFFF;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.maps-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s;
}

.maps-btn:hover svg {
  transform: translateX(5px);
}

/* --- Sección: Inversión en Futuro (CTA Transaccional) --- */
.investment-section {
  position: relative;
  padding: 10rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  z-index: 10;
}

/* El fondo suave de IA con las manos y el cilindro */
.investment-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('investment_bg.png');
  /* Usando la foto generada */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* Parallax sutil CSS */
  z-index: 1;
}

/* Contenido Principal sobre el fondo */
.investment-content {
  position: relative;
  z-index: 5;
  max-width: 800px;
  background-color: rgba(255, 255, 255, 0.45);
  /* Soporte extra de legibilidad */
  backdrop-filter: blur(10px);
  /* Toke Glassmorphism premium ligero */
  padding: 4rem;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.investment-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #2B2B2B;
  margin-bottom: 1.5rem;
  font-weight: 800;
}

.investment-subtitle {
  font-size: 1.15rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 3rem;
  font-weight: 500;
}

/* Botón de Seguridad Transaccional (No agresivo, otorga paz mental) */
.secure-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #3E54AC;
  /* Morado marca principal */
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 18px 45px;
  border-radius: 4px;
  /* Ligeramente redondeado (2 a 4px como pediste para la solidez formal) */
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(62, 84, 172, 0.3);
}

.secure-cta-button:hover {
  background-color: #2c3e85;
  /* Morado un poco más oscuro */
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(62, 84, 172, 0.4);
}

.lock-icon {
  width: 22px;
  height: 22px;
}



/* --- Footer --- */
.site-footer {
  background-color: #070707;
  /* Mantenemos el negro puro elegante de la seccion features */
  color: #FFFFFF;
  padding: 6rem 2rem 2rem 2rem;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  /* Separador sutil */
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  font-family: "Archivo Black", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  letter-spacing: -1px;
}

.footer-desc {
  color: #A0A0A0;
  /* Gris sutil */
  line-height: 1.7;
  max-width: 350px;
  font-size: 0.95rem;
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  letter-spacing: 0.5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-links a {
  color: #A0A0A0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #8D72E1;
  /* Violeta al hacer hover */
}

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

.social-icon {
  width: 24px;
  height: 24px;
  color: #A0A0A0;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.social-icon:hover {
  color: #8D72E1;
  transform: translateY(-4px);
  /* Pequeño brinco */
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  /* Línea súper fina */
  text-align: center;
  color: #555555;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .footer-desc {
    margin: 0 auto;
  }

  .social-icons {
    justify-content: center;
  }
}