/* ============================================
   FEMME WELLNESS LANDING PAGE - STYLES
   Focus: Produto de emagrecimento feminino (premium + leve + confiável)
   ============================================ */

/* CSS Variables */
:root {
    /* Brand / Action */
    --primary: #e11d48;        /* rose-600 (feminino + foco) */
    --primary-dark: #be123c;   /* rose-700 */
    --primary-light: #fff1f2;  /* rose-50 */

    --accent: #fb7185;         /* rose-400 (suave/atrativo) */
    --accent-2: #fb923c;       /* peach/orange (energia/CTA) */
    --lavender: #a78bfa;       /* premium/calma */

    /* States (saúde/segurança) */
    --success: #14b8a6;        /* teal-500 (confiança/saúde) */
    --warning: #f59e0b;

    /* Backgrounds (light, clean) */
    --bg-dark: #fff7fb;        /* fundo principal (bem claro) */
    --bg-card: #ffffff;        /* cartões */
    --bg-elevated: #fff1f7;    /* superfícies elevadas (rosé) */
    --bg-soft: #f8fafc;        /* neutro frio para equilíbrio */

    /* Text */
    --text-primary: #111827;   /* quase preto (alta legibilidade) */
    --text-secondary: #374151;
    --text-muted: #6b7280;

    /* Borders */
    --border-color: rgba(17, 24, 39, 0.10);
    --border-light: rgba(17, 24, 39, 0.14);

    /* Shadows (mais suaves/premium) */
    --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.06);
    --shadow-md: 0 10px 20px rgba(17, 24, 39, 0.10);
    --shadow-lg: 0 18px 50px rgba(17, 24, 39, 0.14);
    --shadow-glow: 0 0 60px rgba(225, 29, 72, 0.16);

    /* Radius (mais “soft”) */
    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 18px;
    --radius-xl: 28px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Poppins', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   ANIMATED BACKGROUND (soft wellness)
   ============================================ */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 55% at 50% -20%, rgba(225, 29, 72, 0.14), transparent 55%),
        radial-gradient(ellipse 70% 45% at 80% 45%, rgba(167, 139, 250, 0.12), transparent 55%),
        radial-gradient(ellipse 70% 45% at 20% 85%, rgba(251, 146, 60, 0.10), transparent 55%),
        radial-gradient(ellipse 55% 35% at 30% 40%, rgba(20, 184, 166, 0.08), transparent 60%);
    animation: gradientShift 14s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.82; }
}

.bg-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(225, 29, 72, 0.22);
    border-radius: 50%;
    animation: float linear infinite;
    filter: blur(0.6px);
}

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* ============================================
   ALERT BAR (mais “beauty premium”)
   ============================================ */
.alert-bar {
    background: linear-gradient(90deg, rgba(225, 29, 72, 0.92), rgba(251, 113, 133, 0.92), rgba(251, 146, 60, 0.88));
    padding: 10px 16px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.alert-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.alert-icon {
    display: flex;
    align-items: center;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.82; transform: scale(1.08); }
}

.alert-text {
    font-size: 13px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.alert-text strong {
    font-weight: 800;
    letter-spacing: 0.4px;
}

.live-indicator {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    background: rgba(255, 255, 255, 0.20);
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.60); }
    50% { opacity: 0.9; box-shadow: 0 0 0 7px rgba(255, 255, 255, 0); }
}

/* ============================================
   MAIN CONTAINER
   ============================================ */
.main-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ============================================
   HERO SECTION (mais “produto premium”)
   ============================================ */
.hero-section {
    padding: 34px 0 22px;
    text-align: center;
}

.hero-content {
    animation: fadeInUp 0.6s ease-out;
}

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

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-bottom: 18px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

.main-headline {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    line-height: 1.16;
    color: var(--text-primary);
    margin-bottom: 18px;
    letter-spacing: -0.6px;
}

.headline-highlight {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent-2), var(--primary));
    background-size: 220% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 220% center; }
}

@media (min-width: 640px) {
    .main-headline { font-size: 38px; }
}

@media (min-width: 768px) {
    .main-headline { font-size: 44px; line-height: 1.12; }
}

.meta-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.meta-item svg { opacity: 0.75; }

.viewers-count {
    color: var(--success);
    font-weight: 800;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.video-section {
    padding: 0 0 36px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-card);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    border: 1px solid rgba(225, 29, 72, 0.14);
}

.video-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.75), rgba(167, 139, 250, 0.55), rgba(251, 146, 60, 0.60));
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.55;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.50; }
    50% { opacity: 0.85; }
}

