/**
 * YOLO Club × Clubs — Identidade Visual & Design System Oficial
 * 
 * Estética: Luxury Gastronomic Dark Mode + Co-branding Clubs (Magenta/Purple & Sunset Orange) + YOLO Gold
 * Tipografia: Poppins (corpo altamente legível) + Quicksand & Piazzolla (títulos nobres)
 */

/* ═══════════════════════════════════════════════════════════════
   1. DESIGN TOKENS & VARIÁVEIS
   ═══════════════════════════════════════════════════════════════ */
:root {
    /* Superfícies & Fundos (Dark Obsidian) */
    --bg-main:             #0D0B12;
    --bg-dark-1:           #121019;
    --bg-dark-2:           #171420;
    --bg-dark-3:           #1E1A2B;
    --bg-card:             rgba(26, 22, 38, 0.75);
    --bg-card-hover:       rgba(36, 30, 52, 0.85);
    --bg-glass:            rgba(255, 255, 255, 0.05);
    --bg-glass-heavy:      rgba(15, 13, 22, 0.9);

    /* Cores da Marca YOLO (Gold) */
    --yolo-gold:           #D4A843;
    --yolo-gold-light:     #F4CB66;
    --yolo-gold-dark:      #B38728;
    --yolo-gold-glow:      rgba(212, 168, 67, 0.35);

    /* Cores da Marca Clubs */
    --clubs-purple:        #7F0466;
    --clubs-purple-light:  #A31A85;
    --clubs-purple-dark:   #540243;
    --clubs-purple-glow:   rgba(127, 4, 102, 0.4);
    
    --clubs-orange:        #E78733;
    --clubs-orange-light:  #FFA24D;
    --clubs-orange-dark:   #BA6015;

    /* Gradientes Mestres */
    --grad-clubs:          linear-gradient(135deg, #7F0466 0%, #A31A85 45%, #E78733 100%);
    --grad-clubs-reverse:  linear-gradient(135deg, #E78733 0%, #A31A85 55%, #7F0466 100%);
    --grad-gold:           linear-gradient(135deg, #F4CB66 0%, #D4A843 60%, #B38728 100%);
    --grad-dark-card:      linear-gradient(145deg, rgba(32, 27, 46, 0.7) 0%, rgba(18, 15, 26, 0.9) 100%);
    --grad-vip-border:     linear-gradient(135deg, #D4A843, #7F0466, #E78733, #D4A843);

    /* Textos & Contraste (Otimizado +50) */
    --text-white:          #FFFFFF;
    --text-pure:           #F5F5F7;
    --text-muted:          #C5C1D4;
    --text-subtle:         #8F8A9F;
    --text-dark:           #1A1A1A;

    /* Bordas & Divisores */
    --border-glass:        rgba(255, 255, 255, 0.08);
    --border-glass-gold:   rgba(212, 168, 67, 0.25);
    --border-glass-purple: rgba(127, 4, 102, 0.35);

    /* Tipografia */
    --font-heading:        'Quicksand', 'Segoe UI', sans-serif;
    --font-serif:          'Piazzolla', Georgia, serif;
    --font-body:           'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Tamanhos Tipográficos Refinados */
    --fs-xs:   0.8125rem; /* 13px */
    --fs-sm:   0.9375rem; /* 15px */
    --fs-base: 1.0625rem; /* 17px */
    --fs-md:   1.1875rem; /* 19px */
    --fs-lg:   1.25rem;   /* 20px */
    --fs-xl:   1.5rem;    /* 24px */
    --fs-2xl:  1.85rem;   /* 29.6px */
    --fs-3xl:  2.35rem;   /* 37.6px */
    --fs-4xl:  2.85rem;   /* 45.6px */

    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4.5rem;
    --space-3xl: 6rem;

    /* Bordas Arredondadas */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Sombras & Efeitos */
    --shadow-sm:   0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-md:   0 8px 24px rgba(0, 0, 0, 0.35);
    --shadow-lg:   0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow-gold: 0 0 35px rgba(212, 168, 67, 0.3);
    --shadow-glow-clubs: 0 0 40px rgba(127, 4, 102, 0.45);

    /* Transições */
    --transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════════
   2. RESET & REGRAS GERAIS
   ═══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scrollbar-width: thin;
    scrollbar-color: rgba(231, 135, 51, 0.6) #0B0912;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

/* Custom Scrollbar Global (Webkit) */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #0B0912;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7F0466 0%, #E78733 50%, #D4A843 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #E78733 0%, #D4A843 100%);
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    line-height: 1.65;
    color: var(--text-muted);
    background-color: var(--bg-main);
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(127, 4, 102, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(212, 168, 67, 0.08) 0%, transparent 45%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
    max-width: 100vw;
    width: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

main, section, header, footer {
    overflow-x: clip;
    max-width: 100%;
}

img, svg {
    max-width: 100%;
    height: auto;
    display: inline-block;
    vertical-align: middle;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

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

/* ═══════════════════════════════════════════════════════════════
   3. CABEÇALHO CO-BRANDED (YOLO × CLUBS)
   ═══════════════════════════════════════════════════════════════ */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(13, 11, 18, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition);
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.header__logo--cobranded {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.header__logo-yolo {
    height: 36px;
    max-height: 36px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header__logo-separator {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--yolo-gold);
    opacity: 0.85;
    line-height: 1;
}

.header__logo-clubs {
    height: 28px;
    max-height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__link {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    position: relative;
    padding: 6px 0;
}

.header__link:hover {
    color: var(--yolo-gold-light);
}

.header__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad-gold);
    transition: var(--transition);
    border-radius: 2px;
}

.header__link:hover::after {
    width: 100%;
}

.header__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.35);
    color: #25D366;
    font-weight: 600;
    font-size: var(--fs-sm);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.header__cta:hover {
    background: #25D366;
    color: #000;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-1px);
}

.header__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.header__toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--text-pure);
    border-radius: 2px;
    transition: var(--transition);
}

/* ═══════════════════════════════════════════════════════════════
   4. ELEMENTOS TIPOGRÁFICOS E TAGS
   ═══════════════════════════════════════════════════════════════ */
.section-header {
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.section-tag--gold {
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.35);
    color: var(--yolo-gold-light);
}

.section-tag--purple {
    background: rgba(127, 4, 102, 0.18);
    border: 1px solid rgba(127, 4, 102, 0.45);
    color: #E258C8;
}

.section-tag--clubs-gradient {
    background: var(--grad-clubs);
    color: #FFF;
    border: none;
    box-shadow: 0 4px 16px rgba(127, 4, 102, 0.35);
}

.section-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.35vw, 2.15rem);
    font-weight: 800;
    color: var(--text-pure);
    line-height: 1.25;
    margin-bottom: var(--space-xs);
    text-wrap: balance;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-subheading {
    font-size: clamp(1rem, 2vw, var(--fs-md));
    color: var(--text-muted);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-wrap: balance;
}

/* Botões de Luxo */
.btn-luxury-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--grad-clubs);
    color: #FFF !important;
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 700;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glow-clubs);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    text-align: center;
}

