@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: #0f0f10;
    --bg-raised: #16161a;
    --bg-card: #1a1a1f;
    --bg-card-hover: #202028;
    --border: #2a2a32;
    --border-hover: #3a3a45;

    /* Text — WCAG AA compliant on #060606 */
    --text-primary: #ededea;
    --text-secondary: #9a9a9a;
    --text-tertiary: #787880;
    --text-quaternary: #5a5a62;

    /* 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-item.active .faq-a {
        max-height: 500px;
}

.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; }
}


/* FIX: permitir clicar em CTAs com cart aberto */
.plan-cta, .single-cta, .combo-cta {
        position: relative;
            z-index: 9992;
}


/* FIX: elevar cards CTA acima do overlay quando cart aberto */
body:has(.cart-overlay.open) .plan,
body:has(.cart-overlay.open) .single,
body:has(.cart-overlay.open) .combo {
        z-index: 9993;
}


/* COMBOS — destaque visual diferenciador dos avulsos */
.combo {
      border: 1px solid rgba(240, 192, 0, 0.35) !important;
        background: linear-gradient(180deg, rgba(240,192,0,0.06) 0%, rgba(13,13,13,1) 60%) !important;
          position: relative;
            overflow: visible;
}
.combo::before {
      content: 'COMBO';
        position: absolute;
          top: -10px;
            left: 16px;
              background: var(--gold);
                color: #000;
                  font-family: 'Oswald', sans-serif;
                    font-weight: 600;
                      font-size: 0.7rem;
                        letter-spacing: 0.12em;
                          padding: 3px 10px;
                            border-radius: 3px;
                              z-index: 2;
}
.combo-name {
      color: var(--gold-bright) !important;
}
.combo-was {
      text-decoration: line-through;
        color: var(--text-tertiary);
          font-size: 0.95rem;
}
.combo-desc {
      color: var(--text-primary) !important;
        font-weight: 500;
}
.combo:hover {
      border-color: rgba(240, 192, 0, 0.6) !important;
        transform: translateY(-2px);
          transition: all 0.25s ease;
}
.combo.featured,
.combo:has(.combo-badge) {
      border-color: var(--gold) !important;
        box-shadow: 0 0 0 1px var(--gold), 0 8px 32px rgba(240,192,0,0.15);
}