.video-container {
    position: relative;
    width: 100%;
    background: #0b0b0f;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    overflow: hidden;
}

.video-info-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 241, 247, 0.85);
    border-top: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.info-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.exclusive-badge {
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    color: white;
    font-size: 10px;
    font-weight: 900;
    padding: 5px 9px;
    border-radius: 999px;
    letter-spacing: 0.6px;
    box-shadow: 0 10px 18px rgba(225, 29, 72, 0.18);
}

.video-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

.info-right { display: flex; align-items: center; }

.sound-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    animation: soundPulse 2s ease-in-out infinite;
}

@keyframes soundPulse {
    0%, 100% { opacity: 0.65; }
    50% { opacity: 1; }
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.trust-item svg { color: var(--success); }

.trust-item:hover { color: var(--text-secondary); }

/* ============================================
   DISCOUNT / ORDER SECTION
   ============================================ */
#discountSection {
    margin: 30px 0 38px;
    display: none;
}

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

.bb-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(225, 29, 72, 0.10), transparent 55%),
        radial-gradient(circle at top right, rgba(167, 139, 250, 0.10), transparent 55%),
        radial-gradient(circle at bottom right, rgba(251, 146, 60, 0.08), transparent 60%),
        radial-gradient(circle at bottom left, rgba(20, 184, 166, 0.06), transparent 60%);
    opacity: 1;
    pointer-events: none;
}

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

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

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

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

.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: 92px;
    height: 3px;
    margin: 10px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--lavender), var(--accent-2));
}

.bb-packages {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.bb-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    padding: 16px 14px 18px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.bb-card--best {
    border-color: rgba(225, 29, 72, 0.30);
    box-shadow: 0 0 34px rgba(225, 29, 72, 0.14), var(--shadow-md);
}

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

.bb-card-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(225, 29, 72, 0.18);
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
}

.bb-card--best .bb-card-tag {
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    border-color: transparent;
    color: #fff;
}

.bb-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 22px;
}

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

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

.bb-product-img {
    max-width: 200px;
    margin-top: 10px;
}

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

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

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

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

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

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

.bb-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    padding: 5px 10px;
    border-radius: 999px;
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    background: rgba(248, 250, 252, 0.7);
}

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

.bb-cards-img {
    max-width: 110px;
    margin-top: 4px;
    filter: saturate(0.95);
}

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

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

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

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

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

.bb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    width: 100%;
    padding: 12px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    background: #111827;
    color: #ffffff;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.bb-btn--primary {
    background: linear-gradient(135deg, var(--primary), var(--accent), var(--accent-2));
    color: #fff;
    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);
}

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