.btn-luxury-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
}

.btn-luxury-primary:hover::before {
    left: 140%;
}

.btn-luxury-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(127, 4, 102, 0.6);
    filter: brightness(1.08);
}

.btn-luxury-primary--lg {
    font-size: var(--fs-md);
    padding: 18px 36px;
    border-radius: var(--radius-lg);
}

.btn-luxury-primary--full {
    width: 100%;
}

.btn-luxury-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-pure);
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 600;
    padding: 16px 30px;
    border-radius: var(--radius-md);
}

.btn-luxury-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--yolo-gold-light);
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════════
   5. SEÇÃO 1 — HERO MASTER (YOLO × CLUBS)
   ═══════════════════════════════════════════════════════════════ */
.hero-master {
    position: relative;
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-3xl);
    overflow: hidden;
}

.hero-master__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.35;
}

.ambient-glow--purple {
    width: 500px;
    height: 500px;
    background: var(--clubs-purple);
    top: -100px;
    left: -150px;
}

.ambient-glow--gold {
    width: 450px;
    height: 450px;
    background: var(--yolo-gold-dark);
    bottom: -50px;
    right: -100px;
}

.hero-master__container {
    position: relative;
    z-index: 1;
}

.hero-master__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-master__badges-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: var(--space-md);
}

.badge-collab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(127, 4, 102, 0.22);
    border: 1px solid rgba(127, 4, 102, 0.5);
    color: #F87CE0;
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.6px;
    white-space: nowrap;
}

.badge-collab__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #FF52D9;
    box-shadow: 0 0 10px #FF52D9;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.badge-discount-ribbon {
    background: var(--grad-clubs);
    color: #FFF;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 800;
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(127, 4, 102, 0.35);
}

.hero-master__headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.4vw, 2.1rem);
    font-weight: 800;
    color: var(--text-pure);
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

.hero-master__headline-gradient {
    display: block;
    background: var(--grad-clubs);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-master__lead {
    font-size: clamp(1.1rem, 2vw, var(--fs-lg));
    color: var(--text-pure);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: var(--space-xs);
}

.hero-master__sublead {
    font-size: var(--fs-base);
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

/* Deal Box no Hero */
.hero-deal-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass-purple);
    border-left: 4px solid var(--clubs-purple-light);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    margin-bottom: var(--space-lg);
}

.hero-deal-box__label {
    display: block;
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--yolo-gold-light);
    font-weight: 700;
}

.hero-deal-box__price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.hero-deal-box__de {
    font-size: var(--fs-sm);
    color: var(--text-subtle);
}

