/* ============================================
   SHAW DESIGNER — Design System v2.0
   Design Esportivo Profissional
   ============================================ */

/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&family=Montserrat:ital,wght@0,500;0,600;0,700;0,800;0,900;1,700;1,800&display=swap');

/* ===== RESET ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ===== VARIABLES ===== */
:root {
    --bg: #0a0a0a;
    --bg-alt: #0d1117;
    --bg-card: #0f1318;
    --bg-card-hover: #141a22;
    --bg-elevated: #161c24;

    --neon: #00FF87;
    --neon-dim: rgba(0, 255, 135, 0.15);
    --neon-glow: rgba(0, 255, 135, 0.4);
    --blue: #00D4FF;
    --blue-dim: rgba(0, 212, 255, 0.15);
    --blue-glow: rgba(0, 212, 255, 0.4);
    --gold: #FFD700;
    --gold-dim: rgba(255, 215, 0, 0.12);

    --white: #FAFAFA;
    --gray-100: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray: #9CA3AF;
    --gray-dark: #6B7280;
    --gray-800: #1F2937;
    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(0, 255, 135, 0.25);

    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-neon: 0 4px 24px rgba(0, 255, 135, 0.2);
    --shadow-blue: 0 4px 24px rgba(0, 212, 255, 0.2);

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.3s var(--ease);
    --transition-slow: 0.5s var(--ease);

    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;

    --container: 1200px;
    --header-h: 72px;
}

/* ===== BASE ===== */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; }
ul, ol { list-style: none; }

::selection {
    background: var(--neon);
    color: var(--bg);
}

/* ===== UTILITIES ===== */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

.section-alt { background: var(--bg-alt); }

.text-neon { color: var(--neon); }
.text-blue { color: var(--blue); }
.text-gold { color: var(--gold); }
.text-gray { color: var(--gray); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0,255,135,0.1) 0%, rgba(0,255,135,0.04) 100%);
    border: 1px solid rgba(0, 255, 135, 0.18);
    color: var(--neon);
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,255,135,0.06);
}

.section-label::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--neon);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(0,255,135,0.6);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    line-height: 1.7;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s, visibility 0.6s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    animation: pulse-logo 1.2s ease-in-out infinite;
    border: 2px solid var(--neon-dim);
}
@keyframes pulse-logo {
    0%, 100% { transform: scale(1); opacity: 0.8; box-shadow: 0 0 0 rgba(0,255,135,0); }
    50% { transform: scale(1.06); opacity: 1; box-shadow: 0 0 30px var(--neon-glow); }
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(0, 255, 135, 0.08);
}

.nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 1001;
}

.nav-logo img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 135, 0.2);
    transition: border-color var(--transition);
}

.nav-logo:hover img {
    border-color: var(--neon);
}

.nav-logo-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--white);
}

.nav-logo-text em {
    font-style: italic;
    color: var(--neon);
}

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

.nav-links a {
    color: var(--gray);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon);
    transition: width var(--transition);
}

