:root {
    --primary: #4C0714;
    --primary-dark: #2E030B;
    --primary-light: #7A1024;
    --primary-soft: #A61B3C;
    --accent: #E8D8DC;
    --accent-strong: #C08A95;
    --gold: #D4AF37;
    --gold-light: #F3D67A;
    --success: #2F8F63;
    --white: #FFFFFF;
    --gray-50: #FCF8F9;
    --gray-100: #F3EDEF;
    --gray-200: #E2D5D9;
    --gray-400: #9A8A91;
    --gray-600: #5F4D54;
    --gray-800: #241317;
    --shadow-sm: 0 2px 4px rgba(76, 7, 20, 0.08);
    --shadow-md: 0 4px 20px rgba(76, 7, 20, 0.14);
    --shadow-lg: 0 10px 40px rgba(76, 7, 20, 0.2);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --text: #241317;
    --muted: #6E5A61;
    --line: #E7DADF;
    --bg: #FFFFFF;
    --shadow: 0 10px 30px rgba(76, 7, 20, .10);
    --max: 980px;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&display=swap');

.ticker-container {
    width: 100%;
    overflow: hidden;
    background-color: var(--primary-dark);
    white-space: nowrap;
    padding: 0;
}

.headline {
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #fff;
    text-align: center;
    font-weight: 900;
    font-size: 24px;
}

.ticker-wrapper {
    display: inline-flex;
    animation: scroll 20s linear infinite;
}

.ticker-content {
    color: #FDF7F8;
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 500;
    padding-right: 0;
}

.playervt {
    margin: 4px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.logo-bar {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.logo-bar img {
    max-height: 55px;
    width: auto;
    display: block;
}

.img2 img {
    max-height: 45px;
    width: auto;
    display: block;
}

/* ===== BORDA PREMIUM - BEST VALUE ===== */

.pricing-card.featured {
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
}

.pricing-card.featured::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 18px;
    padding: 3px;
    background: conic-gradient(
        from 0deg,
        var(--primary-dark),
        var(--primary),
        var(--primary-soft),
        var(--gold),
        var(--primary-soft),
        var(--primary),
        var(--primary-dark)
    );
    animation: rotateGold 4s linear infinite;
    z-index: -1;
}

.pricing-card.featured::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    border-radius: 16px;
    z-index: -1;
}

@keyframes rotateGold {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* POPUP FELIPE */

.purchase-notification {
    position: fixed;
    bottom: 100px;
    left: 25px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(76, 7, 20, .15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    animation: slideIn .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: 1px solid var(--line);
}

@keyframes slideIn {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    to {
        transform: translateX(-120%);
        opacity: 0;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.notification-text {
    display: flex;
    flex-direction: column;
}

.notification-text strong {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 14px;
}

.notification-text span {
    font-size: 12px;
    color: var(--gray-600);
}

@media (max-width: 480px) {
    .purchase-notification {
        top: 150px;
        bottom: auto;
        height: 60px;
    }

    .purchase-notification img {
        width: 40px;
        height: 40px;
    }

    .notification-text strong {
        font-size: 12px;
    }

    .notification-text span {
        font-size: 11px;
    }
}

.logo-bar2 img {
    max-height: 100px;
    width: auto;
    display: flex;
}

.footer {
    background-color: var(--gray-800);
    color: white;
    text-align: center;
    width: 100%;
    padding: 20px 0;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
}

/* HEADER */
.topbar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: #ffffff;
}

.topbar-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-placeholder {
    border: 2px dashed var(--line);
    padding: 6px 16px;
    font-weight: 800;
    font-size: 14px;
    border-radius: 10px;
    color: var(--muted);
}

/* NAV */
.nav {
    border-top: 1px solid var(--line);
}

.nav-inner {
    max-width: var(--max);
    margin: 0 auto;
    padding: 10px 16px;
    display: flex;
    gap: 18px;
    overflow: auto;
}

.nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 14px;
}

/* PAGE */
.page {
    max-width: var(--max);
    margin: 0 auto;
}

/* BADGE */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-100);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 12px;
    color: var(--primary);
}

.badge span {
    width: 8px;
    height: 8px;
    background: var(--primary-soft);
    border-radius: 50%;
}

.breaking-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary));
    color: #fff;
    padding: 12px 20px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breaking-bar span {
    font-weight: normal;
}

