@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ═══════════════════════════════════════════════
   DESIGN SYSTEM — Canal RapRJ

   Typography scale (1.25 ratio):
   xs: 0.64rem | sm: 0.8rem | base: 1rem |
   lg: 1.25rem | xl: 1.563rem | 2xl: 1.953rem |
   3xl: 2.441rem | 4xl: 3.052rem | hero: clamp

   Spacing scale (8px base):
   1: 0.25rem | 2: 0.5rem | 3: 0.75rem | 4: 1rem |
   5: 1.25rem | 6: 1.5rem | 8: 2rem | 10: 2.5rem |
   12: 3rem | 16: 4rem | 20: 5rem | 24: 6rem
   ═══════════════════════════════════════════════ */

:root {
    /* Surfaces */
    --bg: #060606;
    --bg-raised: #0a0a0a;
    --bg-card: #0d0d0d;
    --bg-card-hover: #121212;
    --border: #181818;
    --border-hover: #252525;

    /* Text — WCAG AA compliant on #060606 */
    --text-primary: #ededea;
    --text-secondary: #9a9a9a;
    --text-tertiary: #636363;
    --text-quaternary: #4a4a4a;

    /* Brand — baseado no amarelo do logo #FFCC00 */
    --gold: #f0c000;
    --gold-bright: #ffcc00;
    --gold-dark: #c9a000;
    --gold-muted: #8a7020;
    --gold-surface: rgba(240, 192, 0, 0.06);
    --gold-glow: rgba(240, 192, 0, 0.10);
    --gold-glow-md: rgba(240, 192, 0, 0.18);
    --gold-glow-lg: rgba(240, 192, 0, 0.25);

    /* Semantic */
    --red: #e05555;
    --red-muted: rgba(224, 85, 85, 0.12);
    --green: #34d399;
    --green-surface: rgba(52, 211, 153, 0.08);

    /* Typography */
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Motion */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 0.2s;
    --duration-normal: 0.35s;
    --duration-slow: 0.6s;

    /* Layout */
    --container: 1080px;
    --radius-sm: 0px;
    --radius-md: 0px;
}

/* ═══ RESET ═══ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 0.938rem;
    line-height: 1.65;
    background: var(--bg);
    color: var(--text-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection { background: rgba(240,192,0,0.2); color: #fff; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--border-hover); }

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.1rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(6, 6, 6, 0.65);
    backdrop-filter: blur(24px) saturate(1.1);
    -webkit-backdrop-filter: blur(24px) saturate(1.1);
    border-bottom: 1px solid transparent;
    transition: all var(--duration-normal) var(--ease-out);
}

.nav.scrolled {
    border-bottom-color: var(--border);
    padding: 0.75rem 2.5rem;
    background: rgba(6, 6, 6, 0.92);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
}

.nav-logo {
    height: 34px;
    display: block;
}

.nav-verified {
    width: 16px;
    height: 16px;
    fill: #3897f0;
    flex-shrink: 0;
    margin-left: -2px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-tertiary);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color var(--duration-fast);
}

.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
    padding: 0.5rem 1.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    border: 1px solid var(--gold-dark);
    background: transparent;
    transition: all var(--duration-normal) var(--ease-out);
}

.nav-cta:hover {
    background: var(--gold);
    color: var(--bg);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-hamburger {
    display: none;
    width: 32px;
    height: 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text-secondary);
    transition: all 0.2s;
}

.nav-mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(6, 6, 6, 0.97);
    border-top: 1px solid var(--border);
    padding: 1rem 0;
    flex-direction: column;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
    padding: 0.75rem 2rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.15s;
}

.nav-mobile a:hover { color: var(--text-primary); }

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 7rem 2.5rem 4rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 65%);
    animation: drift 14s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes drift {
    0% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    100% { transform: translate(-50px, 30px) scale(1.15); opacity: 0.65; }
}

.hero-inner {
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-text { max-width: 520px; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.9rem;
    border: 1px solid var(--border-hover);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    margin-bottom: 1.75rem;
    animation: fadeUp 0.7s var(--ease-out) both;
}

.hero-tag .pulse {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 2.5s infinite;
}

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

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.25rem;
    animation: fadeUp 0.7s 0.08s var(--ease-out) both;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 420px;
    animation: fadeUp 0.7s 0.16s var(--ease-out) both;
}

.hero-desc strong {
    color: var(--text-primary);
    font-weight: 600;
}

.hero-actions {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.24s var(--ease-out) both;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ═══ PHONE MOCKUP ═══ */
.hero-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeUp 0.8s 0.3s var(--ease-out) both;
}

