/* Mobile-first, focado em conversão — tema premium (noir/vinho/dourado) */
:root {
    --bg-0: #07050b;
    --bg-1: #0b0710;
    --surface: rgba(255, 255, 255, 0.06);
    --surface-2: rgba(255, 255, 255, 0.085);
    --card: rgba(17, 12, 22, 0.72);
    --text: rgba(248, 245, 251, 0.94);
    --muted: rgba(248, 245, 251, 0.70);
    --border: rgba(255, 255, 255, 0.12);
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
    --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.35);

    --accent: #d20a52;
    --accent-2: #ff4b8a;
    --gold: #f4c16b;
    --danger: #ff3b57;

    --radius: 18px;
    --radius-sm: 14px;
    --ring: 0 0 0 3px rgba(244, 193, 107, 0.45);

    --container: 980px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background:
        radial-gradient(1000px 520px at 18% -5%, rgba(210, 10, 82, 0.24) 0%, rgba(210, 10, 82, 0.00) 60%),
        radial-gradient(900px 460px at 90% 12%, rgba(244, 193, 107, 0.16) 0%, rgba(244, 193, 107, 0.00) 58%),
        linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 100%);
    color: var(--text);
    line-height: 1.55;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
}

::selection {
    background: rgba(210, 10, 82, 0.45);
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
}

.page {
    min-height: 100dvh;
}

/* Topbar */
.topbar {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(10, 7, 14, 0.72);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 12px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    user-select: none;
}

.brand-mark {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, var(--gold), var(--accent) 55%, rgba(210, 10, 82, 0.25) 100%);
    box-shadow: 0 0 0 5px rgba(210, 10, 82, 0.10);
}

.brand-name {
    font-weight: 900;
    letter-spacing: 0.4px;
}

.topbar-cta {
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 900;
    font-size: 13px;
    transition: transform 0.12s ease, background 0.12s ease;
}

.topbar-cta:hover {
    background: rgba(255, 255, 255, 0.10);
}

.topbar-cta:active {
    transform: translateY(1px);
}

.topbar-cta:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 950;
    border-radius: 14px;
    padding: 14px 16px;
    letter-spacing: 0.2px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn--primary {
    color: rgba(8, 6, 10, 0.95);
    background: linear-gradient(135deg, var(--gold) 0%, #ffd08a 30%, var(--accent-2) 100%);
    box-shadow: 0 18px 42px rgba(210, 10, 82, 0.22);
    transition: transform 0.12s ease, filter 0.12s ease;
}

.btn--primary:hover {
    filter: brightness(1.02);
}

.btn--primary:active {
    transform: translateY(1px);
}

.btn--primary:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

/* Hero */
.hero {
    padding: 22px 0 12px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.hero-copy {
    padding: 14px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.4px;
    margin-bottom: 12px;
}

.hero-copy h1 {
    font-size: 28px;
    line-height: 1.10;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}

.subhead {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;
}

.hero-points {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-bottom: 14px;
}

.hero-points li {
    padding: 12px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    box-shadow: var(--shadow-soft);
    color: rgba(248, 245, 251, 0.88);
    font-weight: 750;
    font-size: 13px;
    position: relative;
    padding-left: 40px;
}

.hero-points li::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, var(--gold), var(--accent) 70%);
    box-shadow: 0 0 0 4px rgba(210, 10, 82, 0.12);
}

.hero-actions {
    display: grid;
    gap: 10px;
}

.fineprint {
    color: rgba(248, 245, 251, 0.62);
    font-size: 12px;
}

/* VSL */
.vsl-shell {
    padding: 14px;
    border-radius: calc(var(--radius) + 6px);
    background:
        radial-gradient(800px 380px at 10% 0%, rgba(210, 10, 82, 0.18) 0%, rgba(210, 10, 82, 0) 60%),
        rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
}

