:root {
    --gold: #D4AF37;
    --slate: #2F3E46;
    --dark: #121212;
    --white: #FFFFFF;
    --grey: #E0E0E0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background-color: var(--dark); color: var(--white); line-height: 1.6; }

.container { max-width: 1100px; margin: auto; padding: 0 20px; }
.section-title { font-size: 2.5rem; color: var(--gold); margin-bottom: 30px; text-align: center; text-transform: uppercase; }

/* Navigation 
nav { display: flex; justify-content: space-between; align-items: center; padding: 20px 5%; background: rgba(0,0,0,0.9); position: fixed; width: 100%; z-index: 100; }
.logo { font-weight: bold; color: var(--gold); font-size: 1.2rem; letter-spacing: 2px; }
.nav-links a { color: white; text-decoration: none; margin-left: 20px; font-size: 0.9rem; transition: 0.3s; }
.nav-links a:hover { color: var(--gold); }
*/

/* FIX DEL LOGO Y NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(18, 18, 18, 0.98);
    border-bottom: 1px solid var(--gold);
    display: flex;
    align-items: center;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Refinamiento del Logo */
.nav-logo {
    height: 50px;       /* Altura ideal para Desktop */
    width: auto;        /* Mantiene la proporción original */
    display: block;
    transition: transform 0.3s ease; /* Efecto suave al pasar el mouse */
}

.nav-logo:hover {
    transform: scale(1.05); /* Pequeño aumento interactivo */
}

/* Ajuste de logo para pantallas pequeñas */
@media (max-width: 768px) {
    .nav-logo {
        height: 45px;   /* Un poco más pequeño en móvil para ahorrar espacio vertical */
    }
    
    .navbar {
        height: 70px;   /* Reducimos ligeramente la altura de la barra en móvil */
    }
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: bold;
}

.hero { 
  height: 100vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center; 
  padding: 0 20px;
  
  /* Configuración de la imagen */
  background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/guayana-02.webp');
  background-size: cover; 
  background-position: center;
  background-repeat: no-repeat; 
}

.hero h1 { 
  font-size: 3.5rem; 
  margin-bottom: 20px; 
  max-width: 900px; 
}

.hero p { 
  font-size: 1.2rem; 
  margin-bottom: 30px; 
  color: var(--grey); 
}

/* Buttons */
.btn-gold, .btn-primary { background: var(--gold); color: black; padding: 12px 25px; border-radius: 4px; text-decoration: none; font-weight: bold; cursor: pointer; border: none; }
.btn-secondary { border: 2px solid var(--gold); color: var(--gold); padding: 10px 25px; text-decoration: none; font-weight: bold; margin-left: 10px; border-radius: 4px; }


/* --- NUEVA SECCIÓN: WHY INVEST (VERSION CORREGIDA Y PULIDA) --- */

.light-section-invest {
    padding: 100px 0;
    background-color: #fcfcfc; /* Blanco sofisticado e institucional */
    color: #121212;
    font-family: 'Inter', sans-serif; /* Asegurando la tipografía correcta */
}

.container-invest {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title-premium-invest {
    font-size: 3rem;
    color: #D4AF37; /* Dorado de la paleta original */
    text-align: center;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.section-subtitle-premium-invest {
    text-align: center;
    color: #666;
    margin: 0 auto 70px;
    font-size: 1.3rem;
    font-weight: 300;
    max-width: 800px;
}

.features-grid-premium-invest {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Diseño de Tarjeta Institucional - CORREGIDO */
.feature-card-ultra-invest {
    background: #ffffff;
    padding: 60px 40px;
    border-radius: 4px;
    position: relative;
    border: 1px solid #eaeaea;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    overflow: hidden; /* Importante para el acento superior */
    display: flex;
    flex-direction: column;
}

.feature-card-ultra-invest:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.12); /* Sombra dorada suave */
    border-color: #D4AF37;
}

/* Barra de acento superior */
.card-accent-invest {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #eee;
    transition: background 0.3s;
}

.feature-card-ultra-invest:hover .card-accent-invest {
    background: #D4AF37;
}

.gold-bg-invest { background: #D4AF37 !important; }

/* Título de Tarjeta - REFINADO */
.card-header-main-invest {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #111;
    letter-spacing: 1px;
}

/* Tags de Oportunidad - MEJORADOS */
.opportunity-tag-invest {
    display: inline-block;
    padding: 4px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 25px;
    letter-spacing: 1px;
    align-self: flex-start; /* Se ajusta a su contenido */
}

.gray-tag-invest { background: #f2f2f2; color: #777; }
.gold-tag-invest { background: rgba(212, 175, 55, 0.1); color: #B8860B; }

/* Números Gigantes de Impacto - CORREGIDOS Y REFINADOS */
.stat-hero-invest, .stat-hero-gold-invest {
    font-size: 3.2rem; /* Tamaño ligeramente reducido para evitar desbordes */
    font-weight: 900;
    line-height: 1;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    word-wrap: break-word; /* Solución para palabras largas como "Immediate" */
    word-break: break-word; /* Compatibilidad adicional */
}

.stat-hero-invest { color: #1a1a1a; }
.stat-hero-gold-invest { color: #B8860B; } /* Dorado oscuro para legibilidad */

.stat-hero-invest .unit-invest, .stat-hero-gold-invest .unit-invest {
    font-size: 1.1rem;
    font-weight: 400;
    margin-left: 3px;
    letter-spacing: 0;
}

.stat-hero-invest .small-text-invest { font-size: 1.8rem; letter-spacing: -0.5px; }

/* Descripción - REFINADA */
.card-description-invest {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
    margin-top: auto; /* Empuja la descripción al fondo si hay espacio */
}

/* Tarjeta Resaltada (Capital Velocity) */
.highlighted-card-invest {
    border: 2px solid #D4AF37;
    background: linear-gradient(180deg, #ffffff 0%, #fffef0 100%);
}


/* Contenedor Principal (El Mapa) - Sin cambios */
.map-section {
  height: 600px;
  width: 90%; 
  position: relative;
  display: flex;
  align-items: flex-start; 
  justify-content: flex-end; /* Alinea el contenido a la derecha */
  background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%), 
              url('images/Omai_South.webp') center/cover no-repeat;			  
  overflow: hidden;
}

/* El Recuadro de Texto (Overlay) - AJUSTADO */
.map-overlay {
  position: absolute;
  top: 20px;           /* Mantenemos la distancia arriba */
  right: 5%;          /* CAMBIO: Fijado a la derecha */
  left: auto;         /* CAMBIO: Desactivamos la fijación izquierda */
  
  max-width: 400px;   /* Un ancho ligeramente más contenido */
  
  /* Estética - Sin cambios significativos */
  background: rgba(255, 215, 0, 0.15); 
  backdrop-filter: blur(10px);        
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  
  /* CAMBIO DE BORDE: Ahora el acento dorado va a la derecha */
  border-right: 4px solid #FFD700; 
  border-left: none; /* Quitamos el borde izquierdo anterior */
  
  box-shadow: -10px 15px 35px rgba(0,0,0,0.4); /* Sombra ajustada */
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  z-index: 10;
  text-align: right; /* Opcional: alinea el texto a la derecha */
}

/* Estilo del Título - Ajustado para la derecha */
.map-overlay h2 {
  color: #FFD700;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  letter-spacing: 1px;
  display: block; /* Asegura que ocupe su línea */
}

/* Estilo de los Párrafos - Sin cambios */
.map-overlay p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.9);
}

/* Clase para resaltar datos clave - Sin cambios */
.highlight {
  color: #FFD700;
  font-weight: bold;
}


.validation-section {
  padding: 80px 10%;
  background-color: #ffffff;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  color: #333;
}

/* Título con más autoridad */
.validation-section h2 {
  color: #B8860B; /* Un dorado más profundo para fondo blanco */
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
  position: relative;
}

/* Línea decorativa bajo el título */
.validation-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #B8860B;
  margin: 15px auto 0;
}

/* Párrafo introductorio */
.intro-text {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: #555;
}

/* Contenedor de la lista técnica */
.tech-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* Dos columnas para que no se vea estirado */
  gap: 20px;
}

.tech-item {
  background: #f9f9f9;
  padding: 20px;
  border-left: 5px solid #B8860B;
  transition: transform 0.3s ease;
}

.tech-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.tech-item strong {
  color: #B8860B;
  display: block;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

/* El bloque de validación de SGS */
.validation-footer {
  margin-top: 50px;
  text-align: center;
  font-style: italic;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.sgs-logo-text {
  font-weight: bold;
  color: #E21F26; /* Color corporativo de SGS */
}


/* Contenedor Principal de la Sección */
.economics-section {
  padding: 80px 5%;
  background-color: #121212; /* Fondo oscuro elegante */
  color: #ffffff;
  font-family: 'Inter', 'Segoe UI', sans-serif; /* Tipografía limpia y moderna */
  text-align: center;
}

/* Cabecera de la Sección */
.economics-header h2 {
  color: #FFD700; /* Oro brillante */
  font-size: 38px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.economics-header p {
  color: #aaa;
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 50px;
}

/* Contenedor de las Tarjetas (Grid) */
.scenarios-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Estilo Base de cada Tarjeta */
.scenario-card {
  background: linear-gradient(145deg, #1e1e1e, #121212);
  border: 1px solid #333;
  padding: 40px 20px;
  border-radius: 15px;
  transition: all 0.4s ease; /* Animación suave al pasar el mouse */
  position: relative;
  overflow: hidden;
}

/* Efecto al pasar el mouse */
.scenario-card:hover {
  border-color: #FFD700;
  transform: translateY(-10px); /* La tarjeta se eleva */
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}

/* Título de cada Escenario */
.scenario-card h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  padding: 5px 15px;
  display: inline-block;
  background: rgba(255, 215, 0, 0.1); /* Fondo dorado sutil */
  border-radius: 5px;
}

/* Grupos de Datos (Inversión, Producción, NPV) */
.stat-group {
  margin-bottom: 20px;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
}

/* Resaltado Especial para el NPV */
.stat-value.npv {
  color: #FFD700; /* El número más importante en oro */
  font-size: 34px;
  font-weight: 900;
  text-shadow: 0 0 15px rgba(255, 215, 0, 0.2); /* Brillo sutil */
}

/* Estilos para el Gráfico de Barras ROI */
.roi-bar-container {
  background: rgba(255, 255, 255, 0.05);
  height: 8px;
  border-radius: 10px;
  margin: 15px 0 30px 0;
  position: relative;
  overflow: hidden;
}

/* El relleno dorado de la barra */
.roi-bar-fill {
  background: linear-gradient(90deg, #B8860B, #FFD700);
  height: 100%;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Tarjeta Resaltada (El potencial final) */
.scenario-card.primary {
  border: 1px solid rgba(255, 215, 0, 0.4);
  background: linear-gradient(145deg, #252525, #121212);
}

.roadmap-section {
  padding: 80px 5%;
  background-color: #ffffff; /* Fondo blanco para limpieza, o #121212 para consistencia */
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.roadmap-title {
  color: #B8860B;
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 60px;
  text-transform: uppercase;
}

.roadmap-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* Línea conectora de fondo */
.roadmap-container::before {
  content: '';
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e0e0e0;
  z-index: 1;
}

.roadmap-step {
  flex: 1;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

/* El círculo del nodo temporal */
.step-node {
  width: 30px;
  height: 30px;
  background: #fff;
  border: 4px solid #FFD700;
  border-radius: 50%;
  margin: 30px auto 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
}

.roadmap-step:hover .step-node {
  background: #FFD700;
  transform: scale(1.2);
}

.step-date {
  display: block;
  color: #B8860B;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.step-content {
  background: #fdfdfd;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  min-height: 150px;
}

.step-content h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  color: #333;
}

.step-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.step-budget {
  display: inline-block;
  margin-top: 15px;
  font-weight: 700;
  color: #B8860B;
  font-size: 13px;
  background: rgba(255, 215, 0, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
}

/* Estado inicial: Oculto y un poco más abajo */
.roadmap-step {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

/* Estado activo: Se activa cuando el usuario llega con el scroll */
.roadmap-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Retraso progresivo para que aparezcan uno tras otro (efecto cascada) */
.roadmap-step:nth-child(1) { transition-delay: 0.2s; }
.roadmap-step:nth-child(2) { transition-delay: 0.5s; }
.roadmap-step:nth-child(3) { transition-delay: 0.8s; }

/* Ajuste sutil al conector para que también aparezca suavemente */
.roadmap-container::before {
  width: 0;
  transition: width 1.5s ease-in-out;
}

.roadmap-container.is-visible::before {
  width: 80%; /* Ajustar según el diseño */
}


/* --- ESTILOS SECCIÓN CONTACTO Y DATA ROOM (UNIFICADA) --- */
/* --- ESTILOS SECCIÓN CONTACTO SIMPLIFICADA --- */

.unified-contact-section {
    padding: 100px 0;
    background-color: #121212; 
    color: #ffffff;
    border-top: 1px solid #222;
}

.container-contact {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    align-items: center;
}

/* Columna Izquierda */
.contact-title { color: #D4AF37; font-size: 2.8rem; text-transform: uppercase; font-weight: 800; margin-bottom: 20px; }
.team-badge { display: inline-block; background: rgba(212, 175, 55, 0.1); color: #D4AF37; padding: 6px 15px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 20px; }
.company-name { font-size: 1.6rem; font-weight: 700; }
.status-text { color: #888; margin-bottom: 30px; }

.contact-details p { font-size: 1.1rem; margin-bottom: 10px; color: #ccc; }
.contact-details a { color: #D4AF37; text-decoration: none; font-weight: bold; }
.contact-details a:hover { text-decoration: underline; }

/* Tarjeta de Información Data Room */
.dataroom-info-card {
    background: #1e1e1e;
    padding: 50px;
    border-radius: 4px;
    position: relative;
    border: 1px solid #333;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}

.card-accent-gold {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 5px;
    background: #D4AF37;
}

.dataroom-info-card h3 { font-size: 1.6rem; margin-bottom: 25px; color: #fff; }

.info-body .main-msg {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #eee;
    margin-bottom: 20px;
}

.info-body .market-msg {
    font-size: 1rem;
    color: #999;
    border-top: 1px solid #333;
    padding-top: 20px;
    margin-bottom: 35px;
}

.gold-price-extreme { color: #D4AF37; font-weight: bold; }

/* Botón de Correo Directo */
.btn-direct-contact {
    display: block;
    text-align: center;
    background: #D4AF37;
    color: #000;
    padding: 18px;
    text-decoration: none;
    font-weight: 800;
    text-transform: uppercase;
    transition: 0.3s ease;
    border-radius: 2px;
}

.btn-direct-contact:hover {
    background: #f1c40f;
    transform: translateY(-3px);
}

.form-note {
    text-align: center;
    font-size: 0.7rem;
    color: #555;
    margin-top: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer { text-align: center; padding: 50px; font-size: 0.8rem; color: #666; }

/* ============================================================
   RESPONSIVE DESIGN (Media Queries)
   ============================================================ */

/* TABLETAS Y PANTALLAS PEQUEÑAS (Laptops) */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.8rem; }
    
    .roadmap-container {
        gap: 20px;
        padding: 0 10px;
    }
}

/* TABLETAS (Vertical) Y MÓVILES GRANDES */
@media (max-width: 768px) {
    /* Ajustes de Tipografía General */
    .section-title-premium-invest { font-size: 2.2rem; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }

    /* Navbar: Ajuste para que el logo no se vea diminuto */
    .nav-container { justify-content: center; flex-direction: column; height: auto; padding: 10px; }
    .navbar { height: auto; position: relative; } /* En móvil es mejor que no sea fixed para ganar espacio */
    .nav-links { margin-top: 10px; display: flex; flex-wrap: wrap; justify-content: center; }
    .nav-links a { margin: 5px 10px; font-size: 0.8rem; }

    /* Sección Why Invest: Forzar una sola columna */
    .features-grid-premium-invest {
        grid-template-columns: 1fr;
    }

    /* Sección Geología (Mapa) */
    .map-section {
        height: auto;
        padding: 60px 20px;
        justify-content: center;
    }
    .map-overlay {
        position: relative;
        right: 0;
        top: 0;
        max-width: 100%;
        text-align: center;
        border-right: none;
        border-bottom: 4px solid #FFD700;
    }

    /* Validación Técnica: Pasar de 2 columnas a 1 */
    .tech-list {
        grid-template-columns: 1fr;
    }

    /* Roadmap: Transformación de Horizontal a Vertical */
    .roadmap-container {
        flex-direction: column;
        align-items: center;
    }
    .roadmap-container::before {
        display: none; /* Quitamos la línea horizontal */
    }
    .roadmap-step {
        width: 100%;
        margin-bottom: 40px;
    }
    .step-content {
        min-height: auto;
    }

    /* Contacto */
    .contact-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .opportunity-tag-invest {
        align-self: center; /* Centrar etiquetas en móvil */
    }
}

/* MÓVILES PEQUEÑOS */
@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .stat-hero-invest, .stat-hero-gold-invest { font-size: 2.5rem; }
    .economics-header h2 { font-size: 24px; }
    .scenario-card { padding: 25px 15px; }
    .btn-primary, .btn-secondary { display: block; width: 100%; margin: 10px 0; }
}

/* ============================================================
   REGLAS DE RESPONSIVIDAD Y MEJORAS DE UX
   ============================================================ */

/* 1. Correcciones de Layout Base */
img { max-width: 100%; height: auto; } /* Evita que imágenes rompan el layout */

/* 2. Menú Hamburguesa (Oculto por defecto en PC) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 10px;
    transition: all 0.3s linear;
}

/* 3. Media Query para Tablets y Celulares */
@media (max-width: 992px) {
    /* Navbar móvil */
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        right: -100%; /* Oculto a la derecha */
        top: 80px;
        flex-direction: column;
        background: rgba(18, 18, 18, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.3);
        padding: 40px 0;
        border-bottom: 2px solid var(--gold);
    }

    .nav-links.active { right: 0; } /* Clase que activaremos con JS */
    .nav-links a { margin: 15px 0; font-size: 1.2rem; }

    /* Hero */
    .hero h1 { font-size: 2.2rem; padding: 0 10px; }
    
    /* Grids: De 3 columnas a 1 o 2 según espacio */
    .features-grid-premium-invest, 
    .scenarios-container, 
    .tech-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    /* Roadmap: Transformación a Vertical */
    .roadmap-container {
        flex-direction: column;
        padding-left: 20px;
    }
    .roadmap-container::before {
        left: 35px;
        top: 0;
        width: 2px;
        height: 100%;
    }
    .roadmap-step {
        width: 100%;
        display: flex;
        text-align: left;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    .step-node { margin: 10px 20px 0 0; }
}

/* ============================================================
   REGLAS DE RESPONSIVIDAD Y MEJORAS DE UX
   ============================================================ */

/* 1. Correcciones de Layout Base */
img { max-width: 100%; height: auto; } /* Evita que imágenes rompan el layout */

/* 2. Menú Hamburguesa (Oculto por defecto en PC) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 10px;
    transition: all 0.3s linear;
}

/* 3. Media Query para Tablets y Celulares */
@media (max-width: 992px) {
    /* Navbar móvil */
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        right: -100%; /* Oculto a la derecha */
        top: 80px;
        flex-direction: column;
        background: rgba(18, 18, 18, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.3);
        padding: 40px 0;
        border-bottom: 2px solid var(--gold);
    }

    .nav-links.active { right: 0; } /* Clase que activaremos con JS */
    .nav-links a { margin: 15px 0; font-size: 1.2rem; }

    /* Hero */
    .hero h1 { font-size: 2.2rem; padding: 0 10px; }
    
    /* Grids: De 3 columnas a 1 o 2 según espacio */
    .features-grid-premium-invest, 
    .scenarios-container, 
    .tech-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    /* Roadmap: Transformación a Vertical */
    .roadmap-container {
        flex-direction: column;
        padding-left: 20px;
    }
    .roadmap-container::before {
        left: 35px;
        top: 0;
        width: 2px;
        height: 100%;
    }
    .roadmap-step {
        width: 100%;
        display: flex;
        text-align: left;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    .step-node { margin: 10px 20px 0 0; }
}

/* 4. Ajustes finos para Celulares (iPhone/Android) */
@media (max-width: 600px) {
    .section-title-premium-invest { font-size: 2rem; }
    .stat-hero-invest, .stat-hero-gold-invest { font-size: 2.2rem; }
    
    /* Mapa: Overlay ocupa todo el ancho */
    .map-section { height: auto; padding: 40px 0; }
    .map-overlay {
        position: relative;
        right: 0;
        width: 95%;
        margin: 0 auto;
        text-align: center;
        border-right: none;
        border-bottom: 4px solid #FFD700;
    }

    .contact-grid { grid-template-columns: 1fr; }
    .dataroom-info-card { padding: 30px 20px; }
}

/* ============================================================
   REGLAS DE RESPONSIVIDAD Y MEJORAS DE UX
   ============================================================ */

/* 1. Correcciones de Layout Base */
img { max-width: 100%; height: auto; } /* Evita que imágenes rompan el layout */

/* 2. Menú Hamburguesa (Oculto por defecto en PC) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 10px;
    transition: all 0.3s linear;
}

/* 3. Media Query para Tablets y Celulares */
@media (max-width: 992px) {
    /* Navbar móvil */
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        right: -100%; /* Oculto a la derecha */
        top: 80px;
        flex-direction: column;
        background: rgba(18, 18, 18, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.3);
        padding: 40px 0;
        border-bottom: 2px solid var(--gold);
    }

    .nav-links.active { right: 0; } /* Clase que activaremos con JS */
    .nav-links a { margin: 15px 0; font-size: 1.2rem; }

    /* Hero */
    .hero h1 { font-size: 2.2rem; padding: 0 10px; }
    
    /* Grids: De 3 columnas a 1 o 2 según espacio */
    .features-grid-premium-invest, 
    .scenarios-container, 
    .tech-list {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    /* Roadmap: Transformación a Vertical */
    .roadmap-container {
        flex-direction: column;
        padding-left: 20px;
    }
    .roadmap-container::before {
        left: 35px;
        top: 0;
        width: 2px;
        height: 100%;
    }
    .roadmap-step {
        width: 100%;
        display: flex;
        text-align: left;
        align-items: flex-start;
        margin-bottom: 30px;
    }
    .step-node { margin: 10px 20px 0 0; }
}

/* 4. Ajustes finos para Celulares (iPhone/Android) */
@media (max-width: 600px) {
    .section-title-premium-invest { font-size: 2rem; }
    .stat-hero-invest, .stat-hero-gold-invest { font-size: 2.2rem; }
    
    /* Mapa: Overlay ocupa todo el ancho */
    .map-section { height: auto; padding: 40px 0; }
    .map-overlay {
        position: relative;
        right: 0;
        width: 95%;
        margin: 0 auto;
        text-align: center;
        border-right: none;
        border-bottom: 4px solid #FFD700;
    }

    .contact-grid { grid-template-columns: 1fr; }
    .dataroom-info-card { padding: 30px 20px; }
}