.bb-guarantee {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.bb-guarantee-img {
    max-width: 80px;
    flex-shrink: 0;
}

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

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

@media (min-width: 720px) {
    .bb-packages { flex-direction: row; }
    .bb-card-body {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .bb-product-img { max-width: 70%; margin-top: 10px; }
}

@media (max-width: 600px) {
    #discountSection { margin: 24px 0 30px; }
    .bb-section { padding: 18px 14px 22px; }
    .bb-steps { flex-wrap: wrap; }
    .bb-card { padding: 14px 12px 16px; }
    .bb-card-body { margin-top: 20px; }

    .bb-card-left, .bb-card-right { width: 100%; }
    .bb-card-right { align-items: center; text-align: left; margin-top: 4px; }

    .bb-product-img {
        max-width: 70%;
        margin: 0 auto;
        margin-top: 10px;
        display: block;
    }
    .bb-price { font-size: 24px; }
    .bb-guarantee { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */
.social-proof-section {
    padding: 38px 0;
    border-top: 1px solid var(--border-color);
    animation: fadeInUp 0.6s ease-out 0.4s backwards;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-title {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.comments-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.comments-count { font-weight: 800; }

.sort-label {
    color: var(--primary);
    font-weight: 700;
    cursor: pointer;
}

/* Comments List */
.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.comment-card {
    position: relative;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 16px;
    transition: all var(--transition-base);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

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

.comment-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.avatar-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.avatar-wrapper.small { width: 32px; height: 32px; }

.avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(225, 29, 72, 0.16);
}

.avatar-fallback {
    display: none;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--lavender), var(--accent-2));
    color: white;
    font-size: 12px;
    font-weight: 900;
    align-items: center;
    justify-content: center;
}

.avatar-wrapper.small .avatar-fallback {
    font-size: 10px;
    display: flex;
}

.comment-meta { flex: 1; min-width: 0; }

.author-name {
    display: block;
    font-size: 14px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.comment-time {
    font-size: 12px;
    color: var(--text-muted);
}

.verified-badge {
    width: 20px;
    height: 20px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 18px rgba(20, 184, 166, 0.18);
}

.verified-badge svg { width: 12px; height: 12px; }

.comment-body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.comment-footer {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reaction-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    padding: 7px 12px;
    border-radius: 999px;
    transition: all var(--transition-fast);
    border: 1px solid transparent;
}

.reaction-btn:hover {
    background: rgba(255, 241, 247, 0.85);
    color: var(--text-secondary);
    border-color: rgba(225, 29, 72, 0.10);
}

.reaction-btn.active {
    color: var(--primary);
    background: rgba(225, 29, 72, 0.08);
    border-color: rgba(225, 29, 72, 0.14);
}

.reaction-btn.active svg { fill: var(--primary); }

/* Comment Input */
.comment-input-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    box-shadow: var(--shadow-sm);
}

.input-container {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.input-container textarea {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--text-primary);
    resize: none;
    min-height: 24px;
    max-height: 120px;
    line-height: 1.5;
}

.input-container textarea::placeholder { color: rgba(107, 114, 128, 0.9); }

.submit-btn {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary), var(--accent-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    box-shadow: 0 16px 26px rgba(225, 29, 72, 0.16);
}

.submit-btn:hover:not(:disabled) {
    transform: scale(1.06);
    filter: saturate(1.05);
}

.submit-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: rgba(255, 255, 255, 0.70);
    border-top: 1px solid var(--border-color);
    padding: 32px 16px;
    margin-top: 38px;
    backdrop-filter: blur(10px);
}

.footer-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover { color: var(--text-secondary); }

.copyright {
    font-size: 12px;
    color: var(--text-muted);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 480px) {
    .alert-content { gap: 8px; }
    .alert-text { font-size: 12px; }
    .live-indicator { display: none; }

    .hero-section { padding: 24px 0 18px; }
    .main-headline { font-size: 24px; }

    .meta-container { gap: 12px; }
    .meta-item { font-size: 12px; }

    .trust-indicators { gap: 16px; }
    .trust-item { font-size: 12px; }

    .section-header { flex-direction: column; align-items: flex-start; }
    .comment-card { padding: 14px; }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
button:focus-visible,
a:focus-visible,
textarea:focus-visible {
    outline: 2px solid rgba(225, 29, 72, 0.85);
    outline-offset: 2px;
}

/* Selection */
::selection {
    background: rgba(225, 29, 72, 0.22);
    color: var(--text-primary);
}

/* Scrollbar Styling */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: rgba(248, 250, 252, 0.8); }
::-webkit-scrollbar-thumb {
    background: rgba(225, 29, 72, 0.18);
    border-radius: 999px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(225, 29, 72, 0.28);
}

/* Loading overlay for video */
.video-container::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 39, 0.30) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-base);
}

/* Hover Effects Enhancement */
.trust-item:hover svg {
    transform: scale(1.1);
    transition: transform var(--transition-fast);
}

.reaction-btn:active { transform: scale(0.96); }

/* Subtle Entrance Animations */
.comment-card:nth-child(1) { animation-delay: 0.1s; }
.comment-card:nth-child(2) { animation-delay: 0.2s; }
.comment-card:nth-child(3) { animation-delay: 0.3s; }

.comment-card {
    animation: slideInUp 0.5s ease-out backwards;
}

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

/* ============================================
   OPTIONAL: DARK MODE (se quiser manter versão noturna)
   ============================================ */
@media (prefers-color-scheme: dark) {
    :root {
        --bg-dark: #0b0b10;
        --bg-card: #12121a;
        --bg-elevated: #191926;
        --bg-soft: #0f0f18;

        --text-primary: #ffffff;
        --text-secondary: rgba(255, 255, 255, 0.86);
        --text-muted: rgba(255, 255, 255, 0.62);

        --border-color: rgba(255, 255, 255, 0.10);
        --border-light: rgba(255, 255, 255, 0.14);

        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
        --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.45);
        --shadow-lg: 0 18px 60px rgba(0, 0, 0, 0.55);
        --shadow-glow: 0 0 70px rgba(225, 29, 72, 0.22);
    }

    .video-info-bar {
        background: rgba(25, 25, 38, 0.75);
        border-top-color: var(--border-color);
    }

    .comment-card,
    .comment-input-wrapper,
    .bb-section {
        background: rgba(18, 18, 26, 0.78);
    }

    ::selection {
        background: rgba(225, 29, 72, 0.30);
        color: #ffffff;
    }
}

/* ============================================
   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);
  }
}