.close-btn {
    font-size: 20px;
    cursor: pointer;
}

/* ===== MAIN HEADER ===== */
.main-header {
    background: linear-gradient(135deg, var(--primary-dark), #190208);
    color: #fff;
    padding: 14px 18px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 16px;
}

/* LEFT SIDE */
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* LOGO */
.logo img {
    height: 35px;
}

/* LIVE */
.live-tag {
    background: var(--primary-soft);
    padding: 4px 8px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 3px;
    color: #fff;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 20px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--gold-light);
}

/* RIGHT SIDE */
.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.watch {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
}

.watch-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-soft);
    border-radius: 50%;
}

/* MENU ICON */
.menu-icon {
    width: 22px;
    cursor: pointer;
    display: none;
}

.menu-icon div {
    height: 2px;
    background: #fff;
    margin: 5px 0;
}

.meta {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    color: var(--muted);
    font-weight: 700;
    margin: 10px;
    text-align: center;
}

.meta2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 18px;
    color: var(--gray-800);
    margin: 10px;
    text-align: center;
    font-weight: 700;
}

/* ===== VSL ===== */
.vsl-section {
    padding: 10px 24px;
    display: flex;
    justify-content: center;
}

.vsl-container {
    width: 100%;
    margin: 8px;
}

vturb-smartplayer {
    display: block;
    width: 100%;
}

.livestart {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0 16px;
}

#live-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #ffffff;
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1;
    border-radius: 999px;
    border: 1px solid rgba(76, 7, 20, 0.08);
    box-shadow:
        0 4px 12px rgba(76, 7, 20, 0.08),
        0 1px 2px rgba(76, 7, 20, 0.04);
    user-select: none;
}

.live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-soft);
    box-shadow: 0 0 0 rgba(166, 27, 60, 0.6);
    animation: pulseLive 1.2s infinite;
}

.live-text {
    font-weight: 700;
    letter-spacing: 0.4px;
}

.sep {
    color: var(--gray-600);
}

.views {
    color: var(--text);
    font-weight: 400;
}

.views strong {
    font-weight: 700;
}

@keyframes pulseLive {
    0% { box-shadow: 0 0 0 0 rgba(166, 27, 60, .45); transform: scale(1); }
    70% { box-shadow: 0 0 0 8px rgba(166, 27, 60, 0); transform: scale(1.08); }
    100% { box-shadow: 0 0 0 0 rgba(166, 27, 60, 0); transform: scale(1); }
}

/* ===== PRICING ===== */
.smartplayer-scroll-event {
    margin-top: 40px;
    padding: 30px 0;
    background: rgba(0, 0, 0, 0);
}

.pricing-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    margin-bottom: 30px;
}

@media (min-width: 900px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===== imagens/selos ===== */
.img2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 8px;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .live-tag { display: none; }
    .menu-icon { display: block; }
    .breaking-bar { font-size: 13px; padding: 10px; }
    .logo img { height: 28px; }

    .headline {
        font-size: 20px;
        font-weight: 900;
        line-height: 1.15;
        text-align: center;
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        color: #fff;
    }

    .meta {
        font-size: 13px;
        color: var(--muted);
        font-weight: 700;
        margin: 10px;
        text-align: center;
    }

    .vsl-section {
        padding: 6px 6px;
        display: flex;
        justify-content: center;
    }

    .vsl-container {
        width: 100%;
        max-width: 400px;
    }

    #live-counter {
        font-size: 14px;
        padding: 9px 14px;
        gap: 8px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease, visibility .5s ease;
}

.loader {
    width: 60px;
    height: 60px;
    position: relative;
}