.phone-frame {
    width: 260px;
    background: #111;
    border: 2px solid #222;
    border-radius: 28px;
    padding: 8px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
}

.phone-notch {
    width: 80px;
    height: 16px;
    background: #111;
    border-radius: 0 0 12px 12px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.phone-screen {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
}

.phone-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

/* Instagram UI */
.ig-header {
    padding: 10px 14px 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ig-header-name {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
}

.ig-header-verified {
    width: 12px;
    height: 12px;
    fill: #3897f0;
}

.ig-profile {
    display: flex;
    align-items: center;
    padding: 8px 14px;
    gap: 12px;
}

.ig-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0c000, #e05555, #833ab4);
    padding: 2px;
    flex-shrink: 0;
}

.ig-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000;
    background: #000;
}

.ig-stats {
    display: flex;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.ig-stat {
    text-align: center;
    line-height: 1.2;
}

.ig-stat strong {
    display: block;
    font-size: 0.72rem;
    color: #fff;
    font-weight: 700;
}

.ig-stat span {
    font-size: 0.55rem;
    color: #888;
}

.ig-bio {
    padding: 4px 14px 10px;
}

.ig-bio-name {
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.ig-bio-text {
    font-size: 0.55rem;
    color: #aaa;
    line-height: 1.4;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border-top: 1px solid #222;
    margin-top: 4px;
}

.ig-thumb {
    aspect-ratio: 1;
    background: #1a1a1a;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 4px;
    position: relative;
}

.ig-thumb span {
    font-family: var(--font-mono);
    font-size: 0.45rem;
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 2px;
}

.ig-thumb::before {
    content: '▶';
    position: absolute;
    top: 4px;
    right: 4px;
    font-size: 0.4rem;
    color: rgba(255,255,255,0.4);
}

/* Metrics below phone */
.hero-metrics-mini {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
}

.hmm-item {
    text-align: center;
}

.hmm-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
}

.hmm-label {
    font-size: 0.55rem;
    color: var(--text-quaternary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Hide phone on small screens, show metrics card instead */
@media (max-width: 1024px) {
    .hero-phone { display: none; }
    .hero-inner { grid-template-columns: 1fr; }
}

/* Hero metrics card (fallback for no-phone) */
.hero-metrics {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.25rem;
    position: relative;
    animation: fadeUp 0.8s 0.32s var(--ease-out) both;
}

.hero-metrics::before {
    content: 'INSTAGRAM INSIGHTS — ÚLTIMOS 30 DIAS';
    position: absolute;
    top: -1px;
    left: 1.75rem;
    background: var(--bg);
    padding: 0 0.6rem;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.12em;
    color: var(--text-quaternary);
    transform: translateY(-50%);
}

.metrics-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin-bottom: 1.75rem;
}

.metric {
    border-left: 2px solid var(--border);
    padding-left: 0.875rem;
}

.metric-value {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.15rem;
}

.metric-label {
    font-size: 0.65rem;
    color: var(--text-quaternary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.metrics-bar {
    display: flex;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.metrics-bar-item { text-align: center; }

.metrics-bar-value {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
}

.metrics-bar-label {
    font-size: 0.58rem;
    color: var(--text-quaternary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.75rem 1.6rem;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--duration-normal) var(--ease-out);
}

.btn-primary {
    background: var(--gold);
    color: var(--bg);
}

.btn-primary:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--gold-glow-md);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border-hover);
}

.btn-secondary:hover {
    border-color: var(--text-tertiary);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.22);
}

.btn-whatsapp svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* ═══════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════ */
.section {
    padding: 5.5rem 0;
}

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

.section-head {
    margin-bottom: 3rem;
}

.section-head.center { text-align: center; }

.section-eyebrow {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 0.6rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.7rem;
}

.section-subtitle {
    font-size: 0.92rem;
    color: var(--text-secondary);
    max-width: 480px;
    line-height: 1.6;
}

.section-head.center .section-subtitle { margin: 0 auto; }

/* ═══════════════════════════════════════════════
   ARTISTS BAR
   ═══════════════════════════════════════════════ */
.artists-bar {
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.artists-bar-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.55rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-quaternary);
    margin-bottom: 1.5rem;
}

