@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg-dark: #0C0C0D;
    --gold: #D6B885;
    --red-accent: #FF4C4C;
    --green-accent: #26A69A;
    --text-primary: rgba(255, 255, 255, 0.9);
    --text-secondary: rgba(255, 255, 255, 0.7);
    --border-color: rgba(214, 184, 133, 0.15);
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-bg-hover: rgba(255, 255, 255, 0.05);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 2; }

/* HEADER & NAV */
header { position: fixed; top: 0; width: 100%; padding: 1rem 0; background: rgba(12, 12, 13, 0.8); backdrop-filter: blur(20px); z-index: 1000; border-bottom: 1px solid transparent; transition: all 0.3s ease; }
header.scrolled { background: rgba(12, 12, 13, 0.95); border-bottom: 1px solid var(--border-color); }
header nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; }
.logo .trade { color: var(--gold); }
.logo .scope { color: var(--text-primary); }
.logo .x { color: var(--red-accent); text-shadow: 0 0 8px rgba(255, 76, 76, 0.5); }

.header-buttons { display: flex; gap: 1rem; align-items: center; }
.btn { display: inline-block; padding: 0.75rem 1.5rem; border: 2px solid transparent; border-radius: 8px; font-weight: 600; text-decoration: none; cursor: pointer; transition: all 0.3s ease; }
.btn-secondary { background: transparent; border-color: var(--border-color); color: var(--text-secondary); }
.btn-secondary:hover { background: var(--gold); color: var(--bg-dark); border-color: var(--gold); }
.btn-vip-glow { background: var(--gold); color: var(--bg-dark); position: relative; overflow: hidden; box-shadow: 0 0 15px rgba(214, 184, 133, 0.3); animation: pulse-glow 2s infinite ease-in-out; }
@keyframes pulse-glow { 0% { transform: scale(1); } 50% { transform: scale(1.03); } 100% { transform: scale(1); } }

/* === INICIO DE LA MODIFICACIÓN === */
/* Estilos del Menú Hamburguesa */
.mobile-menu-toggle {
    display: none; /* Oculto por defecto en escritorio */
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 2rem;
    cursor: pointer;
    z-index: 1001;
}
.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: fixed;
    top: 0;
    right: -100%; /* Empieza fuera de la pantalla */
    width: 100%;
    height: 100vh;
    background: rgba(12, 12, 13, 0.95);
    backdrop-filter: blur(20px);
    transition: right 0.4s ease-in-out;
    z-index: 1000;
}
.mobile-nav.active {
    right: 0; /* Se muestra al activar */
}
.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.8rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.mobile-nav.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}
.mobile-nav-link.vip {
    background: var(--gold);
    color: var(--bg-dark);
    padding: 0.8rem 2rem;
    border-radius: 12px;
}
/* Transiciones para los enlaces al abrir */
.mobile-nav.active .mobile-nav-link:nth-child(1) { transition-delay: 0.2s; }
.mobile-nav.active .mobile-nav-link:nth-child(2) { transition-delay: 0.3s; }
.mobile-nav.active .mobile-nav-link:nth-child(3) { transition-delay: 0.4s; }
/* === FIN DE LA MODIFICACIÓN === */