.loader-circle {
    width: 100%;
    height: 100%;
    border: 4px solid hsla(0, 0%, 100%, .2);
    border-top-color: var(--gold-light);
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.progress-bar {
    background: hsla(0, 0%, 100%, .95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(231, 218, 223, .7);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.steps {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.step {
    padding: 6px 18px;
    border-radius: 20px;
    background: var(--primary);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    transition: var(--transition);
}

.step.active {
    background: var(--primary-dark);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(76, 7, 20, .18);
}

.hero {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: #fff;
    padding: 60px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-title {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.text-gradient {
    color: var(--gold-light);
}

.rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: hsla(0, 0%, 100%, .1);
    padding: 8px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.stars {
    color: var(--gold-light);
    font-size: 20px;
}

.pricing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid rgba(0, 0, 0, 0);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    border-color: var(--primary-dark);
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(76, 7, 20, .22);
    cursor: pointer;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -2px;
    left: -90px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--primary-dark);
    padding: 8px 20px;
    font-weight: 700;
    font-size: 21px;
    border-radius: 0 0 12px 12px;
    z-index: 10;
    text-align: center;
    margin-left: 50%;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    padding: 20px;
    text-align: center;
}

.card-title {
    margin-bottom: 5px;
    color: #fff;
    font-size: 1.25rem;
}

.card-subtitle {
    opacity: .9;
    font-size: 14px;
    color: #fff;
}

.card-body {
    padding: 25px;
    text-align: center;
}

.product-image {
    position: relative;
    margin-bottom: 25px;
    transform: scale(0.9);
    transition: var(--transition);
}

.pricing-card:hover .product-image {
    transform: scale(0.95);
}

.product-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px rgba(76, 7, 20, 0.12));
}

.guarantee-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-showcase img {
    height: 300px;
    width: auto;
}

.pricing {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
    margin-bottom: 15px;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    margin-top: 8px;
    color: var(--primary);
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary);
}

.price-period {
    font-size: 13px;
    margin-top: 12px;
    line-height: 1.2;
    color: var(--gray-600);
}

.savings {
    background: linear-gradient(135deg, #F2D7A1, var(--gold-light));
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 12px;
    display: inline-block;
}

.savings.highlight {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: var(--primary-dark);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, .25); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, .45); }
}

.discount-badge {
    background: linear-gradient(135deg, var(--primary-soft), var(--primary));
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 12px;
    display: inline-block;
}

.guarantee {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gray-600);
    font-size: 14px;
}

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 36px;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    width: 100%;
    max-width: 260px;
    margin: 0 auto 15px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: hsla(0, 0%, 100%, .18);
    transform: translate(-50%, -50%);
    transition: width .6s, height .6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

/* ===== BOTÕES ESTILO ORIGINAL (CONVERSÃO) ===== */
/* ===== BOTÕES ESTILO ORIGINAL EXATO ===== */

.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
    width: 100%;
    max-width: 280px;
    margin: 12px auto 20px;

    padding: 22px 20px;
    border-radius: 18px;

    font-weight: 800;
    font-size: 20px;
    line-height: 1.1;

    text-decoration: none;
    border: none;
    cursor: pointer;

    transition: all .25s ease;
}

/* ===== LATERAIS (AMARELO) ===== */
.btn-secondary {
    background: #F5B81E;
    color: #111;

    box-shadow: 
        0 8px 20px rgba(0,0,0,0.08),
        0 4px 10px rgba(245, 184, 30, 0.35);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: #f2b316;
    box-shadow: 
        0 12px 28px rgba(0,0,0,0.12),
        0 6px 14px rgba(245, 184, 30, 0.45);
}

/* ===== CENTRO (GRADIENTE) ===== */
.btn-primary {
    background: linear-gradient(90deg, #F7931A 0%, #F04B43 100%);
    color: #fff;

    box-shadow: 
        0 10px 25px rgba(240, 75, 67, 0.25),
        0 4px 12px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 14px 32px rgba(240, 75, 67, 0.35),
        0 6px 16px rgba(0,0,0,0.15);
}

/* ===== TEXTO ===== */
.btn-subtitle {
    margin-top: 8px;
    font-size: 14px;
    font-weight: 500;
}

/* subtítulo lateral */
.btn-secondary .btn-subtitle {
    color: #3b2a12;
}

/* subtítulo centro */
.btn-primary .btn-subtitle {
    color: rgba(255,255,255,0.95);
}

/* ===== EFEITO DE CLIQUE SUAVE ===== */
.btn:active {
    transform: scale(0.98);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .btn {
        padding: 16px;
        font-size: 16px;
        border-radius: 14px;
    }

    .btn-subtitle {
        font-size: 11px;
        margin-top: 4px;
    }
}

.payment-icons {
    margin-bottom: 15px;
    opacity: .85;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
    color: var(--gray-600);
}

.final-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-800);
}