.artists-grid {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.artist-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.artist-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    border: 1px solid var(--border-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.artist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.artist-avatar-placeholder {
    font-family: var(--font-display);
    font-size: 0.6rem;
    color: var(--text-tertiary);
}

.artist-name {
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ═══════════════════════════════════════════════
   COMPARE
   ═══════════════════════════════════════════════ */
.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 880px;
    margin: 0 auto;
}

.compare-col {
    padding: 2.25rem 2rem;
    border: 1px solid var(--border);
    background: var(--bg-card);
}

.compare-col.bad {
    opacity: 0.65;
    transition: opacity var(--duration-normal);
}

.compare-col.bad:hover { opacity: 0.8; }

.compare-col.good {
    border-color: rgba(201, 168, 76, 0.2);
    background: linear-gradient(180deg, var(--gold-surface) 0%, var(--bg-card) 50%);
    position: relative;
    box-shadow: 0 0 40px rgba(201, 168, 76, 0.03);
}

.compare-col.good::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

.compare-label {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.compare-col.bad .compare-label { color: var(--text-quaternary); }
.compare-col.good .compare-label { color: var(--gold); }

.compare-list { list-style: none; }

.compare-list li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    padding: 0.55rem 0;
    padding-left: 1.6rem;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.025);
    line-height: 1.5;
}

.compare-list li:last-child { border-bottom: none; }

.compare-col.bad .compare-list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--red);
    font-weight: 700;
}

.compare-col.good .compare-list li { color: var(--text-primary); }

.compare-col.good .compare-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════
   PLANS
   ═══════════════════════════════════════════════ */
.plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    max-width: 880px;
    margin: 0 auto;
}

.plan {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2.75rem 2.25rem;
    position: relative;
    transition: transform var(--duration-normal) var(--ease-out);
}

.plan:hover { transform: translateY(-4px); }

.plan.highlight {
    border-color: var(--gold-dark);
    background: linear-gradient(180deg, var(--gold-surface) 0%, var(--bg-card) 40%);
    box-shadow: 0 0 60px rgba(201, 168, 76, 0.04);
}

.plan.highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}

.plan-tag {
    position: absolute;
    top: 0;
    right: 1.75rem;
    background: var(--gold);
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.4rem 0.8rem;
}

.plan-freq {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--gold-muted);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 0.15rem;
}

.plan-desc {
    font-size: 0.8rem;
    color: var(--text-tertiary);
    margin-bottom: 1.75rem;
}

.plan-pricing {
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.plan-was {
    font-size: 0.72rem;
    color: var(--text-quaternary);
    text-decoration: line-through;
}

.plan-price {
    font-family: var(--font-display);
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.plan-price span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--text-tertiary);
    font-weight: 400;
}

.plan-save {
    display: inline-block;
    background: var(--green-surface);
    color: var(--green);
    font-family: var(--font-mono);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    margin-top: 0.5rem;
    letter-spacing: 0.04em;
}