/* ============================================
   PREMIUM POLISH — microanimações & refinamento
      ============================================ */
      
      /* Smooth scroll global */
      html { scroll-behavior: smooth; }
      
      /* Selection com cor da marca */
      ::selection { background: var(--gold); color: #000; }
      ::-moz-selection { background: var(--gold); color: #000; }
      
      /* Scrollbar refinada (Chrome/Edge) */
      ::-webkit-scrollbar { width: 10px; height: 10px; }
      ::-webkit-scrollbar-track { background: #0a0a0a; }
      ::-webkit-scrollbar-thumb { background: #1f1f1f; border-radius: 6px; border: 2px solid #0a0a0a; }
      ::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
      
      /* Focus visible refinado para acessibilidade premium */
      a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
            outline: 2px solid var(--gold);
              outline-offset: 3px;
                border-radius: 4px;
                  transition: outline-offset 0.15s ease;
      }
      
      /* ============================================
         HEADER — micro polimento
            ============================================ */
            .site-header, header, .header, nav.navbar {
                  backdrop-filter: blur(12px) saturate(140%);
                    -webkit-backdrop-filter: blur(12px) saturate(140%);
                      transition: background-color 0.3s ease, box-shadow 0.3s ease;
            }
            
            /* ============================================
               BOTÕES — microanimação consistente
                  ============================================ */
                  .btn, button, .plan-cta, .single-cta, .combo-cta, .cta-primary, .cta-secondary {
                        transition: transform 0.18s cubic-bezier(.2,.8,.2,1),
                                      box-shadow 0.25s ease,
                                                    background-color 0.2s ease,
                                                                  color 0.2s ease,
                                                                                border-color 0.2s ease;
                                                                                  will-change: transform;
                  }
                  .btn:hover, button:hover, .plan-cta:hover, .single-cta:hover, .combo-cta:hover {
                        transform: translateY(-2px);
                          box-shadow: 0 10px 24px -8px rgba(0,0,0,0.6);
                  }
                  .btn:active, button:active, .plan-cta:active, .single-cta:active, .combo-cta:active {
                        transform: translateY(0) scale(0.98);
                          transition-duration: 0.08s;
                  }
                  
                  /* CTA primário com brilho sutil ao hover */
                  .cta-primary:hover, a[href*='wa.me']:hover, a[href*='whatsapp']:hover {
                        box-shadow: 0 0 0 1px var(--gold-bright), 0 12px 32px -8px rgba(240,192,0,0.5);
                  }
                  
                  /* ============================================
                     CARDS — lift + shimmer ao hover
                        ============================================ */
                        .plan, .single, .combo {
                              transition: transform 0.3s cubic-bezier(.2,.8,.2,1),
                                            border-color 0.25s ease,
                                                          box-shadow 0.3s ease,
                                                                        background-color 0.25s ease;
                                                                          will-change: transform;
                        }
                        .plan:hover, .single:hover {
                              transform: translateY(-4px);
                                border-color: rgba(255,255,255,0.12) !important;
                                  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.7);
                        }
                        .combo:hover {
                              transform: translateY(-4px);
                                box-shadow: 0 16px 40px -8px rgba(240,192,0,0.18);
                        }
                        
                        /* ============================================
                           PREÇOS — entrada animada
                              ============================================ */
                              .plan-price, .single-price, .combo-price {
                                    transition: transform 0.25s ease, color 0.2s ease;
                              }
                              .plan:hover .plan-price,
                              .single:hover .single-price,
                              .combo:hover .combo-price {
                                    transform: scale(1.04);
                              }
                              
                              /* ============================================
                                 LINKS DE NAVEGAÇÃO — underline animado
                                    ============================================ */
                                    nav a, .nav-link, .menu a {
                                          position: relative;
                                            transition: color 0.2s ease;
                                    }
                                    nav a::after, .nav-link::after {
                                          content: '';
                                            position: absolute;
                                              left: 50%;
                                                bottom: -4px;
                                                  width: 0;
                                                    height: 2px;
                                                      background: var(--gold);
                                                        transition: width 0.25s ease, left 0.25s ease;
                                    }
                                    nav a:hover::after, .nav-link:hover::after {
                                          width: 100%;
                                            left: 0;
                                    }
                                    
                                    /* ============================================
                                       FAQ — transição suave
                                          ============================================ */
                                          .faq-item {
                                                transition: border-color 0.25s ease, background-color 0.25s ease;
                                          }
                                          .faq-q {
                                                transition: color 0.2s ease;
                                                  cursor: pointer;
                                          }
                                          .faq-item:hover .faq-q { color: var(--gold-bright); }
                                          .faq-a {
                                                transition: max-height 0.4s cubic-bezier(.2,.8,.2,1), padding 0.3s ease, opacity 0.3s ease;
                                                  opacity: 0;
                                          }
                                          .faq-item.active .faq-a { opacity: 1; }
                                          .faq-toggle, .faq-icon {
                                                transition: transform 0.3s cubic-bezier(.2,.8,.2,1);
                                          }
                                          .faq-item.active .faq-toggle, .faq-item.active .faq-icon {
                                                transform: rotate(45deg);
                                          }
                                          
                                          /* ============================================
                                             IMAGENS — fade-in suave
                                                ============================================ */
                                                img {
                                                      transition: opacity 0.3s ease, filter 0.3s ease;
                                                }
                                                img[loading='lazy'] { opacity: 0; }
                                                img[loading='lazy'].loaded, img.loaded { opacity: 1; }
                                                
                                                /* ============================================
                                                   REVEAL — entrada mais refinada
                                                      ============================================ */
                                                      .reveal {
                                                            opacity: 0;
                                                              transform: translateY(24px);
                                                                transition: opacity 0.7s cubic-bezier(.2,.8,.2,1),
                                                                              transform 0.7s cubic-bezier(.2,.8,.2,1);
                                                      }
                                                      .reveal.visible {
                                                            opacity: 1;
                                                              transform: translateY(0);
                                                      }
                                                      
                                                      /* Stagger sequencial entre cards-irmãos */
                                                      .reveal.visible:nth-child(1) { transition-delay: 0s; }
                                                      .reveal.visible:nth-child(2) { transition-delay: 0.08s; }
                                                      .reveal.visible:nth-child(3) { transition-delay: 0.16s; }
                                                      .reveal.visible:nth-child(4) { transition-delay: 0.24s; }
                                                      
                                                      /* ============================================
                                                         BADGES — pulso sutil em “MELHOR CUSTO”
                                                            ============================================ */
                                                            @keyframes gentlePulse {
                                                                  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(240,192,0,0.4); }
                                                                    50% { transform: scale(1.03); box-shadow: 0 0 0 6px rgba(240,192,0,0); }
                                                            }
                                                            .badge, .combo-badge, [class*='melhor-custo'], [class*='best-value'] {
                                                                  animation: gentlePulse 2.8s ease-in-out infinite;
                                                            }
                                                            
                                                            /* ============================================
                                                               WHATSAPP FLOAT — polido
                                                                  ============================================ */
                                                                  .whatsapp-float, .wa-float, a[href*='wa.me']:not(.cta-primary):not([class*='btn']) {
                                                                        transition: transform 0.25s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
                                                                  }
                                                                  .whatsapp-float:hover, .wa-float:hover {
                                                                        transform: scale(1.08) rotate(-4deg);
                                                                          box-shadow: 0 12px 32px -8px rgba(37, 211, 102, 0.6);
                                                                  }
                                                                  
                                                                  /* ============================================
                                                                     HERO HEADLINE — entrada cinemática
                                                                        ============================================ */
                                                                        @keyframes heroFadeUp {
                                                                              from { opacity: 0; transform: translateY(16px); filter: blur(6px); }
                                                                                to { opacity: 1; transform: translateY(0); filter: blur(0); }
                                                                        }
                                                                        .hero h1, .hero-title, h1.hero {
                                                                              animation: heroFadeUp 0.9s cubic-bezier(.2,.8,.2,1) both;
                                                                        }
                                                                        .hero p, .hero-sub, .hero-subtitle {
                                                                              animation: heroFadeUp 0.9s cubic-bezier(.2,.8,.2,1) 0.18s both;
                                                                        }
                                                                        .hero .btn, .hero button, .hero .cta-primary {
                                                                              animation: heroFadeUp 0.9s cubic-bezier(.2,.8,.2,1) 0.32s both;
                                                                        }
                                                                        
                                                                        /* ============================================
                                                                           CART OVERLAY — backdrop refinado
                                                                              ============================================ */
                                                                              .cart-overlay {
                                                                                    backdrop-filter: blur(8px);
                                                                                      -webkit-backdrop-filter: blur(8px);
                                                                                        transition: opacity 0.3s ease, backdrop-filter 0.3s ease;
                                                                              }
                                                                              .cart-drawer, .cart-panel {
                                                                                    transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.3s ease;
                                                                              }
                                                                              
                                                                              /* ============================================
                                                                                 FOOTER LINKS — micro hover
                                                                                    ============================================ */
                                                                                    footer a, .footer a {
                                                                                          transition: color 0.2s ease, transform 0.2s ease;
                                                                                            display: inline-block;
                                                                                    }
                                                                                    footer a:hover, .footer a:hover {
                                                                                          color: var(--gold-bright) !important;
                                                                                            transform: translateX(2px);
                                                                                    }
                                                                                    
                                                                                    /* ============================================
                                                                                       COMBO — shimmer no card Ouro (sutil)
                                                                                          ============================================ */
                                                                                          @keyframes goldShimmer {
                                                                                                0% { background-position: -200% 0; }
                                                                                                  100% { background-position: 200% 0; }
                                                                                          }
                                                                                          .combo:has(.combo-badge) .combo-name,
                                                                                          .combo.featured .combo-name {
                                                                                                background: linear-gradient(90deg, var(--gold) 0%, #fff5b8 50%, var(--gold) 100%);
                                                                                                  background-size: 200% 100%;
                                                                                                    -webkit-background-clip: text;
                                                                                                      background-clip: text;
                                                                                                        -webkit-text-fill-color: transparent;
                                                                                                          animation: goldShimmer 3.5s linear infinite;
                                                                                          }
                                                                                          
                                                                                          /* ============================================
                                                                                             REDUÇÃO DE MOTION — acessibilidade
                                                                                                ============================================ */
                                                                                                @media (prefers-reduced-motion: reduce) {
                                                                                                      *, *::before, *::after {
                                                                                                              animation-duration: 0.001s !important;
                                                                                                                  animation-iteration-count: 1 !important;
                                                                                                                      transition-duration: 0.001s !important;
                                                                                                                          scroll-behavior: auto !important;
                                                                                                      }
                                                                                                }
                                                                                                
                                                                                                      }
                                                                                                }
                                                                                          }
                                                                                          }
                                                                                    }
                                                                                    }
                                                                              }
                                                                              }
                                                                        }
                                                                        }
                                                                        }
                                                                        }
                                                                  }
                                                                  }
                                                            }
                                                            }
                                                      }
                                                      }
                                                }
                                          }
                                          }
                                          }
                                          }
                                          }
                                    }
                                    }
                                    }
                              }
                              }
                        }
                        }
                        }
                  }
                  }
                  }
                  }
            }
      }
}
}
}
}
}
}
}