.vsl-container {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.vsl-container vturb-smartplayer {
    display: block;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.35);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.watching-container {
    margin-top: 12px;
    padding: 10px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.watching-container p {
    color: rgba(248, 245, 251, 0.86);
    font-size: 13px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.watching-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--danger);
    box-shadow: 0 0 0 5px rgba(255, 59, 87, 0.10);
}

.watching-count {
    font-weight: 950;
    color: var(--gold);
}

/* Offer */
.dtc-section {
    width: 100%;
    max-width: var(--container);
    margin: 16px auto 0;
    padding: 0 16px;
}

.bb-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 18px;
}

.bb-step {
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
    color: rgba(248, 245, 251, 0.70);
}

.bb-step--active {
    background: linear-gradient(135deg, rgba(210, 10, 82, 0.85), rgba(255, 75, 138, 0.70));
    border-color: rgba(255, 75, 138, 0.25);
    color: rgba(8, 6, 10, 0.95);
}

.bb-section-header {
    text-align: center;
    margin: 8px 0 18px;
}

.bb-section-header h3 {
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: 0.2px;
    color: rgba(248, 245, 251, 0.94);
    margin-bottom: 10px;
}

.bb-divider {
    width: 90px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    margin: 0 auto;
}

.bb-packages {
    margin-bottom: 16px;
}

.bb-card {
    border-radius: calc(var(--radius) + 6px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow);
}

.bb-card--best {
    border-color: rgba(244, 193, 107, 0.28);
}

.bb-card-tag {
    background: linear-gradient(135deg, rgba(244, 193, 107, 0.92), rgba(255, 75, 138, 0.75));
    color: rgba(8, 6, 10, 0.95);
    text-align: center;
    padding: 10px 12px;
    font-weight: 950;
    font-size: 12px;
    letter-spacing: 0.7px;
}

.bb-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 16px;
}

.bb-card-left {
    text-align: center;
}

.bb-supply {
    font-weight: 950;
    color: rgba(248, 245, 251, 0.94);
    margin-bottom: 10px;
    font-size: 15px;
}

.bb-product-img {
    width: min(260px, 74vw);
    margin: 0 auto;
    filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.55));
}

.bb-card-right {
    text-align: center;
}

.bb-price-per-bottle {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.bb-price {
    font-size: 36px;
    font-weight: 980;
    color: var(--gold);
    letter-spacing: -0.4px;
}

.bb-save {
    background: linear-gradient(135deg, rgba(255, 59, 87, 0.95), rgba(210, 10, 82, 0.85));
    color: rgba(8, 6, 10, 0.95);
    padding: 7px 14px;
    border-radius: 999px;
    display: inline-block;
    font-size: 12px;
    font-weight: 950;
    margin: 10px 0 8px;
    box-shadow: 0 14px 28px rgba(210, 10, 82, 0.18);
}

.bb-label {
    font-size: 12px;
    color: rgba(248, 245, 251, 0.70);
    margin: 6px 0;
    font-weight: 750;
}

.bb-label--accent {
    background: rgba(244, 193, 107, 0.16);
    color: rgba(248, 245, 251, 0.92);
    padding: 7px 10px;
    border-radius: 12px;
    display: inline-block;
    font-weight: 950;
    border: 1px solid rgba(244, 193, 107, 0.22);
}

.bb-cards-img {
    width: min(230px, 70vw);
    margin: 12px auto 6px;
    opacity: 0.95;
}

.bb-total {
    font-size: 15px;
    margin: 10px 0 6px;
    color: rgba(248, 245, 251, 0.86);
}

.bb-total-old {
    text-decoration: line-through;
    color: rgba(248, 245, 251, 0.40);
    margin-right: 8px;
    font-weight: 750;
}

.bb-total-new {
    font-weight: 980;
    color: var(--gold);
    font-size: 18px;
}

.bb-shipping {
    color: rgba(248, 245, 251, 0.70);
    font-size: 12px;
    font-weight: 850;
}

.bb-shipping--free {
    color: rgba(244, 193, 107, 0.92);
}

.bb-btn {
    display: block;
    width: calc(100% - 22px);
    margin: 0 11px 14px;
    padding: 16px 16px;
    background: linear-gradient(135deg, var(--gold) 0%, #ffd08a 35%, var(--accent-2) 100%);
    color: rgba(8, 6, 10, 0.95);
    text-align: center;
    text-decoration: none;
    font-weight: 980;
    font-size: 16px;
    border-radius: 14px;
    border: 0;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    box-shadow: 0 18px 42px rgba(210, 10, 82, 0.22);
    transition: transform 0.12s ease, filter 0.12s ease;
}

.bb-btn:hover {
    filter: brightness(1.02);
}

.bb-btn:active {
    transform: translateY(1px);
}

.bb-btn:focus-visible {
    outline: none;
    box-shadow: var(--ring);
}

/* Guarantee */
.bb-guarantee {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: var(--shadow);
    padding: 16px;
    border-radius: calc(var(--radius) + 6px);
    margin-bottom: 18px;
}

.bb-guarantee-img {
    width: 120px;
    margin: 0 auto;
    filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.45));
}