.nav-links a:hover { color: var(--neon); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--neon); }
.nav-links a.active::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, #00FF87 0%, #00e67a 100%) !important;
    color: var(--bg) !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    font-weight: 700 !important;
    font-size: 0.78rem !important;
    letter-spacing: 1.2px !important;
    text-transform: uppercase !important;
    transition: all 0.3s var(--spring) !important;
    box-shadow: 0 2px 0 rgba(0,0,0,0.1), 0 4px 12px rgba(0,255,135,0.2), inset 0 1px 0 rgba(255,255,255,0.15) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 2px 0 rgba(0,0,0,0.1), 0 8px 24px rgba(0,255,135,0.4), inset 0 1px 0 rgba(255,255,255,0.2) !important;
    color: var(--bg) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS (Premium finish) ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 34px;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--spring);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* Shine sweep on hover */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    z-index: 1;
}
.btn:hover::before { left: 130%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn-neon {
    background: linear-gradient(135deg, #00FF87 0%, #00e67a 50%, #00cc6a 100%);
    color: var(--bg);
    box-shadow:
        0 2px 0 rgba(0,0,0,0.15),
        0 4px 16px rgba(0, 255, 135, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.btn-neon:hover {
    box-shadow:
        0 2px 0 rgba(0,0,0,0.15),
        0 8px 32px rgba(0, 255, 135, 0.5),
        0 0 60px rgba(0, 255, 135, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.25);
    background: linear-gradient(135deg, #1aff96 0%, #00FF87 50%, #00e67a 100%);
}

.btn-blue {
    background: linear-gradient(135deg, #00D4FF 0%, #00bde6 50%, #00a3cc 100%);
    color: var(--bg);
    box-shadow:
        0 2px 0 rgba(0,0,0,0.15),
        0 4px 16px rgba(0, 212, 255, 0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    text-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.btn-blue:hover {
    box-shadow:
        0 2px 0 rgba(0,0,0,0.15),
        0 8px 32px rgba(0, 212, 255, 0.5),
        0 0 60px rgba(0, 212, 255, 0.15),
        inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn-outline {
    background: rgba(255,255,255,0.03);
    color: var(--gray-100);
    border: 1.5px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(4px);
}

.btn-outline::before { display: none; }

.btn-outline:hover {
    border-color: var(--neon);
    color: var(--neon);
    background: rgba(0, 255, 135, 0.06);
    box-shadow: 0 0 24px rgba(0, 255, 135, 0.08);
}

.btn-outline-blue:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(0, 212, 255, 0.06);
    box-shadow: 0 0 24px rgba(0, 212, 255, 0.08);
}

.btn svg { flex-shrink: 0; }

.btn-sm {
    padding: 11px 24px;
    font-size: 0.8rem;
}

.btn-full { width: 100%; }

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--header-h);
}

/* Diagonal lines background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 80px,
            rgba(0, 255, 135, 0.015) 80px,
            rgba(0, 255, 135, 0.015) 81px
        );
    pointer-events: none;
}

/* Neon glow orb */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 135, 0.06) 0%, transparent 70%);
    pointer-events: none;
    animation: float-orb 8s ease-in-out infinite;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 20px); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content { position: relative; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--neon-dim);
    border: 1px solid rgba(0, 255, 135, 0.15);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--neon);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--neon);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1 .highlight {
    color: var(--neon);
    position: relative;
}

.hero-desc {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 500px;
}

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

/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-showcase {
    position: relative;
    width: 100%;
    max-width: 460px;
}

.hero-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: transform 0.5s var(--ease);
}

.hero-card img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-card-back {
    position: absolute;
    top: 30px;
    right: -30px;
    width: 65%;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transform: rotate(4deg);
    z-index: -1;
    opacity: 0.65;
    transition: transform 0.6s var(--ease), opacity 0.6s;
}

.hero-card-back img { width: 100%; display: block; }

.hero-showcase:hover .hero-card { transform: translateY(-4px); }
.hero-showcase:hover .hero-card-back {
    transform: rotate(6deg) translateX(8px);
    opacity: 0.8;
}

/* ===== STATS ===== */
.stats {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--neon);
    line-height: 1;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===== TARGET AUDIENCE (Para quem é) ===== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.audience-card {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(15,19,24,0.8) 100%);
    border: 1px solid var(--border);
    border-left: 3px solid var(--neon);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s var(--spring);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.audience-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px rgba(0,255,135,0.04);
}

.audience-icon {
    width: 56px;
    height: 56px;
    background: var(--neon-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.audience-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--neon);
    fill: none;
    stroke-width: 1.5;
}

.audience-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.audience-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== PORTFOLIO ===== */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 36px 0;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: var(--gray);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--neon-dim);
    border-color: rgba(0, 255, 135, 0.3);
    color: var(--neon);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.portfolio-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: all 0.4s var(--spring);
}