/* ═══════════════════════════════════════════════════════
   PLAN INCLUDES — Badge "Inclui Painel Exclusivo" nos planos
   ═══════════════════════════════════════════════════════ */
.plan-includes {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0 1.25rem;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, rgba(240,192,0,0.08), rgba(240,192,0,0.03));
    border: 1px solid rgba(240,192,0,0.25);
    border-radius: 10px;
    font-size: 0.82rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}
.plan-includes svg {
    flex-shrink: 0;
}
.plan-includes-link {
    color: var(--gold-bright);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px dashed rgba(255,204,0,0.35);
    transition: border-color 0.2s ease;
}
.plan-includes-link:hover {
    border-bottom-color: var(--gold-bright);
}
.plan:hover .plan-includes {
    border-color: rgba(240,192,0,0.45);
    background: linear-gradient(135deg, rgba(240,192,0,0.12), rgba(240,192,0,0.05));
}
.plan.highlight .plan-includes {
    background: linear-gradient(135deg, rgba(240,192,0,0.15), rgba(240,192,0,0.06));
    border-color: rgba(240,192,0,0.4);
}

/* ═══════════════════════════════════════════════════════
   PAINEL INCLUDED BADGE — conector visual painel ↔ planos
   ═══════════════════════════════════════════════════════ */
.painel-included-badge {
    margin: 0.75rem auto 1.25rem;
    text-align: center;
}
.painel-included-badge a {
    display: inline-block;
    padding: 0.5rem 1.1rem;
    background: linear-gradient(135deg, rgba(240,192,0,0.12), rgba(240,192,0,0.04));
    border: 1px solid rgba(240,192,0,0.3);
    border-radius: 999px;
    color: var(--gold-bright);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: all 0.25s ease;
}
.painel-included-badge a:hover {
    background: linear-gradient(135deg, rgba(240,192,0,0.2), rgba(240,192,0,0.08));
    border-color: rgba(240,192,0,0.55);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(240,192,0,0.15);
}


/* ═══════════════════════════════════════════════════════
   FERRAMENTAS GRÁTIS — Seção dedicada na landing
   ═══════════════════════════════════════════════════════ */
