/* ===== RAFA COACH — Global Styles ===== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;
    --accent: #c8ff00;
    --accent-dim: #a8d900;
    --accent-glow: rgba(200, 255, 0, 0.15);
    --accent-glow-strong: rgba(200, 255, 0, 0.3);
    --border: rgba(255,255,255,0.06);
    --border-accent: rgba(200, 255, 0, 0.2);
    --radius: 16px;
    --radius-sm: 10px;
    --font-display: 'Oswald', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Noise overlay */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* ===== NAVBAR ===== */
nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(10,10,10,0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}
nav.scrolled { padding: 12px 40px; background: rgba(10,10,10,0.95); }

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.nav-logo-icon {
    width: 40px; height: 40px;
    background: var(--accent);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--bg-primary);
    font-weight: 700;
}
.nav-logo-text {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 1px;
}
.nav-logo-text span { color: var(--accent); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--accent); }

.nav-cta {
    background: var(--accent);
    color: var(--bg-primary) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: all 0.3s !important;
}
.nav-cta:hover { background: var(--accent-dim) !important; transform: scale(1.05); }

/* Mobile menu */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
}
.nav-hamburger span {
    width: 24px; height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background: var(--accent-dim);
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(200,255,0,0.2);
    color: var(--bg-primary);
}
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--text-primary);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ===== SECTIONS ===== */
section { padding: 100px 40px; position: relative; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-label {
    font-size: 13px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 3px;
    color: var(--accent); margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 18px; color: var(--text-secondary);
    line-height: 1.6; max-width: 600px;
}

/* ===== FOOTER ===== */
footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 48px 40px;
}
.footer-content {
    max-width: 1200px; margin: 0 auto;
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 24px;
}
.footer-brand {
    display: flex; align-items: center; gap: 12px;
}
.footer-brand-icon {
    width: 32px; height: 32px;
    background: var(--accent);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 16px; color: var(--bg-primary); font-weight: 700;
}
.footer-brand-text {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 600; letter-spacing: 0.5px;
}
.footer-links {
    display: flex; gap: 32px; list-style: none; flex-wrap: wrap;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none; font-size: 14px;
    transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 13px; color: var(--text-muted); }
.footer-monkey { font-size: 13px; color: var(--text-muted); }
.footer-monkey a { color: var(--accent); text-decoration: none; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 60px; height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(37,211,102,0.4);
    z-index: 999;
    transition: all 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 30px; height: 30px; fill: white; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
    opacity: 0; transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== LEGAL PAGES ===== */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px 80px;
}
.legal-content h1 {
    font-family: var(--font-display);
    font-size: 42px; font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.legal-content .legal-updated {
    color: var(--text-muted);
    font-size: 14px;
    font-style: italic;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.legal-content h2 {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 600;
    text-transform: uppercase;
    margin-top: 48px; margin-bottom: 16px;
    color: var(--text-primary);
}
.legal-content h3 {
    font-size: 17px; font-weight: 600;
    margin-top: 28px; margin-bottom: 12px;
    color: var(--accent);
}
.legal-content p {
    color: var(--text-secondary);
    font-size: 15px; line-height: 1.7;
    margin-bottom: 14px;
    text-align: justify;
}
.legal-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}
.legal-content li {
    color: var(--text-secondary);
    font-size: 15px; line-height: 1.7;
    margin-bottom: 8px;
}
.legal-content li::marker { color: var(--accent); }
.legal-content strong { color: var(--text-primary); }
.legal-content a { color: var(--accent); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-content .legal-note {
    background: rgba(200,255,0,0.05);
    border: 1px solid var(--border-accent);
    border-radius: 12px;
    padding: 20px 24px;
    margin-top: 24px;
    font-size: 14px;
    color: var(--text-secondary);
}
.legal-content .legal-note strong { color: var(--accent); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; gap: 48px; text-align: center; }
    .hero-subtitle { margin: 0 auto 40px; }
    .hero-cta-group { justify-content: center; }
    .hero-stats { justify-content: center; }
    .steps-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .sports-flex { flex-direction: column; }
}

@media (max-width: 768px) {
    nav { padding: 12px 20px; }
    .nav-links { 
        display: none;
        position: fixed;
        top: 70px; left: 0; right: 0;
        background: rgba(10,10,10,0.98);
        flex-direction: column;
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid var(--border);
    }
    .nav-links.active { display: flex; }
    .nav-hamburger { display: flex; }
    section { padding: 60px 20px; }
    .hero { padding: 100px 20px 60px; }
    .phone-mockup { width: 280px; }
    .hero-stats { flex-wrap: wrap; gap: 24px; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-links { justify-content: center; }
    .legal-content { padding: 100px 20px 60px; }
    .legal-content h1 { font-size: 32px; }
}
