 /* ========================================
           RESET ET CONFIGURATIONS GLOBALES
        ======================================== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background: #1e1e1e;
            color: #ffffff;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        /* ========================================
           TITRE ROUGE EN HAUT
        ======================================== */
        .top-alert {
            background: #ff0101;
            padding: 15px 20px;
            text-align: center;
        }

        .top-alert h3 {
            color: #ffffff;
            font-size: 18px;
            font-weight: 600;
            margin: 0;
        }

        .top-alert .date-highlight {
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .top-alert h3 {
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .top-alert h3 {
                font-size: 14px;
            }
        }

        /* ========================================
           SECTION VIDÉO
        ======================================== */
        .video-section {
            max-width: 1140px;
            margin: 0 auto;
            padding: 20px;
        }

        .video-headline {
            text-align: center;
            color: white;
            font-size: 12px;
            max-width: 400px;
            padding: 20px;
            margin-bottom: 20px;
            margin: 0 auto;
        }

        .video-container {
            width: 100%;
            height: auto;
        }

        .video-container vturb-smartplayer {
            display: flex;
            width: 100%;
            height: 100%;
        }

        .watching-counter {
            text-align: center;
            color: #fff;
            font-size: 18px;
            margin-top: 20px;
            font-family: 'Poppins', sans-serif;
        }

        /* ========================================
           SECTION COMMENTAIRES FACEBOOK
        ======================================== */
        .comments-section {
            max-width: 800px;
            margin: 40px auto;
            padding: 20px;
            background: #ffffff;
            border-radius: 12px;
        }

        .comment-wrapper {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .comment-item {
            display: flex;
            gap: 8px;
            align-items: flex-start;
        }

        .comment-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            flex-shrink: 0;
        }

        .comment-content {
            flex: 1;
        }

        .comment-author {
            color: #385898;
            font-weight: 600;
            font-size: 14px;
            font-family: Helvetica, Arial, sans-serif;
            text-transform: capitalize;
            word-break: break-word;
        }

        .comment-text {
            color: #1c1e21;
            font-size: 14px;
            font-weight: 400;
            line-height: 19.12px;
            margin-top: 4px;
            margin-bottom: 6px;
            word-break: break-word;
            font-family: Helvetica, Arial, sans-serif;
        }

        .comment-actions {
            display: flex;
            gap: 4px;
            align-items: center;
            font-size: 12px;
            line-height: 16px;
        }

        .comment-action {
            color: #4267b2;
            cursor: pointer;
            font-family: Helvetica, Arial, sans-serif;
            font-weight: 400;
        }

        .comment-action:hover {
            text-decoration: underline;
        }

        .comment-dot {
            font-size: 12px;
            font-weight: 400;
        }

        .comment-likes {
            display: flex;
            align-items: center;
            gap: 4px;
            color: #1c1e21;
        }

        .comment-like-img {
            width: 14px;
            height: 14px;
            display: block;
            margin-top: -2px;
        }

        .comment-time {
            color: #90949c;
            font-family: Helvetica, Arial, sans-serif;
            font-weight: 400;
        }

        /* Réponses imbriquées */
        .comment-replies {
            margin-left: 48px;
            border-left: 1px dotted #d3d6db;
            padding-left: 8px;
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-top: 8px;
        }

        .comment-replies .comment-avatar {
            width: 36px;
            height: 36px;
        }

        @media (max-width: 480px) {
            .comments-section {
                padding: 15px;
            }

            .comment-replies {
                margin-left: 30px;
            }
        }

        /* ========================================
           SECTION ROUE (INITIALEMENT CACHÉE)
        ======================================== */
        .wheel-section {
            max-width: 600px;
            margin: 40px auto;
            padding: 20px;
            text-align: center;
        }

        .wheel-title {
            font-size: 28px;
            font-weight: bold;
            color: #fbbf24;
            margin-bottom: 20px;
            text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
        }

        .wheel-container {
            position: relative;
            width: 100%;
            max-width: 400px;
            margin: 0 auto 30px;
            align-items: center;
            justify-content: center;
        }

        .wheel {
            width: 100%;
            height: auto;
            transition: transform 4s cubic-bezier(0.17, 0.67, 0.12, 0.99);
        }

        .wheel.spinning {
            transform: rotate(1800deg);
        }

        .wheel-pointer {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 15px solid transparent;
            border-right: 15px solid transparent;
            border-top: 30px solid #fbbf24;
            filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
            z-index: 10;
        }

        .spin-button {
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1a1a2e;
            font-weight: 700;
            padding: 16px 48px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
            transition: all 0.3s ease;
        }

        .spin-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 40px rgba(251, 191, 36, 0.6);
        }

        .spin-button:disabled {
            cursor: not-allowed;
            opacity: 0.7;
        }

        .bottom-text {
            margin-top: 20px;
            font-size: 14px;
            color: #94a3b8;
            margin: 0 auto;
        }

        /* Révélation du prix */
        .prize-reveal {
            display: none;
            opacity: 0;
            margin: 30px 0;
            padding: 20px;
            background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
            border: 2px solid #fbbf24;
            border-radius: 15px;
            animation: fadeInUp 0.6s ease-out forwards;
        }

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

        .prize-title {
            font-size: 24px;
            color: #fbbf24;
            margin-bottom: 10px;
        }

        .prize-description {
            font-size: 18px;
            color: #e2e8f0;
            margin-bottom: 15px;
        }

        .timer-display {
            font-size: 20px;
            color: #10b981;
            font-weight: bold;
        }

        .timer-display .timer-value {
            color: #fbbf24;
            font-size: 24px;
        }

        .claim-button {
            display: none;
            background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
            color: #1a1a2e;
            font-weight: 700;
            padding: 16px 32px;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-top: 20px;
            box-shadow: 0 12px 30px rgba(251, 191, 36, 0.4);
            transition: all 0.3s ease;
        }

        .claim-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 40px rgba(251, 191, 36, 0.6);
        }

        /* ========================================
           SECTION RÉDUCTION (APRÈS LA ROUE)
        ======================================== */
        .discount-section {
            display: none;
            background: radial-gradient(circle at top, #1f2937 0%, #020617 60%);
            color: #f9fafb;
            padding: 60px 20px;
            min-height: 100vh;
        }

        .order-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-size: 36px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 40px;
            color: #fbbf24;
        }

        /* ========================================
           SECTION COMMENTAIRES FINAUX
        ======================================== */
        .final-comments-section {
            max-width: 800px;
            margin: 60px auto;
            padding: 20px;
            background: #ffffff;
            border-radius: 10px;
            color: #000;
        }

        .comments-header {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e5e7eb;
        }

        /* ========================================
           ANIMATIONS ET LOADING
        ======================================== */
        @keyframes spin {
            to {
                transform: rotate(360deg);
            }
        }

        .loading-spinner {
            display: inline-block;
            width: 16px;
            height: 16px;
            border: 2px solid #1a1a2e;
            border-top: 2px solid transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        /* ========================================
           RESPONSIVE
        ======================================== */
        @media (max-width: 768px) {
            .wheel-title {
                font-size: 22px;
            }

            .section-title {
                font-size: 28px;
            }

            .spin-button {
                padding: 14px 36px;
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .video-section {
                padding: 10px;
                height: auto;
            }

            .wheel-section {
                padding: 15px;
            }

            .wheel-title {
                font-size: 20px;
            }

            .spin-button {
                padding: 12px 24px;
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 24px;
            }
        }

        /* ========================================
           CLASSES UTILITAIRES
        ======================================== */
        .hidden {
            display: none !important;
        }

        .fade-out {
            opacity: 0;
            transition: opacity 0.5s ease-out;
        }

        .fade-in {
            opacity: 1;
            transition: opacity 0.5s ease-in;
        }
        /* ============================================
   DISCOUNT / ORDER SECTION (bb-*) — Premium / Clean
   ============================================ */

#discountSection {
    margin: 30px 0 38px;
    /* Se não estiver mostrando via JS, habilite: */
    /* display: block; */
}

.bb-section {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    padding: 24px 18px 28px;
    border: 1px solid rgba(225, 29, 72, 0.14);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(12px);
}

.bb-section::before {
    content: "";
    position: absolute;
    inset: -2px;
    background:
        radial-gradient(ellipse 70% 50% at 15% 5%, rgba(225, 29, 72, 0.12), transparent 60%),
        radial-gradient(ellipse 65% 45% at 85% 20%, rgba(167, 139, 250, 0.12), transparent 60%),
        radial-gradient(ellipse 70% 55% at 80% 95%, rgba(251, 146, 60, 0.10), transparent 65%),
        radial-gradient(ellipse 70% 55% at 10% 90%, rgba(20, 184, 166, 0.08), transparent 65%);
    pointer-events: none;
}

.bb-section > * { position: relative; z-index: 1; }

/* Steps */
.bb-steps {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.bb-step {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 7px 12px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    background: rgba(248, 250, 252, 0.78);
    box-shadow: var(--shadow-sm);
}

.bb-step--active {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent-2));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 0 24px rgba(225, 29, 72, 0.20);
}