.section-tools {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-raised) 100%);
}
.tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin: 3rem 0 2rem;
}
@media (max-width: 1100px) {
    .tools-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .tools-grid { grid-template-columns: 1fr; }
}
.tool-card-lp {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.75rem 1.5rem 1.5rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.tool-card-lp::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.35s ease;
}
.tool-card-lp:hover {
    transform: translateY(-6px);
    border-color: rgba(240,192,0,0.35);
    background: var(--bg-card-hover);
    box-shadow: 0 12px 36px rgba(0,0,0,0.4), 0 0 0 1px rgba(240,192,0,0.08);
}
.tool-card-lp:hover::before {
    opacity: 1;
}
.tool-lp-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(240,192,0,0.15), rgba(240,192,0,0.05));
    border: 1px solid rgba(240,192,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-bright);
    margin-bottom: 1.25rem;
    transition: all 0.35s ease;
}
.tool-card-lp:hover .tool-lp-icon {
    background: linear-gradient(135deg, rgba(240,192,0,0.25), rgba(240,192,0,0.1));
    border-color: rgba(240,192,0,0.5);
    transform: scale(1.06) rotate(-2deg);
}
.tool-lp-tags {
    display: flex;
    gap: 0.35rem;
    margin-bottom: 0.65rem;
    flex-wrap: wrap;
}
.tool-lp-tag {
    display: inline-block;
    padding: 0.18rem 0.55rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 999px;
    font-size: 0.66rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-tertiary);
}
.tool-lp-tag-ia {
    background: linear-gradient(135deg, rgba(240,192,0,0.18), rgba(240,192,0,0.06));
    border-color: rgba(240,192,0,0.4);
    color: var(--gold-bright);
}
.tool-lp-name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.6rem;
    line-height: 1.2;
    letter-spacing: 0.01em;
}
.tool-lp-desc {
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-secondary);
    margin: 0;
    flex: 1;
}
.tools-note {
    text-align: center;
    color: var(--text-tertiary);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}
.tools-note a {
    color: var(--gold-bright);
    text-decoration: none;
    border-bottom: 1px dashed rgba(255,204,0,0.35);
    transition: border-color 0.2s ease;
}
.tools-note a:hover {
    border-bottom-color: var(--gold-bright);
}


/* ============================================================
   FIX RESPONSIVO MOBILE — botões de plano + flutuantes
   Adicionado para resolver sobreposição em telas estreitas
   ============================================================ */

/* (1) Em mobile, igualar o destaque dos botões "ADICIONAR".
   No desktop o secundário tem hierarquia visual ao lado do primário,
   mas em coluna única no mobile ele fica fantasma. */
@media (max-width: 768px) {
    .plan-cta.btn-secondary,
    .plan-cta.btn,
    .single-cta,
    .combo-cta {
        background: var(--gold) !important;
        color: var(--bg, #0a0a0a) !important;
        border: 1px solid var(--gold) !important;
        font-weight: 700 !important;
        padding: 1rem 1.5rem !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
    }
    .plan-cta.btn-secondary:hover,
    .plan-cta.btn:hover {
        background: var(--gold-dark, #d4a800) !important;
        border-color: var(--gold-dark, #d4a800) !important;
    }
    /* Diferenciar o destaque do plano "MAIS VENDIDO" mantendo um glow */
    .plan.highlight .plan-cta {
        box-shadow: 0 4px 18px rgba(240, 192, 0, 0.35);
    }
}

/* (2) Reposicionar e empilhar os botões flutuantes em mobile.
   Carrinho em cima, WhatsApp embaixo, ambos menores e mais
   próximos da borda para não invadir os cards. */
@media (max-width: 768px) {
    .cart-float {
        width: 44px !important;
        height: 44px !important;
        right: 0.85rem !important;
        bottom: 4.5rem !important;
    }
    .cart-float svg {
        width: 18px !important;
        height: 18px !important;
    }
    .cart-float #cartCount {
        width: 18px !important;
        height: 18px !important;
        font-size: 0.55rem !important;
    }
    .wa-float {
        width: 44px !important;
        height: 44px !important;
        right: 0.85rem !important;
        bottom: 1rem !important;
    }
    /* Espaço extra ao final da seção planos para que o último CTA
       nunca fique embaixo do carrinho flutuante quando rolar */
    #planos {
        padding-bottom: 6rem !important;
    }
    /* Mesmo respiro para combos e avulsos, que também têm CTA no fim */
    #avulso, .combos-section, .singles-section {
        padding-bottom: 6rem !important;
    }
}

/* (3) Sidebar do carrinho: garantir que ocupe a tela toda em
   telas muito pequenas (≤420px) sem cortes laterais, e que tenha
   safe-area inferior em iPhones com notch */
@media (max-width: 480px) {
    .cart-sidebar {
        width: 100vw !important;
        max-width: 100vw !important;
    }
    .cart-checkout {
        padding-bottom: env(safe-area-inset-bottom, 0) !important;
    }
}

/* (4) Limpeza: o z-index 9992/9993 dos CTAs era um patch contra um
   bug antigo do overlay. Mantemos um z-index moderado só nos
   botões para garantir clicabilidade, sem poluir o stacking context */
.plan-cta, .single-cta, .combo-cta {
    position: relative;
    z-index: 2;
}
body:has(.cart-overlay.open) .plan,
body:has(.cart-overlay.open) .single,
body:has(.cart-overlay.open) .combo {
    z-index: auto;
}


/* =========================================================
   MOBILE-FIRST CONVERSION ELEMENTS
   Classes dedicadas (sem inline) para os elementos novos.
   Desktop-first com refinamento mobile.
   ========================================================= */

/* Hero trust line (✓ Sem fidelidade etc) */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 0.78rem;
    color: var(--text-tertiary);
    margin-top: 0.85rem;
    align-items: center;
}
.hero-trust b {
    color: var(--gold);
    font-weight: 700;
    margin-right: 0.15rem;
}

/* Hero stats inline (50.4M / 10.8M / 57,5%) */
.hero-stats-inline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: 480px;
}
.hsi-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.hsi-label {
    font-size: 0.7rem;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}

/* Hero price hint */
.hero-price-hint {
    font-size: 0.82rem;
    color: var(--text-tertiary);
    margin-bottom: 1rem;
}
.hero-price-hint strong { color: var(--gold); }