.hero-deal-box__por {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 800;
    color: #FFF;
}

.hero-deal-box__inst {
    font-size: var(--fs-sm);
    color: var(--clubs-orange-light);
    font-weight: 600;
}

.hero-master__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.hero-master__micros {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-micro-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.hero-micro-item__icon {
    color: var(--yolo-gold);
    display: flex;
}

.hero-master__note {
    font-size: var(--fs-xs);
    color: var(--text-subtle);
    margin-top: var(--space-sm);
    font-style: italic;
}

/* Card Visual do Hero */
.hero-visual-card {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
}

.hero-visual-card__img-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-lg);
}

.hero-visual-card__img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.hero-visual-card:hover .hero-visual-card__img {
    transform: scale(1.06);
}

.hero-visual-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 11, 18, 0.85) 100%);
}

/* Floating Pills */
.floating-pill {
    position: absolute;
    background: rgba(22, 19, 32, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    z-index: 2;
    animation: floatSlow 4s ease-in-out infinite alternate;
}

@keyframes floatSlow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.floating-pill--savings {
    bottom: -15px;
    left: -15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 3px solid var(--yolo-gold);
}

.floating-pill__icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(212, 168, 67, 0.15);
    color: var(--yolo-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.floating-pill__title {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text-subtle);
    font-weight: 500;
}

.floating-pill__value {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 700;
    color: #2ECC71;
}

.floating-pill--partners {
    top: -15px;
    right: -15px;
    animation-delay: -2s;
    border-right: 3px solid var(--clubs-purple-light);
    text-align: center;
}

.floating-pill__badge-stars {
    color: var(--yolo-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 4px;
}

.floating-pill__text {
    font-size: var(--fs-xs);
    color: var(--text-pure);
    display: block;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   6. SEÇÃO 2 — COMO FUNCIONA (4 PASSOS)
   ═══════════════════════════════════════════════════════════════ */
.section-how {
    padding: var(--space-3xl) 0;
    position: relative;
    background: var(--bg-dark-1);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.how-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.how-step-card {
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
}

.how-step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.4);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4), var(--shadow-glow-gold);
}

.how-step-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.how-step-card__num {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.how-step-card__icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(212, 168, 67, 0.12);
    color: var(--yolo-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-step-card:nth-child(2) .how-step-card__icon-box {
    background: rgba(127, 4, 102, 0.18);
    color: #E258C8;
}

.how-step-card:nth-child(4) .how-step-card__icon-box {
    background: rgba(231, 135, 51, 0.18);
    color: var(--clubs-orange-light);
}

.how-step-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: var(--space-xs);
    line-height: 1.3;
}

.how-step-card__desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   7. SEÇÃO 3 — ECONOMIA NA PRÁTICA (SIMULADOR DE CONTA)
   ═══════════════════════════════════════════════════════════════ */
.section-savings {
    padding: var(--space-3xl) 0;
}

.savings-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
    width: 100%;
}

.savings-container > * {
    min-width: 0;
    max-width: 100%;
}

/* Luxury Dining Check / Receipt Card */
.receipt-luxury {
    background: #14111D;
    border: 1px solid var(--border-glass-gold);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.receipt-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--grad-gold);
}

.receipt-luxury__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: var(--space-sm);
    border-bottom: 1px dashed var(--border-glass);
    margin-bottom: var(--space-md);
    flex-wrap: wrap;
    gap: 10px;
}

.receipt-luxury__logo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.receipt-luxury__logo img {
    height: 24px;
    max-height: 24px;
    max-width: 110px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.receipt-luxury__divider {
    color: var(--yolo-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

.receipt-luxury__tag {
    font-size: var(--fs-xs);
    background: rgba(255, 255, 255, 0.06);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

.receipt-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: var(--fs-base);
    color: var(--text-pure);
}

.receipt-line--subtle {
    color: var(--text-subtle);
    font-size: var(--fs-sm);
}

.receipt-line__price-strike {
    text-decoration: line-through;
    color: var(--text-subtle);
}

.receipt-luxury__sep {
    height: 1px;
    background: var(--border-glass);
    margin: 16px 0;
}

.receipt-benefit-banner {
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 0;
    gap: 10px;
    min-width: 0;
}

.receipt-benefit-banner__left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.receipt-benefit-banner__badge {
    background: #2ECC71;
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.receipt-benefit-banner__text {
    font-size: var(--fs-sm);
    color: var(--text-pure);
    font-weight: 600;
    min-width: 0;
}

.receipt-benefit-banner__value {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: 800;
    color: #2ECC71;
    white-space: nowrap;
    flex-shrink: 0;
}

.receipt-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.receipt-summary-box {
    padding: 16px;
    border-radius: var(--radius-md);
    text-align: center;
}

.receipt-summary-box--pay {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
}

.receipt-summary-box--save {
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.35);
}

.receipt-summary-box__label {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-bottom: 4px;
}

.receipt-summary-box__value {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--text-pure);
}

.receipt-summary-box--save .receipt-summary-box__value {
    color: var(--yolo-gold-light);
}

.receipt-luxury__footer {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px dashed var(--border-glass);
}

.receipt-luxury__notice {
    font-size: 11px;
    color: var(--text-subtle);
    line-height: 1.4;
}

/* Payback Card */
.savings-payback-card {
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass-purple);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.savings-payback-card__badge {
    display: inline-block;
    background: var(--grad-clubs);
    color: #FFF;
    font-size: var(--fs-xs);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    align-self: flex-start;
}

.savings-payback-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--text-pure);
    line-height: 1.3;
    margin-bottom: var(--space-md);
}