.plan-items {
    list-style: none;
    margin-bottom: 1.75rem;
}

.plan-items li {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.plan-items li::before {
    content: '✓';
    color: var(--gold);
    font-size: 0.72rem;
    flex-shrink: 0;
}

.plan-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.plan-note {
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-quaternary);
    margin-top: 1.5rem;
}

/* ═══════════════════════════════════════════════
   SINGLES (Avulsos)
   ═══════════════════════════════════════════════ */
.singles {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.875rem;
    max-width: 880px;
    margin: 0 auto 3rem;
}

.single {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.75rem 1rem;
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}

.single::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform var(--duration-normal) var(--ease-out);
}

.single:hover {
    border-color: var(--border-hover);
    transform: translateY(-3px);
}

.single:hover::after { transform: scaleX(1); }

.single-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    opacity: 0.7;
}

.single-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.single-name {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.2rem;
    letter-spacing: 0.03em;
}

.single-desc {
    font-size: 0.65rem;
    color: var(--text-quaternary);
    margin-bottom: 0.6rem;
    line-height: 1.3;
}

.single-price {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.1rem;
}

.single-cta {
    display: block;
    width: 100%;
    margin-top: 0.875rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-tertiary);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--duration-fast);
}

.single-cta:hover {
    color: var(--gold);
    border-color: var(--gold-dark);
}

/* ═══════════════════════════════════════════════
   COMBOS
   ═══════════════════════════════════════════════ */
.combos-wrap {
    max-width: 880px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.combos-label {
    text-align: center;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-quaternary);
    margin-bottom: 1.25rem;
}

.combos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.875rem;
}

.combo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}

.combo:hover { transform: translateY(-3px); }

.combo.featured {
    border-color: rgba(201, 168, 76, 0.2);
}

.combo.featured::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
}

.combo-badge {
    position: absolute;
    top: -1px;
    right: 1rem;
    background: var(--gold);
    color: var(--bg);
    font-family: var(--font-mono);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.3rem 0.6rem;
}

.combo-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.combo-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.combo-was {
    font-size: 0.68rem;
    color: var(--text-quaternary);
    text-decoration: line-through;
}

.combo-price {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.combo-cta {
    display: block;
    width: 100%;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--text-tertiary);
    border: 1px solid var(--border);
    text-align: center;
    transition: all var(--duration-fast);
}

.combo-cta:hover {
    color: var(--gold);
    border-color: var(--gold-dark);
}

.combo.featured .combo-cta {
    color: var(--gold);
    border-color: var(--gold-dark);
}

.combo.featured .combo-cta:hover {
    background: var(--gold);
    color: var(--bg);
}

/* ═══════════════════════════════════════════════
   PROOF
   ═══════════════════════════════════════════════ */
.proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 880px;
    margin: 0 auto;
}

.proof-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    transition: border-color var(--duration-fast);
}

.proof-card:hover { border-color: var(--border-hover); }