.portfolio-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 30px rgba(0,255,135,0.06);
    border-color: rgba(0,255,135,0.15);
    transform: translateY(-4px);
}

.portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease), filter 0.4s;
}

.portfolio-card:hover img { transform: scale(1.06); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.portfolio-overlay span {
    font-size: 0.78rem;
    color: var(--neon);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== STORYTELLING (DOR) ===== */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.story-stat {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(10,14,20,0.9) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: border-color 0.3s;
}

.story-stat:hover {
    border-color: rgba(0,255,135,0.15);
}

.story-stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--neon);
    letter-spacing: 1px;
}

.story-stat-text {
    font-size: 0.82rem;
    color: var(--gray);
    font-weight: 500;
}

.story-visual {
    position: relative;
}

.story-visual img {
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

/* Angular accent line */
.story-visual::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 60px;
    height: 60px;
    border-top: 3px solid var(--neon);
    border-left: 3px solid var(--neon);
    border-radius: 4px 0 0 0;
    opacity: 0.5;
}

/* ===== DUAL CTA ===== */
.dual-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 48px;
}

.dual-cta-card {
    background: linear-gradient(160deg, var(--bg-card) 0%, rgba(10,14,20,0.9) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 52px 40px;
    text-align: center;
    transition: all 0.4s var(--spring);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.dual-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.dual-cta-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s;
}

.dual-cta-card.cta-neon::before { background: linear-gradient(90deg, var(--neon), transparent); }
.dual-cta-card.cta-blue::before { background: linear-gradient(90deg, var(--blue), transparent); }

.dual-cta-card.cta-neon::after { background: radial-gradient(circle, rgba(0,255,135,0.06), transparent 70%); }
.dual-cta-card.cta-blue::after { background: radial-gradient(circle, rgba(0,212,255,0.06), transparent 70%); }

.dual-cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35);
}
.dual-cta-card:hover::after { opacity: 1; }

.dual-cta-card.cta-neon:hover { border-color: rgba(0, 255, 135, 0.3); }
.dual-cta-card.cta-blue:hover { border-color: rgba(0, 212, 255, 0.3); }

.dual-cta-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dual-cta-card p {
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* ===== SERVICES ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.service-card {
    background: linear-gradient(150deg, var(--bg-card) 0%, rgba(10,14,20,0.9) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.4s var(--spring);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px rgba(0,255,135,0.04);
}

.service-icon {
    width: 52px;
    height: 52px;
    background: var(--neon-dim);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--gray);
    line-height: 1.65;
}

.service-price {
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--neon);
}

.service-price span {
    font-size: 0.78rem;
    color: var(--gray);
    font-weight: 500;
}

/* ===== PRICING ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.price-card {
    background: linear-gradient(160deg, var(--bg-card) 0%, rgba(10,14,20,0.95) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s var(--spring);
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.price-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 40px rgba(0,255,135,0.05);
}

.price-card.featured {
    border: 2px solid var(--neon);
    background: linear-gradient(160deg, rgba(0, 255, 135, 0.08) 0%, var(--bg-card) 35%, rgba(0,255,135,0.02) 100%);
    transform: scale(1.04);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 50px rgba(0,255,135,0.08);
}

.price-card.featured:hover {
    transform: scale(1.04) translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 80px rgba(0,255,135,0.12);
}

.price-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #00FF87, #00e67a);
    color: var(--bg);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 5px 20px;
    border-radius: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,255,135,0.3), inset 0 1px 0 rgba(255,255,255,0.2);
}

.price-name {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--neon);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.price-desc {
    font-size: 0.82rem;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.5;
    font-style: italic;
}

.price-value {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: 1px;
}

.price-value small {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
}

.price-period {
    font-size: 0.78rem;
    color: var(--gray-dark);
    margin-bottom: 24px;
    font-weight: 500;
}

.price-features {
    text-align: left;
    margin-bottom: 28px;
}

.price-features li {
    font-size: 0.85rem;
    color: var(--gray);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-features li::before {
    content: '';
    width: 18px;
    height: 18px;
    min-width: 18px;
    background: var(--neon-dim);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2300FF87' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* Pricing in 4 columns for avulsos */