.savings-timeline {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: var(--space-md);
}

.savings-timeline__step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
}

.savings-timeline__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.2);
    color: #2ECC71;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.savings-timeline__label {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.savings-timeline__val {
    font-weight: 700;
    color: #2ECC71;
    font-size: var(--fs-sm);
}

.savings-total-box {
    background: rgba(127, 4, 102, 0.15);
    border: 1px solid var(--border-glass-purple);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: var(--space-lg);
}

.savings-total-box__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px;
    flex-wrap: wrap;
    gap: 8px;
}

.savings-total-box__title {
    font-size: var(--fs-sm);
    color: var(--text-pure);
    font-weight: 600;
}

.savings-total-box__val {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--clubs-orange-light);
}

.savings-total-box__desc {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   8. SEÇÃO 4 — OFERTA MASTER CO-BRANDED (VIP MASTER CARD)
   ═══════════════════════════════════════════════════════════════ */
.section-offer {
    padding: var(--space-3xl) 0;
    position: relative;
    background: var(--bg-dark-1);
    border-top: 1px solid var(--border-glass);
}

.offer-marquee-banner {
    display: inline-block;
    background: rgba(231, 135, 51, 0.12);
    border: 1px solid rgba(231, 135, 51, 0.35);
    color: var(--clubs-orange-light);
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    padding: 8px 24px;
    border-radius: var(--radius-full);
    margin-top: var(--space-sm);
    letter-spacing: 0.5px;
}

/* Master VIP Card */
.vip-plan-master {
    position: relative;
    max-width: 980px;
    margin: var(--space-2xl) auto var(--space-2xl);
    background: linear-gradient(145deg, #1A1426 0%, #110E1A 100%);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), var(--shadow-glow-clubs);
    border: 2px solid rgba(212, 168, 67, 0.35);
    overflow: visible;
}

.vip-plan-master::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--grad-vip-border);
    border-radius: calc(var(--radius-xl) + 2px);
    z-index: -1;
    animation: borderRotate 6s linear infinite;
}

@keyframes borderRotate {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

.vip-plan-master__ribbon {
    position: absolute;
    top: -20px;
    right: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--grad-clubs);
    padding: 8px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 25px rgba(127, 4, 102, 0.6), 0 0 15px rgba(231, 135, 51, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 10;
}

.vip-plan-master__ribbon-text {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 900;
    color: #FFF;
    line-height: 1.1;
}

.vip-plan-master__ribbon-sub {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
}

.vip-plan-master__grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: var(--space-2xl);
    align-items: center;
}

.vip-plan-master__header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: var(--space-sm);
}

.vip-plan-master__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--grad-clubs);
    color: #FFF;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(127, 4, 102, 0.4);
    flex-shrink: 0;
    margin-top: 4px;
}

.vip-plan-master__collab-tag {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 800;
    color: var(--yolo-gold-light);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.vip-plan-master__name {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    font-weight: 800;
    color: var(--text-pure);
    line-height: 1.2;
    white-space: nowrap;
}

.vip-plan-master__desc {
    font-size: var(--fs-base);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.vip-plan-master__perks-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vip-perk-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: var(--fs-sm);
    color: var(--text-pure);
}

.vip-perk-item__icon {
    color: var(--yolo-gold);
    margin-top: 2px;
    flex-shrink: 0;
}

/* Pricing Box */
.vip-pricing-box {
    background: rgba(13, 11, 18, 0.7);
    border: 1px solid var(--border-glass-gold);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
}

.vip-pricing-box__de {
    display: block;
    font-size: var(--fs-sm);
    color: var(--text-subtle);
    margin-bottom: 4px;
}

.vip-pricing-box__highlight {
    display: flex;
    align-items: baseline;
    justify-content: center;
    line-height: 1;
    margin-bottom: 6px;
    gap: 2px;
}

.vip-pricing-box__currency {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--yolo-gold-light);
}

.vip-pricing-box__val {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: #FFF;
    letter-spacing: -1px;
}