/* Header */
.bb-section-header {
    text-align: center;
    margin-bottom: 18px;
}

.bb-section-header h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--text-primary);
}

.bb-divider {
    width: 96px;
    height: 3px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--lavender), var(--accent-2));
    box-shadow: 0 10px 22px rgba(225, 29, 72, 0.10);
}

/* Packages layout (stack mobile, grid desktop) */
.bb-packages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

@media (min-width: 720px) {
    .bb-packages {
        grid-template-columns: 1.2fr 1fr 1fr; /* destaca o “best” sem quebrar layout */
        align-items: stretch;
    }
}

/* Card */
.bb-card {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-sm);
    padding: 16px 14px 16px;
    transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
    overflow: hidden;
}

.bb-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(225, 29, 72, 0.70), rgba(167, 139, 250, 0.55), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.bb-card:hover {
    transform: translateY(-3px);
    border-color: rgba(225, 29, 72, 0.22);
    box-shadow: var(--shadow-md);
}

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

.bb-card:focus-within {
    outline: 2px solid rgba(225, 29, 72, 0.55);
    outline-offset: 2px;
}

/* Best card highlight */
.bb-card--best {
    border-color: rgba(225, 29, 72, 0.32);
    box-shadow: 0 0 38px rgba(225, 29, 72, 0.14), var(--shadow-md);
}