.proof-num {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.proof-label {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.proof-text {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    line-height: 1.6;
}

.proof-source {
    text-align: center;
    margin-top: 1.75rem;
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: var(--text-quaternary);
    letter-spacing: 0.04em;
}

/* Reels gallery */
.reels-gallery {
    max-width: 880px;
    margin: 2.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.reel-card {
    aspect-ratio: 9/14;
    background: var(--border);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s var(--ease-out);
    cursor: default;
}

.reel-card:hover { transform: translateY(-4px); }

.reel-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(6,6,6,0.92) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}

.reel-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    padding-left: 3px;
    backdrop-filter: blur(4px);
    transition: all 0.3s;
}

.reel-card:hover .reel-card-play {
    border-color: rgba(255,255,255,0.6);
    color: #fff;
    transform: translate(-50%, -50%) scale(1.1);
}

.reel-card-bottom { position: relative; z-index: 2; }

.reel-card-artist {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.reel-card-views {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 600;
}

@media (max-width: 768px) {
    .reels-gallery { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
    .reel-card-overlay { padding: 0.75rem; }
    .reel-card-artist { font-size: 0.82rem; }
    .reel-card-views { font-size: 0.6rem; }
    .reel-card-play { width: 32px; height: 32px; font-size: 0.7rem; }
}

/* Old reels showcase (keep for backward compat) */
.reels-showcase {
    max-width: 880px;
    margin: 2.5rem auto 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.6rem;
}

.reel-thumb {
    aspect-ratio: 9/16;
    background: var(--border);
    position: relative;
    overflow: hidden;
    transition: transform var(--duration-normal) var(--ease-out);
}

.reel-thumb:hover { transform: translateY(-3px); }

.reel-thumb-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0.7rem 0.4rem;
    background: linear-gradient(180deg, rgba(24,24,24,0.3) 0%, rgba(6,6,6,0.9) 100%);
}

.reel-thumb-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reel-thumb-play svg {
    width: 9px;
    height: 9px;
    fill: rgba(255,255,255,0.5);
    margin-left: 1px;
}

.reel-thumb-views {
    font-family: var(--font-mono);
    font-size: 0.58rem;
    color: rgba(255,255,255,0.65);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.reel-thumb-views svg {
    width: 9px;
    height: 9px;
    fill: rgba(255,255,255,0.4);
}

.reel-thumb-date {
    font-size: 0.48rem;
    color: rgba(255,255,255,0.25);
    margin-top: 0.15rem;
}

/* ═══════════════════════════════════════════════
   STEPS
   ═══════════════════════════════════════════════ */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    max-width: 880px;
    margin: 0 auto;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    left: 16%;
    right: 16%;
    height: 1px;
    background: var(--border);
}

.step { text-align: center; }

.step-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    border: 1px solid var(--border-hover);
    background: var(--bg);
    position: relative;
    z-index: 2;
    transition: all var(--duration-normal) var(--ease-out);
}

.step:hover .step-num {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.35rem;
}

.step-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.55;
    max-width: 240px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq {
    max-width: 660px;
    margin: 0 auto;
}

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

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color var(--duration-fast);
    line-height: 1.4;
}

.faq-q:hover { color: var(--gold); }

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-hover);
    font-size: 0.95rem;
    color: var(--gold-dark);
    transition: all var(--duration-normal) var(--ease-out);
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out);
}

.faq-a-inner {
    padding: 0 0 1.2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   CTA FINAL
   ═══════════════════════════════════════════════ */
.cta-final {
    padding: 7rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
    pointer-events: none;
}

.cta-urgency {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--gold-dark);
    letter-spacing: 0.08em;
    margin-bottom: 1.25rem;
    position: relative;
}

.cta-urgency .dot-live {
    display: inline-block;
    width: 5px;
    height: 5px;
    background: var(--green);
    border-radius: 50%;
    margin-right: 0.35rem;
    animation: blink 1.5s infinite;
    vertical-align: middle;
}

.cta-final h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    line-height: 0.95;
    margin-bottom: 1rem;
    position: relative;
}

.cta-final h2 em {
    font-style: normal;
    color: var(--gold);
}

.cta-final p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    position: relative;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-final .hero-actions {
    justify-content: center;
    position: relative;
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
    padding: 2.5rem 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-quaternary);
    letter-spacing: 0.03em;
}

.footer a {
    color: var(--gold-muted);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.footer a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════
   WHATSAPP FLOAT
   ═══════════════════════════════════════════════ */
.wa-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 14px rgba(37, 211, 102, 0.3);
    z-index: 99;
    transition: all var(--duration-normal) var(--ease-out);
    text-decoration: none;
}

.wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 22px rgba(37, 211, 102, 0.4);
}

.wa-float svg {
    width: 23px;
    height: 23px;
    fill: #fff;
}

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════
   REFINAMENTOS VISUAIS
   ═══════════════════════════════════════════════ */