/* Plan segment (Seu momento: chips) */
.plan-segment {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    align-items: center;
}
.seg-chip {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--text-secondary);
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.78rem;
    font-family: inherit;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.seg-chip:hover,
.seg-chip:focus-visible {
    border-color: var(--gold);
    color: var(--gold);
    outline: none;
}

/* Plan savings (Economize R$X/mês) */
.plan-savings-real {
    font-size: 0.78rem;
    color: var(--gold);
    margin-top: 0.4rem;
    font-weight: 600;
}

/* Plan FAQ (Dúvidas comuns deste plano) */
.plan-faq {
    margin: 0.85rem 0 0;
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 0.85rem;
}
.plan-faq summary {
    cursor: pointer;
    color: var(--text-secondary);
    list-style: none;
    padding: 0.5rem 0;
    position: relative;
    padding-right: 1.5rem;
    font-weight: 500;
}
.plan-faq summary::-webkit-details-marker { display: none; }
.plan-faq summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}
.plan-faq[open] summary::after { content: '−'; }
.plan-faq-body {
    margin-top: 0.6rem;
    color: var(--text-secondary);
    line-height: 1.55;
}
.plan-faq-p {
    margin: 0.5rem 0;
    font-size: 0.78rem;
}
.plan-faq-p strong { color: var(--gold); display: block; margin-bottom: 0.15rem; }

/* =========================================================
   MOBILE REFINEMENTS
   ========================================================= */
@media (max-width: 768px) {
    .hero-trust {
        gap: 0.4rem 0.85rem;
        font-size: 0.72rem;
    }
    .hero-stats-inline {
        gap: 0.5rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    .hsi-value { font-size: 1.4rem; }
    .hsi-label { font-size: 0.6rem; letter-spacing: 0.04em; }
    .plan-segment {
        gap: 0.4rem;
        padding: 0 0.5rem;
    }
    .plan-segment > span:first-child {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 0.25rem;
    }
    .seg-chip {
        min-height: 40px;
        padding: 0.55rem 0.9rem;
    }
    .plan-faq summary {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    /* Tap target acessibilidade */
    .nav-mobile a { min-height: 48px; display: flex; align-items: center; }
}

/* iPhone SE / muito estreito */
@media (max-width: 380px) {
    .hsi-value { font-size: 1.2rem; }
    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .seg-chip { flex: 1 1 100%; text-align: center; }
}

/* Anti-overflow universal */
html { scroll-padding-top: 70px; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }


/* =========================================================
   POLISH PASS 2 - tap targets, hambúrguer, classes utilitárias
   ========================================================= */

/* Utility classes substituindo inline styles */
.text-muted { color: var(--text-secondary); }
.gold { color: var(--gold); }
.check { color: var(--gold); font-weight: 700; }
.link-gold {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid rgba(240,192,0,0.3);
}
.shine-host { position: relative; overflow: hidden; }

/* Nav-CTA secondary (Área do artista) */
.nav-cta-secondary {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    margin-right: 0.5rem;
}

/* Tap target acessibilidade - desktop */
.nav-links a {
    padding: 0.6rem 0.85rem;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
}

.nav-cta {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
}

/* Hambúrguer animado: vira X quando aberto */
.nav-hamburger span {
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Overlay escuro do menu mobile */
.nav-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(2px);
    z-index: 998;
    animation: fadeIn 0.2s ease;
}
.nav-mobile-overlay.open { display: block; }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

/* Menu mobile aprimorado */
.nav-mobile {
    z-index: 999;
}
.nav-mobile a {
    min-height: 48px;
    display: flex;
    align-items: center;
    transition: background 0.15s, color 0.15s;
}
.nav-mobile a:hover,
.nav-mobile a:focus-visible {
    background: rgba(240,192,0,0.08);
    color: var(--gold);
    outline: none;
}

/* Lock scroll quando menu aberto */
body.menu-locked {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Tap targets ≥ 44px em mobile pra TODA navegação */
@media (max-width: 768px) {
    .nav-cta, .nav-cta-secondary {
        min-height: 44px;
        padding: 0.7rem 1rem !important;
    }
    .nav-brand { min-height: 44px; display: inline-flex; align-items: center; }
    .seg-chip {
        min-height: 44px;
        padding: 0.7rem 1.1rem;
    }
    /* Texto mínimo legível: 12px */
    .nav-cta { font-size: 0.7rem; }
}

/* Hero h1: remover <br> em qualquer mobile (não só ≤768) */
@media (max-width: 480px) {
    .hero h1 br { display: none; }
}

/* Safe area iOS para botões flutuantes (home indicator) */
.wa-float, .cart-float {
    bottom: calc(1rem + env(safe-area-inset-bottom, 0)) !important;
}
@media (max-width: 768px) {
    .wa-float {
        bottom: calc(1rem + env(safe-area-inset-bottom, 0)) !important;
    }
    .cart-float {
        bottom: calc(4.5rem + env(safe-area-inset-bottom, 0)) !important;
    }
}

/* iOS Safari: 100vh real (com barra do navegador) */
.hero { min-height: 100svh; }
@supports not (height: 100svh) {
    .hero { min-height: 100vh; }
}

/* Tap highlight removido + active feedback melhor */
a, button, summary, .seg-chip, .nav-cta, .plan-cta {
    -webkit-tap-highlight-color: transparent;
}
a:active, button:active, .seg-chip:active, .nav-cta:active {
    transform: scale(0.98);
    transition: transform 0.1s;
}

/* Tools-grid: padronizar breakpoints */
@media (max-width: 1024px) {
    .tools-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
    .tools-grid { grid-template-columns: 1fr !important; }
}

/* Reduzir motion pra usuários sensíveis */
@media (prefers-reduced-motion: reduce) {
    .nav-hamburger span,
    .nav-mobile-overlay,
    a:active, button:active {
        transition: none !important;
        animation: none !important;
    }
}

/* Focus visible melhor pra teclado */
a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 4px;
}


/* ============================================
   MOBILE HERO COMPACTO - chega no preço rápido
   ============================================ */
@media (max-width: 768px) {
  /* Esconde stats grandes do hero no mobile (50.4M / 10.8M / 57,5%) */
  .hero .hero-stats-inline { display: none !important; }
  /* Esconde selos de confiança no mobile - eles aparecem mais abaixo */
  .hero .hero-trust { display: none !important; }
  /* Diminui margem do preço pra ficar colado no CTA */
  .hero .hero-price-hint { margin-top: 14px; margin-bottom: 14px; }
  /* H1 mais compacto pra caber melhor */
  .hero h1 { margin-bottom: 12px; }
  .hero .hero-desc { margin-bottom: 16px; }
}


/* ════════════════════════════════════════════════════════════════
   PREMIUM POLISH PASS 3 — refinamento visual completo
   • Backgrounds com gradiente sutil (não mais preto chapado)
   • Cards com glassmorphism e hover lift
   • Hero mobile centralizado e proporcional
   • Tipografia refinada (letter-spacing, line-heights)
   • Ícones com fundo glow dourado
   • Divisores premium
   ════════════════════════════════════════════════════════════════ */

/* ── Background global: profundidade sutil ── */
body {
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(255,193,7,0.06), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 30%, rgba(255,193,7,0.03), transparent 70%),
    radial-gradient(ellipse 60% 40% at 0% 70%, rgba(255,193,7,0.025), transparent 70%),
    #0a0a0a;
  background-attachment: fixed;
}

/* Section-alt: levemente mais clara para alternância visual */
.section.section-alt {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.015) 0%, rgba(255,255,255,0.025) 50%, rgba(255,255,255,0.015) 100%),
    transparent;
  position: relative;
}
.section.section-alt::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,193,7,0.25), transparent);
  pointer-events: none;
}