.vip-pricing-box__cents {
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--text-pure);
}

.vip-pricing-box__installments {
    display: block;
    font-size: var(--fs-md);
    color: var(--clubs-orange-light);
    margin-bottom: 2px;
}

.vip-pricing-box__freq {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text-subtle);
    margin-bottom: 20px;
}

.vip-pricing-box__security {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    font-size: var(--fs-xs);
    color: var(--text-subtle);
    margin-top: 16px;
    text-align: left;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.vip-pricing-box__security svg {
    color: var(--yolo-gold);
    flex-shrink: 0;
    margin-top: 2px;
}

/* Planos Comparativos */
.compare-plans-section {
    max-width: 860px;
    margin: 0 auto var(--space-xl);
}

.compare-plans-section__title {
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--text-subtle);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.compare-plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.compare-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.compare-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.compare-card__tag {
    font-size: 11px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-subtle);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.compare-card__name {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text-pure);
    margin-top: 8px;
    margin-bottom: 8px;
}

.compare-card__val {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--text-pure);
}

.compare-card__freq {
    display: block;
    font-size: var(--fs-xs);
    color: var(--text-subtle);
    margin-bottom: 12px;
}

.compare-card__desc {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.5;
}

.btn-compare-outline {
    display: block;
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
}

.btn-compare-outline:hover {
    border-color: var(--yolo-gold);
    color: var(--yolo-gold-light);
}

.offer-trust-badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.offer-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.offer-trust-badge__icon {
    color: #2ECC71;
    display: flex;
}

/* ═══════════════════════════════════════════════════════════════
   9. SEÇÃO 5 — RESTAURANTES PARCEIROS (+400 SP & BSB)
   ═══════════════════════════════════════════════════════════════ */
.section-restaurants {
    padding: var(--space-3xl) 0;
}

.restaurant-filters-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.btn-filter-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 8px 18px;
    border-radius: var(--radius-full);
}

.btn-filter-pill:hover,
.btn-filter-pill.is-active {
    background: var(--grad-gold);
    color: #000;
    border-color: transparent;
    font-weight: 700;
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.35);
}

.restaurants-luxury-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: var(--space-2xl);
}

.rest-luxury-card {
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.rest-luxury-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 168, 67, 0.4);
    box-shadow: var(--shadow-md);
}

/* Bolinha do Restaurante com Imagem Preenchendo 100% (Full Width) */
.rest-luxury-card__logo-wrap {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #FFFFFF;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border: 2px solid rgba(212, 168, 67, 0.45);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
    padding: 0;
    transition: var(--transition);
}

.rest-luxury-card:hover .rest-luxury-card__logo-wrap {
    border-color: var(--yolo-gold);
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(212, 168, 67, 0.45);
}

.rest-luxury-card__logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.rest-luxury-card__city {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--yolo-gold);
    font-weight: 700;
    display: block;
}

.rest-luxury-card__name {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--text-pure);
    margin: 4px 0;
}

.rest-luxury-card__category {
    font-size: var(--fs-xs);
    color: var(--text-subtle);
    display: block;
    margin-bottom: 14px;
}

.rest-luxury-card__benefit-tag {
    margin-top: auto;
    font-size: 12px;
    font-weight: 700;
    color: #2ECC71;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.25);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 6px;
}

.restaurants-footer-cta {
    text-align: center;
}

.restaurants-footer-cta__text {
    font-size: var(--fs-md);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

/* ═══════════════════════════════════════════════════════════════
   10. SEÇÃO 6 — EXPERIÊNCIAS REAIS & DEPOIMENTOS
   ═══════════════════════════════════════════════════════════════ */
.section-testimonials {
    padding: var(--space-3xl) 0;
    background: var(--bg-dark-1);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: var(--space-2xl);
}

.stat-box {
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 22px 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat-box__val {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 1.85vw, 1.75rem);
    font-weight: 900;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.15;
    margin-bottom: 6px;
    white-space: nowrap;
    letter-spacing: -0.5px;
}

.stat-box__label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    line-height: 1.35;
}

/* 3 Story Cards */
.testimonials-stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.story-card {
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass-purple);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow-clubs);
    border-color: rgba(127, 4, 102, 0.6);
}

.story-card__image-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.story-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-card:hover .story-card__img {
    transform: scale(1.08);
}

.story-card__badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(13, 11, 18, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass-gold);
    color: var(--yolo-gold-light);
    font-size: var(--fs-xs);
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.story-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.story-card__stars {
    color: var(--yolo-gold);
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.story-card__quote {
    font-family: var(--font-serif);
    font-size: var(--fs-base);
    color: var(--text-pure);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    flex-grow: 1;
}

.story-card__author-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border-glass);
}

.story-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--yolo-gold);
    object-fit: cover;
}

.story-card__author-name {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text-pure);
}