.shipping {
    color: var(--primary-soft);
    font-weight: 600;
}

.shipping.free {
    color: var(--success);
}

.stock-counter {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: var(--success);
    animation: fadeIn 1s ease;
}

.stock-number,
.stock-number2 {
    font-size: 28px;
    font-weight: 800;
}

.text-disclaimer {
    font-size: 16px;
    color: var(--gray-800);
    text-align: center;
    padding: 20px 0;
}

.trust-section {
    padding: 35px 0;
    background: #fff;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.highlight-purple {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lead {
    font-size: 18px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: var(--gray-600);
}

.shipping-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    padding: 60px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.shipping-banner::after {
    content: "";
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.14) 0%, transparent 70%);
    border-radius: 50%;
}

.banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.underline {
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
    text-decoration-color: var(--gold-light);
}

.highlight-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--gold-light);
    margin: 25px 0;
}

.cta-section,
.final-cta {
    background: linear-gradient(180deg, var(--gray-50), var(--white));
    padding: 50px 0;
    text-align: center;
}

.cta-subtitle {
    background: linear-gradient(90deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 28px;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-top: 25px solid var(--primary);
    margin: 25px auto 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.guarantee-section {
    padding: 20px 0;
    background: #fff;
}

.guarantee-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.guarantee-seal {
    margin-bottom: 25px;
    filter: drop-shadow(0 5px 15px rgba(76, 7, 20, 0.1));
}

.guarantee-subtitle {
    color: var(--success);
    font-size: 24px;
    margin-bottom: 25px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.trust-badges img {
    width: 70px;
    height: 70px;
    transition: var(--transition);
}

.trust-badges img:hover {
    transform: scale(1.1) rotate(5deg);
}

.benefits-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 15px;
}

.subtitle-bnfs {
    text-align: center;
    margin-bottom: 15px;
}

.benefit-icon .subtitle {
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    color: var(--gray-600);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.benefit-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--gray-100);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(76, 7, 20, 0.08), rgba(122, 16, 36, 0.12));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.benefit-icon.icon-1 path,
.benefit-icon.icon-2 path,
.benefit-icon.icon-2 circle,
.benefit-icon.icon-3 path,
.benefit-icon.icon-4 path {
    stroke: var(--primary);
}

.benefit-icon.icon-5 path,
.benefit-icon.icon-6 path {
    fill: var(--primary);
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--gray-800);
}

.benefit-card p {
    color: var(--gray-600);
    line-height: 1.5;
    font-size: 14px;
}

.ingredients-section {
    padding: 60px 0;
    background: #fff;
}

.ingredients-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 2fr));
    gap: 20px;
}

.ingredient-card {
    text-align: center;
    padding: 25px;
    background: var(--gray-50);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid rgba(0, 0, 0, 0);
}

.ingredient-card:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    color: #fff;
    transform: translateY(-3px);
    border-color: var(--primary-dark);
}

.ingredient-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.ingredient-card p {
    font-size: 13px;
    line-height: 1.4;
}

.ingredient-card:hover p {
    color: #fff;
}

.faq-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--gray-50), var(--white));
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--line);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    color: var(--gray-800);
}

.faq-question:hover {
    background: var(--gray-50);
}

.faq-icon {
    font-size: 20px;
    transition: var(--transition);
    color: var(--primary);
}

.faq-question[aria-expanded=true] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease, padding .3s ease;
}

.faq-answer.active {
    padding: 15px 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.6;
    font-size: 14px;
}

.footer {
    background: var(--gray-800);
    color: #fff;
    padding: 50px 0 25px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 12px;
    color: #B8AAB0;
    line-height: 1.5;
}

.footer-disclaimer p {
    margin-bottom: 15px;
}

.copyright {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #4B2C35;
    font-weight: 600;
    font-size: 13px;
}