/* ── Section titles: glow dourado sutil ── */
.section-title {
  text-shadow: 0 2px 30px rgba(255,193,7,0.08);
  letter-spacing: -0.01em;
}
.section-eyebrow {
  font-weight: 700 !important;
  letter-spacing: 0.18em !important;
  font-size: 11px !important;
  color: var(--gold, #FFC107) !important;
  opacity: 0.9;
  text-shadow: 0 0 20px rgba(255,193,7,0.3);
}

/* ── Cards genéricos: glassmorphism premium ── */
.benefit-card,
.como-step,
.painel-features .pf-feature,
.pf-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 16px !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s,
              box-shadow 0.3s;
}
.benefit-card::before,
.como-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,193,7,0.4), transparent);
  opacity: 0.6;
}
.benefit-card:hover,
.como-step:hover,
.pf-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,193,7,0.25) !important;
  box-shadow:
    0 20px 40px -15px rgba(0,0,0,0.5),
    0 0 30px -10px rgba(255,193,7,0.15);
}

/* ── Ícones dos benefícios: fundo glow premium ── */
.benefit-icon,
.como-step-num,
.pf-icon {
  position: relative;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 56px !important;
  height: 56px !important;
  border-radius: 14px !important;
  background:
    linear-gradient(135deg, rgba(255,193,7,0.15) 0%, rgba(255,193,7,0.05) 100%) !important;
  border: 1px solid rgba(255,193,7,0.25);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.1),
    0 4px 20px -5px rgba(255,193,7,0.25);
  font-size: 24px !important;
  margin-bottom: 16px;
}
.benefit-icon::after,
.como-step-num::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 18px;
  background: radial-gradient(circle, rgba(255,193,7,0.2), transparent 70%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s;
}
.benefit-card:hover .benefit-icon::after,
.como-step:hover .como-step-num::after {
  opacity: 1;
}