.story-card__author-badge {
    font-size: 11px;
    color: var(--clubs-orange-light);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   11. SEÇÃO 7 — DIFERENCIAIS E APLICATIVO YOLO
   ═══════════════════════════════════════════════════════════════ */
.section-app {
    padding: var(--space-3xl) 0;
}

.app-showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-2xl);
    align-items: center;
}

.app-showcase__title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 2.35vw, 2.15rem);
    font-weight: 800;
    color: var(--text-pure);
    line-height: 1.2;
    margin-top: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.app-showcase__desc {
    font-size: var(--fs-base);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.app-perks-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: var(--space-xl);
}

.app-perk-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.app-perk-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(212, 168, 67, 0.12);
    color: var(--yolo-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-perk-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 2px;
}

.app-perk-card__desc {
    font-size: 13px;
    color: var(--text-subtle);
    line-height: 1.45;
}

/* Botões das Lojas de App (Compactos & Elegantes) */
.app-stores-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.app-store-btn img {
    height: 42px;
    max-height: 42px;
    width: auto;
    object-fit: contain;
    border-radius: var(--radius-sm);
    display: block;
}

.app-store-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.12);
}

.phone-mockup-wrapper {
    position: relative;
    text-align: center;
}

.phone-mockup-img {
    max-width: 100%;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.7));
    animation: floatPhone 5s ease-in-out infinite alternate;
}

@keyframes floatPhone {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════════════════════════════
   12. SEÇÃO 8 — PARA QUEM É O YOLO
   ═══════════════════════════════════════════════════════════════ */
.section-lifestyle {
    padding: var(--space-3xl) 0;
    background: var(--bg-dark-1);
    border-top: 1px solid var(--border-glass);
}

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

.lifestyle-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 340px;
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}

.lifestyle-card:hover {
    transform: translateY(-6px);
    border-color: var(--yolo-gold);
    box-shadow: var(--shadow-lg);
}

.lifestyle-card__image-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.lifestyle-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lifestyle-card:hover .lifestyle-card__img {
    transform: scale(1.08);
}

.lifestyle-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(13, 11, 18, 0.92) 80%);
}

.lifestyle-card__content {
    position: relative;
    z-index: 1;
}

.lifestyle-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 800;
    color: var(--text-pure);
    margin-bottom: 6px;
}

.lifestyle-card__desc {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   13. SEÇÃO 9 — GARANTIA DE 7 DIAS
   ═══════════════════════════════════════════════════════════════ */
.section-guarantee {
    padding: var(--space-3xl) 0;
}

.guarantee-box {
    max-width: 960px;
    margin: 0 auto;
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass-gold);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: var(--space-2xl);
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.guarantee-box__image-col {
    text-align: center;
}

.guarantee-seal-img {
    filter: drop-shadow(0 10px 25px rgba(212, 168, 67, 0.3));
}

.guarantee-box__title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--text-pure);
    margin-top: 4px;
    margin-bottom: var(--space-sm);
    line-height: 1.25;
}

.guarantee-box__text {
    font-size: var(--fs-base);
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: var(--space-md);
}

.guarantee-box__condition {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-sm);
    color: var(--yolo-gold-light);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════════════
   14. SEÇÃO 10 — FORMULÁRIO DE CAPTAÇÃO VIP (RD STATION READY)
   ═══════════════════════════════════════════════════════════════ */
.section-form-vip {
    padding: var(--space-3xl) 0;
    background: var(--bg-dark-1);
    border-top: 1px solid var(--border-glass);
}

.form-vip-card {
    max-width: 760px;
    margin: 0 auto;
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass-purple);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-lg), var(--shadow-glow-clubs);
}

.form-vip-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--text-pure);
    margin-top: 6px;
    margin-bottom: 8px;
}

.form-vip-card__subtitle {
    font-size: var(--fs-base);
    color: var(--text-muted);
    margin-bottom: var(--space-xl);
}

.form-vip-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field-group__label {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--text-pure);
}

.req-star {
    color: #FF5252;
}

.form-field-group__input {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: #FFF;
    background: rgba(13, 11, 18, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    outline: none;
    transition: var(--transition);
}

.form-field-group__input:focus {
    border-color: var(--clubs-purple-light);
    box-shadow: 0 0 0 3px rgba(127, 4, 102, 0.25);
    background: rgba(18, 15, 26, 0.9);
}

.form-field-group__input::placeholder {
    color: var(--text-subtle);
    font-size: var(--fs-sm);
}

.form-vip-action-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.form-vip-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: var(--fs-xs);
    color: var(--text-subtle);
}

/* ═══════════════════════════════════════════════════════════════
   15. SEÇÃO 11 — FAQ (PERGUNTAS FREQUENTES)
   ═══════════════════════════════════════════════════════════════ */
.section-faq {
    padding: var(--space-3xl) 0;
}