.pricing-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ===== COMPARISON TABLE ===== */
.comparison-table {
    width: 100%;
    margin-top: 48px;
    border-collapse: collapse;
    border-radius: var(--radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border);
}

.comparison-table th {
    background: var(--bg-card);
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--neon);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.78rem;
}

.comparison-table th:first-child {
    text-align: left;
    color: var(--white);
}

.comparison-table td:first-child {
    text-align: left;
    color: var(--gray-100);
    font-weight: 500;
}

.comparison-table td {
    color: var(--gray);
}

.comparison-table .check {
    color: var(--neon);
    font-weight: 700;
}

.comparison-table .featured-col {
    background: rgba(0, 255, 135, 0.03);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* ===== PROCESS ===== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 32px;
    right: -16px;
    width: 32px;
    height: 2px;
    background: linear-gradient(to right, var(--neon), transparent);
}

.process-step:last-child::after { display: none; }

.process-number {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--neon-dim);
    border: 2px solid rgba(0, 255, 135, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--neon);
    letter-spacing: 1px;
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 720px;
    margin: 48px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}

.faq-question:hover { color: var(--neon); }

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--neon);
    font-weight: 300;
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.faq-answer p {
    padding-bottom: 20px;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 135, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .section-title { max-width: 700px; margin: 0 auto 16px; }
.cta-section .section-subtitle { margin: 0 auto 36px; text-align: center; }

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.blog-card {
    background: linear-gradient(160deg, var(--bg-card) 0%, rgba(10,14,20,0.95) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s var(--spring);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.blog-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.35), 0 0 40px rgba(0,255,135,0.05);
}

.blog-card-img-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-card-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* Color overlay per category */
.blog-card[data-theme="patrocinio"] .blog-card-img-wrap::after {
    background: linear-gradient(135deg, rgba(0,255,135,0.25) 0%, rgba(0,0,0,0.5) 60%, rgba(10,10,10,0.9) 100%);
}
.blog-card[data-theme="esports"] .blog-card-img-wrap::after {
    background: linear-gradient(135deg, rgba(0,212,255,0.25) 0%, rgba(0,0,0,0.5) 60%, rgba(10,10,10,0.9) 100%);
}
.blog-card[data-theme="matchday"] .blog-card-img-wrap::after {
    background: linear-gradient(135deg, rgba(255,215,0,0.2) 0%, rgba(0,0,0,0.5) 60%, rgba(10,10,10,0.9) 100%);
}

.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-card-img-wrap img {
    transform: scale(1.08);
}

.blog-card-img-wrap .blog-card-tag {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 2;
    margin: 0;
}

.blog-card-body {
    padding: 24px 24px 28px;
}

.blog-card-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 14px;
}

.blog-card-tag[data-color="neon"] {
    background: rgba(0,255,135,0.12);
    color: var(--neon);
    border: 1px solid rgba(0,255,135,0.2);
}
.blog-card-tag[data-color="blue"] {
    background: rgba(0,212,255,0.12);
    color: var(--blue);
    border: 1px solid rgba(0,212,255,0.2);
}
.blog-card-tag[data-color="gold"] {
    background: rgba(255,215,0,0.1);
    color: var(--gold);
    border: 1px solid rgba(255,215,0,0.2);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.35;
    margin-bottom: 12px;
    transition: color var(--transition);
}

.blog-card:hover .blog-card-title { color: var(--neon); }

.blog-card-excerpt {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.72rem;
    color: var(--gray-dark);
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

/* ===== HERO COMPACT (inner pages) ===== */
.hero-compact {
    padding: calc(var(--header-h) + 60px) 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-compact::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 80px,
            rgba(0, 255, 135, 0.012) 80px,
            rgba(0, 255, 135, 0.012) 81px
        );
    pointer-events: none;
}