.bb-guarantee-text {
    text-align: center;
}

.bb-guarantee-text h3 {
    color: rgba(244, 193, 107, 0.95);
    margin-bottom: 8px;
    font-size: 16px;
    font-weight: 980;
}

.bb-guarantee-text p {
    color: rgba(248, 245, 251, 0.72);
    font-size: 13px;
    line-height: 1.65;
}

/* Comments */
.coment-section {
    margin-top: 16px;
    padding: 20px 0 calc(60px + env(safe-area-inset-bottom));
}

.comment-wrapper {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 16px;
}

.comment-item {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 14px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.comment-content {
    flex: 1;
    min-width: 0;
}

.comment-author {
    font-weight: 950;
    color: rgba(255, 208, 138, 0.92);
    margin-bottom: 4px;
    font-size: 14px;
}

.coment-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 6px;
    gap: 10px;
}

.comment-text {
    color: rgba(248, 245, 251, 0.86);
    margin-bottom: 10px;
    line-height: 1.55;
    font-size: 14px;
    word-break: break-word;
}

.comment-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(248, 245, 251, 0.60);
    flex-wrap: wrap;
}

.comment-action {
    cursor: pointer;
    font-weight: 900;
    -webkit-tap-highlight-color: transparent;
}

.comment-dot {
    margin: 0;
}

.comment-likes {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(244, 193, 107, 0.10);
    border: 1px solid rgba(244, 193, 107, 0.16);
    color: rgba(244, 193, 107, 0.92);
    font-weight: 950;
}

.comment-like-icon {
    font-size: 13px;
    line-height: 1;
}

.comment-time {
    margin: 0;
}

.comment-replies {
    margin-top: 12px;
    margin-left: 6px;
    padding-left: 10px;
    border-left: 2px solid rgba(244, 193, 107, 0.18);
}

.comment-replies .comment-item {
    background: rgba(255, 255, 255, 0.03);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 40;
    padding: 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--gold) 0%, #ffd08a 35%, var(--accent-2) 100%);
    color: rgba(8, 6, 10, 0.95);
    text-decoration: none;
    font-weight: 980;
    text-align: center;
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.55);
}

.sticky-cta:focus-visible {
    outline: none;
    box-shadow: var(--ring), 0 22px 60px rgba(0, 0, 0, 0.55);
}

@media (min-width: 960px) {
    .sticky-cta {
        display: none;
    }
}

/* Desktop tweaks */
@media (min-width: 960px) {
    .hero {
        padding: 34px 0 12px;
    }

    .hero-grid {
        grid-template-columns: 1.02fr 0.98fr;
        gap: 22px;
        align-items: center;
    }

    .hero-copy h1 {
        font-size: 44px;
    }

    .subhead {
        font-size: 15px;
    }

    .vsl-container {
        max-width: 520px;
    }

    .bb-card-body {
        flex-direction: row;
        align-items: center;
        padding: 22px;
        gap: 22px;
    }

    .bb-card-right {
        text-align: left;
    }

    .bb-price-per-bottle {
        justify-content: flex-start;
    }

    .bb-guarantee {
        grid-template-columns: auto 1fr;
        align-items: center;
        padding: 22px;
        gap: 22px;
    }

    .bb-guarantee-text {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
    }

    .bb-btn,
    .btn,
    .topbar-cta {
        transition: none;
    }
}