.faq-accordion-list {
    max-width: 860px;
    margin: 0 auto var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-card-item {
    background: var(--grad-dark-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-card-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-card-item__trigger {
    width: 100%;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 16px;
    color: var(--text-pure);
}

.faq-card-item__question {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: 700;
    line-height: 1.35;
}

.faq-card-item__chevron {
    color: var(--yolo-gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-card-item.is-open .faq-card-item__chevron {
    transform: rotate(180deg);
}

.faq-card-item.is-open {
    border-color: var(--border-glass-gold);
}

.faq-card-item__drawer {
    display: none;
    padding: 0 24px 24px;
}

.faq-card-item.is-open .faq-card-item__drawer {
    display: block;
}

.faq-card-item__answer {
    font-size: var(--fs-base);
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px dashed var(--border-glass);
    padding-top: 16px;
}

.faq-card-item__answer a {
    color: var(--yolo-gold-light);
    text-decoration: underline;
}

/* FAQ Support Box */
.faq-support-box {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-radius: var(--radius-lg);
    padding: 28px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.faq-support-box__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text-pure);
    margin-bottom: 2px;
}

.faq-support-box__desc {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.btn-whatsapp-action {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #000;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 800;
    padding: 14px 24px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
    transition: var(--transition);
}

.btn-whatsapp-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    filter: brightness(1.08);
}

/* ═══════════════════════════════════════════════════════════════
   16. SEÇÃO 12 — CTA CLOSER & RODAPÉ
   ═══════════════════════════════════════════════════════════════ */
.section-cta-closer {
    padding: var(--space-3xl) 0;
    position: relative;
    background: var(--bg-dark-1);
    border-top: 1px solid var(--border-glass);
}

.cta-closer-card {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(127, 4, 102, 0.25) 0%, rgba(212, 168, 67, 0.15) 100%);
    border: 1px solid var(--border-glass-gold);
    border-radius: var(--radius-xl);
    padding: 60px 40px;
    box-shadow: var(--shadow-lg);
}

.cta-closer-card__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: var(--text-pure);
    line-height: 1.2;
    margin-top: 6px;
    margin-bottom: var(--space-sm);
}

.cta-closer-card__text {
    font-size: var(--fs-md);
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto var(--space-xl);
}

.cta-closer-card__actions {
    margin-bottom: var(--space-xl);
}

.cta-closer-card__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.closer-badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.closer-badge-item svg {
    color: var(--yolo-gold);
}

/* ═══════════════════════════════════════════════════════════════
   17. FOOTER CO-BRANDED
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background: #08070C;
    border-top: 1px solid var(--border-glass);
    padding-top: var(--space-3xl);
    color: var(--text-subtle);
}

.footer__content {
    text-align: center;
    padding-bottom: var(--space-2xl);
}

.footer__logo-container--cobranded {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: var(--space-md);
}

.footer__logo-container--cobranded img {
    height: 36px;
    max-height: 36px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer__logo-separator {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--yolo-gold);
}

.footer__tagline {
    font-size: var(--fs-md);
    color: var(--text-pure);
    font-weight: 500;
    margin-bottom: var(--space-md);
}

.footer__corporate {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer__cnpj,
.footer__address {
    font-size: var(--fs-xs);
    color: var(--text-subtle);
    margin-bottom: 4px;
}

.footer__contact-title {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--text-pure);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
}

/* Ordem de redes sociais: Instagram -> WhatsApp -> Site (Sem Facebook) */
.footer__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: var(--space-lg);
}

.footer__social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-pure);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer__social-btn:hover {
    background: var(--grad-gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.4);
}

.footer__legal-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    font-size: var(--fs-xs);
    margin-bottom: var(--space-lg);
}

.footer__legal-links a:hover {
    color: var(--yolo-gold-light);
    text-decoration: underline;
}

.footer__badge-container {
    margin-bottom: var(--space-md);
}

.footer__divider {
    border-top: 1px solid var(--border-glass);
    padding: 20px 0;
    font-size: var(--fs-xs);
}

.footer__divider-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__credits a {
    color: var(--yolo-gold);
}