.purchase-notification {
    position: fixed;
    bottom: 100px;
    left: 25px;
    background: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(76, 7, 20, .15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    animation: slideIn .5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.notification-text {
    display: flex;
    flex-direction: column;
}

.notification-text strong {
    font-weight: 600;
    color: var(--gray-800);
    font-size: 14px;
}

.notification-text span {
    font-size: 12px;
    color: var(--gray-600);
}

@media (max-width: 1024px) {
    .pricing-grid {
        display: flex;
        flex-direction: column;
        max-width: 450px;
        margin: 0 auto 30px;
    }

    .pricing-card.featured {
        order: -1;
        transform: scale(1);
        margin-bottom: 25px;
    }

    .pricing-card:last-child:not(.featured) {
        order: 0;
    }

    .pricing-card:first-child:not(.featured) {
        order: 1;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .product-showcase img {
        height: 220px;
        width: auto;
    }

    .pricing-grid {
        display: flex;
        flex-direction: column;
        padding: 0 10px;
    }

    .pricing-card.featured {
        order: -1 !important;
        margin-top: -10px;
    }

    .pricing-card {
        border-radius: 15px;
        overflow: visible;
        margin-bottom: 15px;
    }

    .pricing-card.featured {
        border: 3px solid var(--primary);
        background: #fff;
    }

    .featured-badge {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
        color: #fff;
        padding: 6px;
        font-weight: 900;
        font-size: 13px;
        letter-spacing: 1px;
        text-align: center;
        border-radius: 12px 12px 0 0;
        left: -50%;
        margin-top: -1px;
        margin-right: -3px;
    }

    .card-header {
        display: none;
    }

    .card-body {
        padding: 12px;
    }

    .pricing-card .card-body {
        display: grid;
        grid-template-areas:
            "info price"
            "benefits benefits"
            "image image"
            "total total"
            "button button";
        grid-template-columns: 1.2fr 1fr;
        gap: 5px;
        align-items: center;
        justify-content: center;
        padding: 12px 10px;
    }

    .pricing-card.featured .card-body {
        grid-template-areas:
            "info price"
            "benefits benefits"
            "image image"
            "total total"
            "button button";
        gap: 4px;
    }

    .pricing-card .package-info {
        grid-area: info;
        display: flex;
        flex-direction: column;
        gap: 3px;
        align-items: flex-start;
        padding-left: 5px;
    }

    .pricing-card .card-body::before {
        content: attr(data-bottles) " Bottles";
        grid-area: info;
        font-size: 18px;
        font-weight: 800;
        color: var(--gray-800);
        line-height: 1;
        text-align: left;
        padding-left: 5px;
        margin-top: -28px;
    }

    .pricing-card .card-body::after {
        content: attr(data-days) " Day Supply";
        grid-area: info;
        font-size: 13px;
        color: var(--gray-600);
        margin-top: 15px;
        line-height: 1.2;
        text-align: left;
        padding-left: 5px;
        font-weight: 500;
    }

    .pricing-card[data-package="2"] .card-body::before {
        content: "2 Bottles";
    }

    .pricing-card[data-package="3"] .card-body::before {
        content: "3 Bottles";
    }

    .pricing-card[data-package="6"] .card-body::before {
        content: "6 Bottles";
    }

    .pricing-card[data-package="2"] .card-body::after,
    .pricing-card[data-package="3"] .card-body::after {
        margin-top: 20px;
    }

    .pricing-card .pricing {
        grid-area: price;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: flex-end;
        gap: 2px;
        padding-right: 5px;
    }

    .pricing-card .price-currency {
        font-size: 20px;
        margin-top: 3px;
        color: var(--gray-800);
        font-weight: 600;
    }

    .pricing-card .price-amount {
        font-size: 38px;
        line-height: .9;
        font-weight: 800;
    }

    .pricing-card .price-period {
        font-size: 9px;
        text-align: left;
        margin-top: 5px;
        margin-left: 2px;
        line-height: 1.1;
        color: var(--gray-600);
        text-transform: uppercase;
        font-weight: 600;
    }

    .pricing-card .benefits-list {
        grid-area: benefits;
        display: flex;
        flex-direction: column;
        gap: 2px;
        width: 100%;
        padding: 3px 0;
        align-items: center;
    }

    .pricing-card .savings,
    .pricing-card .discount-badge,
    .pricing-card .guarantee {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        text-align: center;
        background: none;
        padding: 1px 5px;
        margin: 0;
        font-weight: 600;
        font-size: 11px;
        border-radius: 0;
    }

    .pricing-card .savings::before,
    .pricing-card .discount-badge::before,
    .pricing-card .guarantee::before {
        content: "✓ ";
        color: var(--success);
        font-weight: bold;
        margin-right: 5px;
        font-size: 12px;
    }

    .pricing-card.featured .savings {
        color: var(--primary-soft);
        font-weight: 700;
    }

    .pricing-card.featured .discount-badge {
        color: var(--success);
        font-weight: 700;
    }

    .pricing-card .product-image {
        grid-area: image;
        transform: scale(1);
        margin: 3px auto;
        padding: 70px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        max-height: 120px;
    }

    .pricing-card.featured .product-image {
        transform: scale(1.2);
        max-height: 90px;
        margin: 0 auto;
    }

    .pricing-card .product-image img {
        max-width: 260px;
    }

    .pricing-card.featured .product-image img {
        max-width: 270px;
    }

    .pricing-card[data-package="2"] .product-image,
    .pricing-card[data-package="3"] .product-image {
        transform: scale(1);
        max-height: 110px;
        margin: 0 auto;
    }

    .pricing-card[data-package="2"] .product-image img,
    .pricing-card[data-package="3"] .product-image img {
        max-width: 220px;
    }

    .pricing-card .guarantee-badge {
        display: none;
    }

    .pricing-card .price-details {
        grid-area: total;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 6px 0;
        border-top: 1px solid var(--gray-200);
        margin-top: -3px;
    }

    .pricing-card .price-details > div {
        display: flex;
        align-items: baseline;
        gap: 5px;
    }

    .pricing-card .price-details > div:first-child::before {
        content: "Total: ";
        font-weight: normal;
        color: var(--gray-600);
        font-size: 12px;
    }

    .pricing-card .price-details .original-price {
        text-decoration: line-through;
        font-size: 12px;
        color: var(--gray-400);
    }

    .pricing-card .price-details .final-price {
        font-size: 16px;
        font-weight: 700;
        color: var(--gray-800);
    }

    .pricing-card .price-details .shipping {
        font-size: 10px;
        font-weight: 600;
        white-space: nowrap;
    }

    .pricing-card .btn {
        grid-area: button;
        width: 100%;
        max-width: none;
        margin: 3px 0 0 0;
        padding: 12px;
        font-size: 15px;
        font-weight: 700;
        border-radius: 8px;
    }

    .pricing-card.featured .btn {
        background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
        padding: 14px;
        font-size: 16px;
        margin: 8px 0 0 0;
    }

    .pricing-card .btn-subtitle {
        font-size: 10px;
        opacity: .9;
        margin-top: 1px;
    }

    .pricing-card .payment-icons {
        display: none;
    }

    .pricing-card.featured .card-body {
        position: relative;
    }

    .pricing-card.featured .savings.highlight {
        order: -1;
        background: none;
        color: var(--primary-soft);
        font-size: 11px;
        font-weight: 700;
        animation: none;
    }

    .hero {
        padding: 40px 0 30px;
    }

    .hero-title {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .rating {
        padding: 6px 15px;
    }

    .steps {
        gap: 10px;
    }

    .step {
        padding: 4px 10px;
        font-size: 11px;
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    .trust-badges img {
        width: 60px;
        height: 60px;
    }

    .purchase-notification {
        left: 10px;
        right: 10px;
        bottom: 100px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .pricing-card.featured {
        order: -1 !important;
        margin-bottom: 15px;
        margin-top: -15px;
    }

    .pricing-card .price-amount {
        font-size: 32px;
    }

    body {
        font-size: 14px;
    }

    .container {
        padding: 0 10px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 18px;
    }

    h3 {
        font-size: 15px;
    }

    .benefit-card {
        padding: 20px;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 14px;
    }

    .hero {
        padding: 30px 0 20px;
    }

    .hero-title {
        font-size: 18px;
    }

    .stock-counter {
        font-size: 16px;
        margin-top: 10px;
    }

    .stock-number {
        font-size: 22px;
    }
}

img {
    loading: lazy;
    will-change: transform;
}

html {
    scroll-behavior: smooth;
}

button:focus,
a:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .progress-bar,
    .purchase-notification,
    .btn,
    .arrow-down {
        display: none;
    }
}