.bb-card--best::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.22), rgba(167, 139, 250, 0.14), rgba(251, 146, 60, 0.18));
    opacity: 0.75;
    pointer-events: none;
    filter: blur(18px);
}

/* Tag */
.bb-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(225, 29, 72, 0.16);
    background: rgba(255, 255, 255, 0.90);
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}

.bb-card--best .bb-card-tag {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    box-shadow: 0 16px 26px rgba(225, 29, 72, 0.18);
}

/* Body layout */
.bb-card-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
    z-index: 1;
}

@media (min-width: 720px) {
    .bb-card-body {
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 10px;
    }
}

.bb-card-left,
.bb-card-right {
    min-width: 0;
}

/* Titles / texts */
.bb-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 900;
    color: var(--text-primary);
    text-align: center;
}

@media (min-width: 720px) {
    .bb-card h4 { text-align: left; }
}

.bb-supply {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
    text-align: center;
}

@media (min-width: 720px) {
    .bb-supply { text-align: left; }
}

/* Product image */
.bb-product-img {
    display: block;
    width: min(220px, 80%);
    margin: 10px auto 0;
    filter: drop-shadow(0 18px 26px rgba(17, 24, 39, 0.10));
    transform: translateZ(0);
}

@media (min-width: 720px) {
    .bb-product-img {
        width: min(240px, 92%);
        margin: 10px 0 0;
    }
}