/* — 1. Benefit cards — hover rico */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s var(--ease-out), border-color 0.3s, box-shadow 0.35s;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.benefit-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow: 0 12px 40px rgba(240, 192, 0, 0.06);
}

.benefit-card:hover::before { opacity: 1; }

.benefit-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.benefit-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-text {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* — 2. Hero parallax glow */
.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(240, 192, 0, 0.04) 0%, transparent 60%);
    animation: drift 18s ease-in-out infinite alternate-reverse;
    pointer-events: none;
}

/* — 3. CTA glow pulse */
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(240, 192, 0, 0.2), 0 4px 16px rgba(240, 192, 0, 0.1); }
    50% { box-shadow: 0 0 35px rgba(240, 192, 0, 0.35), 0 4px 24px rgba(240, 192, 0, 0.2); }
}

.btn-primary {
    animation: glowPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
    animation: none;
}

/* — 4. Proof cards — shine on hover */
.proof-card {
    position: relative;
    overflow: hidden;
}

.proof-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 192, 0, 0.04), transparent);
    transition: left 0.6s ease;
}

.proof-card:hover::after {
    left: 150%;
}

.proof-num {
    color: var(--gold) !important;
}

/* — 5. Reel cards — glow border */
.reel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid transparent;
    border-radius: inherit;
    transition: border-color 0.3s;
    z-index: 3;
    pointer-events: none;
}

.reel-card:hover::before {
    border-color: rgba(240, 192, 0, 0.3);
}

/* — 6. Steps — better visual */
.step-card {
    position: relative;
    transition: transform 0.3s var(--ease-out);
}

.step-card:hover {
    transform: translateY(-4px);
}

/* — 7. Section separator subtle glow */
section {
    position: relative;
}

section + section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-hover), transparent);
}

/* — 8. Painel showcase screen transition */
.painel-screen {
    transition: transform 0.4s var(--ease-out), border-color 0.3s, box-shadow 0.4s;
}

.painel-screen:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3), 0 0 0 1px var(--gold-dark);
}

/* — 9. Smooth scroll for entire page */
html {
    scroll-behavior: smooth;
}

/* — 10. Number counter glow effect */
.benefit-number, .proof-num {
    text-shadow: 0 0 30px rgba(240, 192, 0, 0.15);
}

/* — 11. Artist bar shimmer */
@keyframes artistShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.artists-bar {
    position: relative;
}

.artists-bar::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(240, 192, 0, 0.03) 25%, transparent 50%);
    background-size: 200% 100%;
    animation: artistShimmer 8s linear infinite;
    pointer-events: none;
}

/* — 12. Plan card popular glow */
.plan-card.highlight {
    box-shadow: 0 0 40px rgba(240, 192, 0, 0.08);
    animation: glowPulse 4s ease-in-out infinite;
}

.plan-card.highlight:hover {
    animation: none;
    box-shadow: 0 8px 40px rgba(240, 192, 0, 0.15);
}