.hero-compact h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    position: relative;
}

.hero-compact .section-subtitle {
    margin: 0 auto;
    position: relative;
}

/* ===== CATALOG (Services) ===== */
.catalog-section {
    margin-top: 48px;
}

.catalog-category {
    margin-bottom: 48px;
}

.catalog-category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.catalog-category-title .cat-icon {
    width: 40px;
    height: 40px;
    background: var(--neon-dim);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.catalog-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.catalog-item {
    background: linear-gradient(150deg, var(--bg-card) 0%, rgba(10,14,20,0.9) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.35s var(--spring);
    box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.catalog-item:hover {
    border-color: var(--border-hover);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.catalog-item-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
}

.catalog-item-desc {
    font-size: 0.78rem;
    color: var(--gray);
    margin-top: 4px;
}

.catalog-item-price {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--neon);
    white-space: nowrap;
    letter-spacing: 1px;
}

/* ===== FOOTER ===== */
.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-content {
    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 img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

.footer-brand span {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
}

.footer-brand em {
    color: var(--neon);
    font-style: italic;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 1.1rem;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social a:hover {
    background: var(--neon-dim);
    color: var(--neon);
    border-color: rgba(0, 255, 135, 0.2);
}

.footer-social a svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--gray-dark);
}

.footer-bottom a {
    color: var(--neon);
    transition: opacity var(--transition);
}

.footer-bottom a:hover { opacity: 0.8; }

/* ===== WHATSAPP FLOAT ===== */
.wpp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 900;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s var(--spring), box-shadow var(--transition);
}

.wpp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

.wpp-float svg { width: 30px; height: 30px; fill: white; }

.wpp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: wpp-pulse 2s ease-out infinite;
}

@keyframes wpp-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ===== MOBILE CAROUSEL (pricing cards) ===== */
.mobile-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 0;
}

.mobile-carousel::-webkit-scrollbar { display: none; }

.mobile-carousel > * {
    scroll-snap-align: center;
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 1024px) {
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .catalog-items { grid-template-columns: 1fr; }
}

/* Mobile Large */
@media (max-width: 768px) {
    .section { padding: 72px 0; }
    .container { padding: 0 20px; }

    .menu-toggle { display: block; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: var(--bg-alt);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transition: right var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid var(--border);
    }

    .nav-links.open { right: 0; }

    .nav-links a {
        font-size: 1rem;
    }

    .nav-links a::after { display: none; }

    /* Hero */
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-desc { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-showcase { max-width: 300px; }
    .hero-card-back { right: -15px; top: 20px; }

    /* Stats */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }

    /* Audience */
    .audience-grid { grid-template-columns: 1fr; }

    /* Portfolio */
    .portfolio-grid { grid-template-columns: repeat(2, 1fr); }

    /* Story */
    .story-grid { grid-template-columns: 1fr; }
    .story-visual { order: -1; }

    /* Dual CTA */
    .dual-cta { grid-template-columns: 1fr; }

    /* Services */
    .services-grid { grid-template-columns: 1fr; }

    /* Process */
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step::after { display: none; }

    /* Pricing — Carousel on mobile */
    .pricing-grid,
    .pricing-grid-4 {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 16px;
        padding: 20px 4px;
        grid-template-columns: none;
    }

    .pricing-grid::-webkit-scrollbar,
    .pricing-grid-4::-webkit-scrollbar { display: none; }

    .pricing-grid .price-card,
    .pricing-grid-4 .price-card {
        scroll-snap-align: center;
        flex-shrink: 0;
        width: 280px;
        min-width: 280px;
    }

    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-6px); }

    /* Blog */
    .blog-grid { grid-template-columns: 1fr; }

    /* Comparison table */
    .comparison-wrapper { overflow-x: auto; }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .process-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; justify-content: center; }
    .dual-cta-card { padding: 36px 24px; }
    .story-stats { grid-template-columns: 1fr; }
}