/* Price area */
.bb-price-per-bottle {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

@media (min-width: 720px) {
    .bb-price-per-bottle { align-items: flex-start; }
}

.bb-price {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.6px;
    color: var(--text-primary);
}

.bb-price-label {
    font-size: 11px;
    color: var(--text-muted);
}

.bb-save {
    font-size: 15px;
    font-weight: 900;
    color: var(--primary);
}

.bb-save--highlight { color: var(--accent-2); }

/* Labels */
.bb-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    background: rgba(248, 250, 252, 0.70);
    width: fit-content;
    margin: 4px auto 0;
}

@media (min-width: 720px) {
    .bb-label { margin: 4px 0 0; }
}

.bb-label--accent {
    border-color: rgba(20, 184, 166, 0.35);
    color: var(--success);
}

/* Cards brand image */
.bb-cards-img {
    max-width: 120px;
    margin-top: 6px;
    filter: saturate(0.95);
}

/* Totals / Shipping */
.bb-total {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 6px;
}

.bb-total-old {
    text-decoration: line-through;
    color: var(--text-muted);
    margin-right: 6px;
}

.bb-total-new {
    font-weight: 900;
    color: var(--text-primary);
}

.bb-shipping {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 2px;
}

.bb-shipping--free {
    color: var(--success);
    font-weight: 900;
}

/* Right side alignment */
.bb-card-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

@media (min-width: 720px) {
    .bb-card-right {
        align-items: flex-end;
        text-align: right;
    }
}

/* CTA button fixed at bottom */
.bb-btn {
    margin-top: 14px;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    background: #111827;
    color: #fff;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-base), box-shadow var(--transition-base), filter var(--transition-base);
    margin-top: auto; /* empurra para o final e iguala altura dos cards */
}

.bb-btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent-2));
    box-shadow: 0 18px 34px rgba(225, 29, 72, 0.18);
}

.bb-btn:hover {
    transform: translateY(-1px) scale(1.01);
    box-shadow: var(--shadow-lg);
    filter: saturate(1.05);
}

.bb-btn:active { transform: translateY(0) scale(0.985); }

/* Guarantee block */
.bb-guarantee {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    padding: 16px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    background: rgba(255, 241, 247, 0.55);
    box-shadow: var(--shadow-sm);
}

.bb-guarantee-img {
    width: 80px;
    flex-shrink: 0;
    filter: drop-shadow(0 14px 20px rgba(17, 24, 39, 0.10));
}

.bb-guarantee-text h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.bb-guarantee-text p {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Mobile tweaks */
@media (max-width: 600px) {
    #discountSection { margin: 24px 0 30px; }
    .bb-section { padding: 18px 14px 22px; }

    .bb-card { padding: 14px 12px 14px; }
    .bb-price { font-size: 26px; }

    .bb-guarantee {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* (Opcional) Modo claro: deixa o card mais rosé (em vez de branco puro) */
#discountSection .bb-card {
  background: rgba(255, 241, 247, 0.78); /* rosé leve */
}

/* Dark mode: garante fundos escuros + texto legível */
@media (prefers-color-scheme: dark) {
  #discountSection .bb-section {
    background: rgba(18, 18, 26, 0.78);
    border-color: rgba(255, 255, 255, 0.10);
  }

  #discountSection .bb-card {
    background: rgba(18, 18, 26, 0.92);
    border-color: rgba(255, 255, 255, 0.10);
  }

  #discountSection .bb-card-tag {
    background: rgba(18, 18, 26, 0.92);
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--text-secondary);
  }

  #discountSection .bb-label {
    background: rgba(15, 15, 24, 0.70);
    border-color: rgba(255, 255, 255, 0.10);
    color: var(--text-secondary);
  }

  #discountSection .bb-guarantee {
    background: rgba(25, 25, 38, 0.65);
    border-color: rgba(255, 255, 255, 0.10);
  }

  #discountSection .bb-total-old {
    color: rgba(255, 255, 255, 0.55);
  }
}