/* gold text utility */
em, .gold { font-style: normal; color: var(--gold); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero-metrics { max-width: 480px; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav { padding: 0.7rem 1rem; flex-wrap: wrap; }
    .nav-cta { font-size: 0.62rem; padding: 0.4rem 0.9rem; }
    .nav-hamburger { display: flex; }
    .hero { padding: 6rem 1.25rem 3rem; min-height: auto; }
    .hero h1 { font-size: clamp(2.4rem, 11vw, 3.5rem); }
    .hero-desc { font-size: 0.88rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .section { padding: 3.5rem 0; }
    .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
    .container { padding: 0 1.25rem; }

    /* Metrics card */
    .hero-metrics { max-width: 100%; }
    .metrics-row { gap: 1.25rem; }
    .metric-value { font-size: 1.6rem; }

    /* Artists */
    .artists-bar { padding: 2rem 1rem; }
    .artists-grid { gap: 1rem; justify-content: flex-start; }
    .artist-avatar { width: 28px; height: 28px; }
    .artist-name { font-size: 0.72rem; }

    /* Benefits */
    .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .benefit-number { font-size: 1.8rem; }

    /* Compare */
    .compare { grid-template-columns: 1fr; max-width: 100%; }
    .compare-col { padding: 1.75rem 1.5rem; }
    .compare-col.bad { opacity: 0.55; }

    /* Plans */
    .plans { grid-template-columns: 1fr; max-width: 100%; }
    .plan { padding: 2rem 1.5rem; }
    .plan-price { font-size: 2.8rem; }
    .plan-cta { padding: 0.9rem 1.5rem; }

    /* Singles */
    .singles { grid-template-columns: repeat(2, 1fr); max-width: 100%; gap: 0.6rem; }
    .single { padding: 1.25rem 0.8rem; }
    .single-price { font-size: 1.4rem; }
    .single-cta { width: 100%; }

    /* Combos */
    .combos { grid-template-columns: 1fr; max-width: 100%; }
    .combo { padding: 1.5rem 1.25rem; }
    .combo-cta { width: 100%; }

    /* Proof */
    .proof { grid-template-columns: 1fr; max-width: 100%; }

    /* Steps */
    .steps { grid-template-columns: 1fr; gap: 1.5rem; max-width: 100%; }
    .steps::before { display: none; }
    .step-text { max-width: 100%; }

    /* Reels */
    .reels-showcase { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
    .reels-showcase .reel-thumb:nth-child(4),
    .reels-showcase .reel-thumb:nth-child(5) { display: none; }

    /* FAQ */
    .faq-q { font-size: 0.82rem; padding: 1rem 0; }

    /* CTA final */
    .cta-final { padding: 4rem 1.25rem; }
    .cta-final h2 { font-size: clamp(2rem, 8vw, 3rem); }
    .cta-final .hero-actions { flex-direction: column; }
    .cta-final .hero-actions .btn { width: 100%; justify-content: center; }

    /* Lead form */
    .lead-form-grid { grid-template-columns: 1fr; }

    /* Cart */
    .cart-float { bottom: 4.5rem; }
    .wa-float { bottom: 1rem; right: 1rem; width: 46px; height: 46px; }
    .wa-float svg { width: 20px; height: 20px; }
}

@media (max-width: 480px) {
    .hero { padding: 5.5rem 1rem 2.5rem; }
    .hero-tag { font-size: 0.58rem; padding: 0.3rem 0.7rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .benefit-card { padding: 1.5rem 1.25rem; }
    .benefit-number { font-size: 1.6rem; }
    .singles { grid-template-columns: 1fr; }
    .single { display: flex; align-items: center; gap: 1rem; text-align: left; padding: 1rem; }
    .single-icon { margin: 0; flex-shrink: 0; }
    .single-name { margin-bottom: 0; }
    .single-price { font-size: 1.3rem; margin-left: auto; }
    .single-cta { display: none; }
    .single { cursor: pointer; }
    .metric-value { font-size: 1.4rem; }
    .metrics-bar { flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
    .metrics-bar-item { min-width: 60px; }
    .artists-grid { gap: 0.75rem; }
    .artist-item { gap: 0.4rem; }
    .section-head { margin-bottom: 2rem; }
    .painel-showcase { flex-direction: column; gap: 1.5rem; }
    .painel-screen { min-height: auto; }
    .pf-grid { grid-template-columns: 1fr; }
    .painel-features { grid-template-columns: 1fr; }
}

/* ═══ PAINEL EXCLUSIVO SECTION ═══ */
.painel-showcase {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
    align-items: flex-start;
}

.painel-screen {
    flex: 1;
    background: var(--bg-raised);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    min-height: 360px;
    transition: transform 0.3s, border-color 0.3s;
}

.painel-screen:hover {
    transform: translateY(-4px);
    border-color: var(--gold-dark);
}

.painel-screen-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border);
}

.painel-dots {
    display: flex;
    gap: 5px;
}

.painel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
}

.painel-dots span:first-child { background: #ff5f57; }
.painel-dots span:nth-child(2) { background: #febc2e; }
.painel-dots span:last-child { background: #28c840; }

.painel-screen-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-tertiary);
}

.painel-screen-body {
    padding: 1rem;
}

/* Dashboard mockup */
.pd-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 0.75rem;
}

.pd-welcome-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
}

.pd-welcome-sub {
    font-size: 0.65rem;
    color: var(--text-tertiary);
    margin-top: 2px;
}

.pd-badge-ativa {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.2rem 0.5rem;
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: 4px;
}

.pd-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.pd-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.6rem 0.4rem;
    text-align: center;
}