/* ── Plan cards: brilho extra ── */
.plan-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 20px !important;
  position: relative;
  overflow: hidden;
}
.plan-card.featured,
.plan-card.popular {
  background:
    linear-gradient(145deg, rgba(255,193,7,0.08) 0%, rgba(255,193,7,0.02) 100%) !important;
  border: 1px solid rgba(255,193,7,0.35) !important;
  box-shadow:
    0 0 0 1px rgba(255,193,7,0.1),
    0 30px 60px -20px rgba(255,193,7,0.2),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* ── Buttons primary: brilho premium ── */
.btn-primary {
  background: linear-gradient(135deg, #FFD54F 0%, #FFC107 50%, #FFA000 100%) !important;
  box-shadow:
    0 4px 14px -2px rgba(255,193,7,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3) !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px -4px rgba(255,193,7,0.55),
    inset 0 1px 0 rgba(255,255,255,0.4) !important;
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #1DA851 100%) !important;
  box-shadow:
    0 4px 14px -2px rgba(37,211,102,0.35),
    inset 0 1px 0 rgba(255,255,255,0.2) !important;
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px -4px rgba(37,211,102,0.5),
    inset 0 1px 0 rgba(255,255,255,0.3) !important;
}

/* ── Hero refinements ── */
.hero {
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(255,193,7,0.08), transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255,193,7,0.04), transparent 70%);
}
.hero h1 {
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero h1 em {
  background: linear-gradient(135deg, #FFE082 0%, #FFC107 50%, #FF8F00 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(255,193,7,0.3);
  font-style: normal;
  display: inline-block;
}

/* ── Hero price hint: pílula premium ── */
.hero-price-hint {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(255,193,7,0.08), rgba(255,193,7,0.03));
  border: 1px solid rgba(255,193,7,0.2);
  border-radius: 100px;
  font-size: 0.92rem;
  backdrop-filter: blur(8px);
}

/* ── FAQ: refinamento ── */
.faq-item, .plan-faq, .accordion-item {
  background: rgba(255,255,255,0.025) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 12px !important;
  transition: all 0.25s ease;
}
.faq-item:hover, .plan-faq:hover {
  border-color: rgba(255,193,7,0.2) !important;
  background: rgba(255,255,255,0.04) !important;
}

/* ── Tools grid: refinement ── */
.tools-grid .pf-card {
  text-align: center;
  padding: 24px 16px !important;
}
.tools-grid .pf-icon {
  margin: 0 auto 12px !important;
}
.tools-grid .pf-name {
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.tools-grid .pf-tag {
  display: inline-block;
  padding: 3px 10px;
  background: linear-gradient(135deg, rgba(255,193,7,0.2), rgba(255,193,7,0.08));
  border: 1px solid rgba(255,193,7,0.3);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold, #FFC107);
  margin-top: 8px;
}

/* ── Painel showcase: borda premium ── */
.painel-showcase {
  background:
    linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)) !important;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow:
    0 20px 60px -20px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ════════════════════════════════════════
   MOBILE-SPECIFIC PREMIUM REFINEMENTS
   ════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero: centralizar, padding lateral, h1 menor pra caber */
  .hero { text-align: center; padding: 40px 20px !important; }
  .hero-inner { max-width: 100% !important; }
  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
    line-height: 1.08 !important;
    margin-bottom: 14px !important;
  }
  .hero h1 br { display: none !important; }
  .hero-desc {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    color: rgba(237,237,234,0.78) !important;
    max-width: 360px;
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .hero-price-hint {
    margin: 18px auto !important;
    text-align: center;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto !important;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  
  /* Section padding: respira */
  .section { padding: 56px 0 !important; }
  .section .container { padding: 0 20px !important; }
  
  /* Section title: tamanho refinado */
  .section-title {
    font-size: clamp(1.6rem, 6.5vw, 2rem) !important;
    line-height: 1.15 !important;
    margin-bottom: 20px !important;
  }
  .section-eyebrow { font-size: 10.5px !important; margin-bottom: 10px !important; }
  
  /* Cards: 1 coluna, padding generoso, ícones centralizados */
  .benefits-grid,
  .como-grid,
  .tools-grid,
  .plans-grid,
  .painel-features {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    max-width: 420px !important;
    margin: 0 auto !important;
  }
  .benefit-card,
  .como-step,
  .pf-card,
  .pf-feature {
    padding: 24px 20px !important;
    text-align: center;
  }
  .benefit-icon,
  .como-step-num,
  .pf-icon {
    margin: 0 auto 14px !important;
  }
  .benefit-title,
  .como-step-title,
  .pf-name {
    font-size: 1.05rem !important;
    line-height: 1.3 !important;
    margin-bottom: 8px !important;
  }
  .benefit-text,
  .como-step-desc,
  .pf-desc {
    font-size: 0.88rem !important;
    line-height: 1.55 !important;
    color: rgba(237,237,234,0.7) !important;
  }
  
  /* Plan cards: full width premium */
  .plan-card { padding: 28px 22px !important; border-radius: 18px !important; }
  
  /* Painel showcase: borda menor */
  .painel-showcase { border-radius: 14px !important; }
  
  /* CTAs aumentadas pra clicar fácil */
  .btn { min-height: 48px; font-weight: 700 !important; }
}

@media (max-width: 480px) {
  .hero { padding: 32px 16px !important; }
  .hero h1 { font-size: clamp(1.8rem, 8.5vw, 2.4rem) !important; }
  .hero-desc { font-size: 0.92rem !important; }
  .section { padding: 44px 0 !important; }
  .section .container { padding: 0 16px !important; }
  .section-title { font-size: clamp(1.5rem, 6.2vw, 1.85rem) !important; }
  .benefit-card, .como-step, .pf-card, .pf-feature { padding: 22px 18px !important; }
}

/* ── Smooth scroll & polish ── */
html { scroll-behavior: smooth; }
* { -webkit-tap-highlight-color: transparent; }
*:focus-visible {
  outline: 2px solid rgba(255,193,7,0.6);
  outline-offset: 2px;
  border-radius: 4px;
}


/* ════════════════════════════════════════════════════════════════
   PREMIUM POLISH PASS 4 — singles, combos, FAQ, hero layout
   ════════════════════════════════════════════════════════════════ */

/* ── Singles (avulsos) ── */
.single {
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  border-radius: 16px !important;
  padding: 24px 18px !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}
.single::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,193,7,0.4), transparent);
}
.single:hover {
  transform: translateY(-3px);
  border-color: rgba(255,193,7,0.25) !important;
  box-shadow: 0 16px 40px -12px rgba(255,193,7,0.15);
}
.single-icon {
  width: 52px !important;
  height: 52px !important;
  margin: 0 auto 12px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,193,7,0.15), rgba(255,193,7,0.05)) !important;
  border: 1px solid rgba(255,193,7,0.25);
  border-radius: 12px;
  color: var(--gold, #FFC107);
}
.single-name {
  font-weight: 700 !important;
  letter-spacing: -0.01em;
}
.single-price {
  background: linear-gradient(135deg, #FFE082, #FFC107, #FF8F00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800 !important;
}
.single-cta {
  background: linear-gradient(135deg, rgba(255,193,7,0.15), rgba(255,193,7,0.05)) !important;
  border: 1px solid rgba(255,193,7,0.4) !important;
  color: var(--gold, #FFC107) !important;
  border-radius: 10px !important;
  padding: 10px 18px !important;
  font-weight: 700 !important;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  cursor: pointer;
}
.single-cta:hover {
  background: linear-gradient(135deg, rgba(255,193,7,0.25), rgba(255,193,7,0.1)) !important;
  border-color: rgba(255,193,7,0.6) !important;
  box-shadow: 0 4px 16px -4px rgba(255,193,7,0.4);
}

/* ── Combos: cards premium dourados ── */
.combo {
  background:
    linear-gradient(145deg, rgba(255,193,7,0.08) 0%, rgba(255,193,7,0.02) 100%) !important;
  border: 1px solid rgba(255,193,7,0.3) !important;
  border-radius: 16px !important;
  padding: 24px 20px !important;
  position: relative;
  overflow: hidden;
  text-align: center;
  transition: all 0.3s ease;
}
.combo:hover {
  transform: translateY(-3px);
  border-color: rgba(255,193,7,0.55) !important;
  box-shadow: 0 20px 50px -15px rgba(255,193,7,0.3);
}
.combo-badge {
  display: inline-block !important;
  padding: 4px 12px !important;
  background: linear-gradient(135deg, #FFC107, #FF8F00) !important;
  color: #0a0a0a !important;
  font-weight: 800 !important;
  font-size: 10px !important;
  letter-spacing: 0.15em !important;
  border-radius: 100px !important;
  box-shadow: 0 4px 12px -2px rgba(255,193,7,0.4);
  margin-bottom: 12px;
}
.combo-name {
  font-weight: 800 !important;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #FFE082, #FFC107);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.combo-was {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 0.9rem !important;
}
.combo-price {
  background: linear-gradient(135deg, #FFE082, #FFC107, #FF8F00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800 !important;
  font-size: 2rem !important;
}
.combo-cta {
  background: linear-gradient(135deg, #FFD54F, #FFC107, #FFA000) !important;
  color: #0a0a0a !important;
  border: 0 !important;
  border-radius: 10px !important;
  padding: 12px 22px !important;
  font-weight: 800 !important;
  letter-spacing: 0.05em;
  box-shadow:
    0 4px 14px -2px rgba(255,193,7,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.25s ease;
}
.combo-cta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px -4px rgba(255,193,7,0.55),
    inset 0 1px 0 rgba(255,255,255,0.4);
}

/* ── FAQ items premium ── */
.plan-faq, .faq-item {
  background: linear-gradient(145deg, rgba(255,255,255,0.025), rgba(255,255,255,0.005)) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  border-radius: 14px !important;
  padding: 0 !important;
  margin-bottom: 10px !important;
  overflow: hidden;
  transition: all 0.25s ease;
}
.plan-faq:hover, .faq-item:hover {
  border-color: rgba(255,193,7,0.2) !important;
  background: linear-gradient(145deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)) !important;
}
.plan-faq-q, .faq-q {
  padding: 16px 20px !important;
  font-weight: 700 !important;
  letter-spacing: -0.005em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.plan-faq-icon, .faq-toggle {
  color: var(--gold, #FFC107) !important;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   MOBILE: forçar empilhamento de tudo
   ════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Hero layout: empilhar texto e mockup */
  .hero-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    align-items: center !important;
  }
  .hero-text {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    order: 1;
  }
  .hero-phone {
    width: 100% !important;
    max-width: 280px !important;
    margin: 0 auto !important;
    order: 2;
  }
  
  /* Singles: 1 coluna no mobile (estavam 4) */
  .singles {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    max-width: 420px !important;
    margin: 0 auto !important;
  }
  
  /* Combos: empilhar */
  .combos {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    max-width: 420px !important;
    margin: 0 auto !important;
  }
  .combos-wrap {
    overflow-x: visible !important;
  }
  
  /* FAQ: padding mobile-friendly */
  .plan-faq-q, .faq-q { padding: 14px 16px !important; font-size: 0.95rem !important; }
  .plan-faq-body { padding: 0 16px 14px 16px !important; }
}

@media (max-width: 480px) {
  .single { padding: 22px 16px !important; }
  .combo { padding: 22px 18px !important; }
  .combo-price { font-size: 1.8rem !important; }
  .single-price { font-size: 1.6rem !important; }
}

/* ── Animação suave do contador 0 (desabilita opacity inicial) ── */
.count-up, [data-target] {
  display: inline-block;
}


/* ════════════════════════════════════════════════════════════════
   FIX BADGE COMBO — não cortar nas bordas
   ════════════════════════════════════════════════════════════════ */
.combo {
  overflow: visible !important;
  margin-top: 12px;  /* espaço pro badge não ser cortado por cima */
}
.combo-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  margin-bottom: 0;
  white-space: nowrap;
}
/* combos-wrap precisa permitir o overflow do badge */
.combos {
  padding-top: 8px;
}
.combos-wrap {
  overflow: visible !important;
}


/* Fix h1 + em: garantir espaço entre "FEED DE" e palavra rotativa quando br escondido no mobile */
@media (max-width: 768px) {
  .hero h1 em {
    display: block !important;  /* força quebra de linha sem precisar do br */
    margin-top: 0.25em;
  }
}