/* ═══════════════════════════════════════════════════════════════
   18. FLOATING WHATSAPP & MOBILE BAR
   ═══════════════════════════════════════════════════════════════ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
}

.whatsapp-float__badge {
    position: absolute;
    top: -3px;
    right: -3px;
    background: #E74C3C;
    color: #FFF;
    font-size: 11px;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--bg-main);
}

.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(13, 11, 18, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-glass-purple);
    padding: 12px 20px;
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.mobile-cta__btn {
    width: 100%;
    font-size: var(--fs-sm);
    padding: 14px 20px;
}

/* ═══════════════════════════════════════════════════════════════
   19. RESPONSIVIDADE & AJUSTES DE PROPORÇÃO
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-master__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .hero-master__badges-wrap {
        justify-content: center;
    }

    .hero-master__actions {
        justify-content: center;
    }

    .hero-master__micros {
        justify-content: center;
    }

    .hero-visual-card {
        max-width: 480px;
        margin: 0 auto;
    }

    .how-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .savings-container {
        grid-template-columns: 1fr;
        max-width: 620px;
    }

    .vip-plan-master__grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .vip-plan-master__ribbon {
        right: 24px;
    }

    .restaurants-luxury-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-stories-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
    }

    .app-showcase-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-showcase__mockup-col {
        max-width: 320px;
        margin: 0 auto;
    }

    .app-perks-grid {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .app-stores-row {
        justify-content: center;
    }

    .lifestyle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .guarantee-box {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .guarantee-box__condition {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .header__container {
        height: 70px;
    }

    .header__menu,
    .header__cta {
        display: none;
    }

    .header__toggle {
        display: flex;
    }

    .header__nav.is-active {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(13, 11, 18, 0.98);
        border-bottom: 1px solid var(--border-glass);
        padding: 24px;
        display: block;
    }

    .header__nav.is-active .header__menu {
        display: flex;
        flex-direction: column;
        gap: 18px;
        align-items: flex-start;
    }

    .hero-master {
        overflow: hidden;
    }

    .hero-master__ambient {
        overflow: hidden;
    }

    .ambient-glow--purple {
        width: 250px;
        height: 250px;
        left: -30px;
        top: -30px;
    }

    .ambient-glow--gold {
        width: 230px;
        height: 230px;
        right: -30px;
        bottom: -20px;
    }

    .footer__divider-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .hero-master__badges-wrap {
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .badge-collab {
        font-size: 11px;
        padding: 5px 12px;
        letter-spacing: 0.4px;
        white-space: nowrap;
    }

    .badge-discount-ribbon {
        font-size: 11px;
        padding: 5px 10px;
        white-space: nowrap;
    }

    .offer-marquee-banner {
        display: block;
        max-width: 360px;
        margin: 14px auto 0;
        font-size: 12px;
        line-height: 1.45;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        letter-spacing: 0.3px;
    }

    .how-steps-grid {
        grid-template-columns: 1fr;
    }

    /* Floating pills inside container on mobile */
    .floating-pill {
        position: static;
        margin: 12px auto 0;
        width: 100%;
        max-width: 360px;
        animation: none;
    }

    .floating-pill--savings {
        left: auto;
        bottom: auto;
    }

    .floating-pill--partners {
        right: auto;
        top: auto;
    }

    .vip-plan-master {
        padding: 32px 20px;
    }

    .vip-plan-master__name {
        white-space: normal;
        font-size: 1.45rem;
    }

    .vip-plan-master__ribbon {
        position: static;
        width: 100%;
        border-radius: var(--radius-sm);
        margin-bottom: 24px;
        text-align: center;
    }

    .compare-plans-grid {
        grid-template-columns: 1fr;
    }

    .restaurants-luxury-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .app-stores-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        max-width: 360px;
        margin: 20px auto 0;
        padding: 10px;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
    }

    .app-store-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 100%;
    }

    .app-store-btn img {
        width: 100%;
        max-width: 155px;
        height: auto;
        max-height: 42px;
        object-fit: contain;
    }

    .form-vip-card {
        padding: 32px 20px;
    }

    .form-vip-fields-grid {
        grid-template-columns: 1fr;
    }

    .faq-support-box {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
    }

    .mobile-cta {
        display: block;
    }

    .whatsapp-float {
        bottom: 84px;
        right: 16px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .savings-container {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 440px;
        margin: 0 auto;
        padding: 0;
        box-sizing: border-box;
    }

    .receipt-luxury {
        padding: 22px 16px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .receipt-luxury__header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 6px;
        flex-wrap: nowrap;
        margin-bottom: 14px;
        width: 100%;
    }

    .receipt-luxury__logo {
        gap: 6px;
        flex-shrink: 0;
    }

    .receipt-luxury__logo img {
        height: 18px;
        max-height: 18px;
        max-width: 80px;
    }

    .receipt-luxury__tag {
        font-size: 10px;
        padding: 3px 6px;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .receipt-benefit-banner {
        padding: 10px 12px;
        gap: 8px;
    }

    .receipt-benefit-banner__text {
        font-size: 11px;
        line-height: 1.35;
    }

    .receipt-benefit-banner__value {
        font-size: 14px;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .hero-master__actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-master__actions a {
        width: 100%;
    }

    .restaurants-luxury-grid {
        grid-template-columns: 1fr;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-box {
        padding: 16px 8px;
    }

    .stat-box__val {
        font-size: 1.25rem;
    }

    .app-perks-grid {
        grid-template-columns: 1fr;
    }

    .receipt-summary-grid {
        grid-template-columns: 1fr;
    }
}