.pd-stat-num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
}

.pd-stat-label {
    font-size: 0.55rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

.pd-progress {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.pd-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold));
    border-radius: 2px;
    animation: progressGrow 1.5s ease-out forwards;
}

@keyframes progressGrow {
    from { width: 0; }
}

.pd-next {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.6rem;
}

.pd-next-title {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pd-next-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    font-size: 0.7rem;
    color: var(--text-secondary);
}

.pd-next-item:last-child { border-bottom: none; }

.pd-type {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.15rem 0.35rem;
    border-radius: 3px;
}

.pd-type-reels { background: rgba(231, 76, 60, 0.2); color: #e74c3c; }
.pd-type-story { background: rgba(52, 152, 219, 0.2); color: #3498db; }
.pd-type-carrossel { background: rgba(155, 89, 182, 0.2); color: #9b59b6; }

.pd-status-publicado {
    font-size: 0.55rem;
    color: #2ecc71;
    margin-left: auto;
}

.pd-status-agendado {
    font-size: 0.55rem;
    color: var(--gold-dark);
    margin-left: auto;
}

.pd-status-produzindo {
    font-size: 0.55rem;
    color: #3498db;
    margin-left: auto;
}

/* Campanhas mockup */
.pc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.pc-plan {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
}

.pc-table {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.pc-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1fr;
    padding: 0.45rem 0.6rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255,255,255,0.03);
    align-items: center;
}

.pc-row:last-child { border-bottom: none; }

.pc-row-head {
    font-family: var(--font-mono);
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-tertiary);
    background: rgba(255,255,255,0.03);
}

.pc-views {
    color: var(--gold);
    font-weight: 600;
    font-family: var(--font-display);
    text-align: right;
}

/* Ferramentas mockup */
.pf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.pf-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem;
    position: relative;
    transition: border-color 0.3s;
}

.pf-card:hover { border-color: var(--gold-dark); }

.pf-icon {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.pf-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.75rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.pf-desc {
    font-size: 0.6rem;
    color: var(--text-tertiary);
    line-height: 1.4;
}

.pf-tag {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.45rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.1rem 0.3rem;
    background: rgba(var(--gold-rgb, 212, 175, 55), 0.15);
    color: var(--gold);
    border-radius: 3px;
    border: 1px solid rgba(var(--gold-rgb, 212, 175, 55), 0.2);
}

/* Features list */
.painel-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pf-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.pf-feature svg { flex-shrink: 0; }

/* Tablet */
@media (max-width: 900px) {
    .painel-showcase { flex-wrap: wrap; }
    .painel-screen { flex: 1 1 calc(50% - 0.75rem); min-height: auto; }
    .painel-screen:last-child { flex: 1 1 100%; }
}

@media (max-width: 640px) {
    .painel-showcase { flex-direction: column; }
    .painel-screen { flex: 1 1 100%; }
    .pd-stats { grid-template-columns: repeat(2, 1fr); }
    .pf-grid { grid-template-columns: 1fr; }
    .painel-features { grid-template-columns: 1fr; }
    .pc-row { grid-template-columns: 1fr 1fr 1fr 1fr; font-size: 0.6rem; padding: 0.35rem 0.4rem; }
}