/* TICKER */
.price-ticker { position: fixed; top: 80px; width: 100%; background: #000; padding: 0.5rem 0; z-index: 999; overflow: hidden; white-space: nowrap; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.ticker-track { display: inline-block; animation: ticker-scroll 60s linear infinite; }
.ticker-item { display: inline-flex; align-items: center; gap: 0.75rem; margin: 0 1.5rem; font-size: 1rem; font-weight: 600; }
.ticker-item .symbol { color: var(--text-secondary); }
.ticker-item .change.up { color: var(--green-accent); }
.ticker-item .change.down { color: var(--red-accent); }
@keyframes ticker-scroll { from { transform: translateX(0%); } to { transform: translateX(-50%); } }

/* HERO (y resto de estilos se mantienen igual) */
.hero { padding: 12rem 2rem 8rem 2rem; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; background: var(--bg-dark) url('data:image/svg+xml,%3Csvg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23d6b885" fill-opacity="0.03" fill-rule="evenodd"%3E%3Cpath d="M0 40L40 0H20L0 20M40 40V20L20 40"/%3E%3C/g%3E%3C/svg%3E'); }
.hero-content { text-align: center; max-width: 900px; margin: 0 auto 5rem auto; }
.hero-content h1 { font-size: 5rem; font-weight: 800; line-height: 1.1; margin-bottom: 1.5rem; background: linear-gradient(135deg, #FFFFFF 50%, var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-content p { font-size: 1.25rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }
.hero-visuals-container { width: 100%; max-width: 1400px; display: flex; align-items: center; justify-content: center; gap: 4rem; }
.hero-logo-large { flex: 1; display: flex; justify-content: flex-end; align-items: center; padding-right: 2rem; animation: logo-pulse 3s infinite ease-in-out; }
.hero-logo-large img { width: 450px; max-width: 100%; height: auto; }
@keyframes logo-pulse { 0%, 100% { transform: scale(1); opacity: 0.9; } 50% { transform: scale(1.05); opacity: 1; } }
.mockup-wrapper { flex: 1; display: flex; justify-content: flex-start; align-items: center; padding-left: 2rem; }
.professional-carousel { position: relative; max-width: 600px; width: 100%; margin: 0 auto; overflow: hidden; border-radius: 12px; }
.professional-carousel-slide { display: flex; width: 1000%; transition: transform 0.5s ease-in-out; }
.professional-carousel-slide img { width: 10%; flex-shrink: 0; user-select: none; -webkit-user-drag: none; }
.carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(12, 12, 13, 0.7); border: 1px solid var(--border-color); color: var(--text-primary); border-radius: 50%; width: 45px; height: 45px; cursor: pointer; z-index: 10; display: flex; align-items: center; justify-content: center; font-size: 2rem; transition: all 0.3s ease; opacity: 0; }
.professional-carousel:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: var(--gold); color: var(--bg-dark); }
.carousel-arrow.prev { left: 15px; }
.carousel-arrow.next { right: 15px; }
.hero-cta-container { margin-top: 4rem; text-align: center; }
.store-button-wrapper { display: inline-block; text-decoration: none; transition: transform 0.3s ease; position: relative; overflow: hidden; }
.store-button-wrapper img { height: auto; width: 300px; display: block; border-radius: 12px; }
.store-button-wrapper:hover { transform: translateY(-5px) scale(1.05); }
.store-button-wrapper::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient( to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0) 100% ); transform: rotate(30deg); transition: transform 0.8s ease; pointer-events: none; opacity: 0; }
.store-button-wrapper:hover::after { opacity: 1; transform: translateX(50%) rotate(30deg); }
.cta-subtext { margin-top: 1rem; font-size: 1rem; color: var(--text-secondary); }
/* ... (Todo el resto del CSS se mantiene igual) ... */
.section { padding: 8rem 0; position: relative; }
.section-title { text-align: center; margin-bottom: 4rem; }
.section-title h2 { font-size: 2.8rem; font-weight: 700; color: var(--gold); margin-bottom: 1rem; }
.section-title p { font-size: 1.2rem; color: var(--text-secondary); max-width: 700px; margin: 0 auto; }
#markets { overflow: hidden; }
.background-graph { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; opacity: 0.05; }
.background-graph .graph-line { fill: none; stroke-width: 3; stroke-dasharray: 2000; stroke-dashoffset: 2000; animation: draw-line 20s linear infinite; }
@keyframes draw-line { to { stroke-dashoffset: 0; } }
#intelligence { background: var(--card-bg); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2rem; }
.feature-card { background: transparent; border: 1px solid var(--border-color); border-radius: 16px; padding: 2.5rem; transition: all 0.4s ease; backdrop-filter: blur(5px); }
.feature-card:hover { transform: translateY(-10px); background: var(--card-bg-hover); }
.feature-icon { font-size: 2.5rem; margin-bottom: 1.5rem; color: var(--gold); }
.feature-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
#testimonials { background: var(--card-bg); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.testimonial-card { background: rgba(12, 12, 13, 0.5); border: 1px solid var(--border-color); padding: 2rem; border-radius: 16px; display: flex; flex-direction: column; }
.testimonial-content { flex-grow: 1; color: var(--text-secondary); font-style: italic; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; border-top: 1px solid var(--border-color); padding-top: 1.5rem; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background-color: var(--gold); color: var(--bg-dark); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.5rem; }
.author-info h4 { font-weight: 600; }
.author-info span { font-size: 0.9rem; color: var(--gold); }
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.cta-container { text-align: center; }
.cta-container h2 { font-size: 2.8rem; font-weight: 700; margin-bottom: 1rem; }
.cta-container p { font-size: 1.2rem; color: var(--text-secondary); margin-bottom: 3rem; }
footer { padding: 4rem 0 2rem 0; border-top: 1px solid var(--border-color); }
.footer-logo { text-align: center; margin-bottom: 2rem; }
.footer-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 3rem; flex-wrap: wrap; }
.footer-links a { color: var(--text-secondary); text-decoration: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; color: rgba(255, 255, 255, 0.4); font-size: 0.9rem; }

/* === INICIO DE LA MODIFICACIÓN === */
/* RESPONSIVE */
@media (max-width: 992px) {
    .header-buttons {
        display: none; /* Oculta los botones de escritorio */
    }
    .mobile-menu-toggle {
        display: block; /* Muestra el botón de hamburguesa */
    }
    .hero-visuals-container { 
        flex-direction: column-reverse; 
        gap: 4rem; 
    }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.8rem; }
    .hero-logo-large img { width: 200px; }
}
/* === FIN DE LA MODIFICACIÓN === */