/* ==========================================
   METALY — PÁGINA DE VENDAS v2.0
   Mobile-First | Alta Conversão | Bold Design
   Skills: Frontend Design + Copywriting + Psychology
   ========================================== */

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

:root {
    /* Paleta principal — industrial & confiança */
    --green-it: #009246;
    --red-it: #CE2B37;
    --black: #0a0a0a;
    --dark: #141414;
    --dark-2: #1c1c1c;
    --white: #ffffff;
    --off-white: #fafaf9;
    --cream: #f5f3f0;

    /* Grays — tom quente */
    --gray-100: #f4f3f1;
    --gray-200: #e5e3df;
    --gray-300: #c8c5bf;
    --gray-400: #a09d96;
    --gray-500: #6e6b64;
    --gray-600: #4a4843;
    --gray-700: #2e2d2a;

    /* Accent — laranja vibrante */
    --accent: #FF6B00;
    --accent-hover: #E85D00;
    --accent-glow: rgba(255, 107, 0, 0.25);
    --accent-soft: #FFF4EC;

    /* Semânticas */
    --success: #0DAF5C;
    --success-dark: #0B9A50;
    --success-glow: rgba(13, 175, 92, 0.3);
    --pix: #00BDAE;
    --pix-bg: #E8FAF8;
    --danger: #E53935;
    --danger-light: #FDECEA;

    /* Sombras */
    --shadow-xs: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 64px rgba(0,0,0,0.16);

    /* Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-full: 100px;

    /* Tipografia */
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'Space Mono', 'Courier New', monospace;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 72px;
}

.container {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
}

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

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

/* ==========================================
   NOTIFICAÇÃO DE COMPRA
   ========================================== */
.purchase-notification {
    position: fixed;
    bottom: 90px;
    left: 16px;
    right: 16px;
    max-width: 360px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
    box-shadow: var(--shadow-lg);
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s;
}

.purchase-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.notif-avatar {
    width: 36px;
    height: 36px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.notif-text {
    font-size: 13px;
    line-height: 1.4;
    flex: 1;
}

.notif-action {
    display: block;
    color: var(--gray-500);
    font-size: 12px;
}

.notif-time {
    font-size: 11px;
    color: var(--gray-400);
    white-space: nowrap;
}

/* ==========================================
   BARRA DE URGÊNCIA
   ========================================== */
.urgency-bar {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 1000;
    letter-spacing: 0.3px;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.urgency-text {
    opacity: 0.85;
}

.countdown {
    background: var(--danger);
    padding: 3px 10px;
    border-radius: var(--radius-xs);
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ==========================================
   HEADER
   ========================================== */
.header {
    background: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--black);
}

.logo-flag {
    display: flex;
    gap: 0;
    height: 18px;
    border-radius: 3px;
    overflow: hidden;
}

.flag-green, .flag-white, .flag-red {
    width: 7px;
    height: 100%;
}

.flag-green { background: var(--green-it); }
.flag-white { background: #eee; }
.flag-red { background: var(--red-it); }

.header-trust {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.header-rating {
    background: #FFF8E1;
    color: #F5A623;
    padding: 3px 8px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 11px;
}

.header-sales {
    color: var(--gray-500);
    font-weight: 500;
}

/* ==========================================
   HERO
   ========================================== */
.hero {
    padding: 28px 0 36px;
    background: var(--off-white);
    position: relative;
}

.badge-row {
    display: flex;
    gap: 8px;
    margin-bottom: 14px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.badge-hot {
    background: var(--accent);
    color: white;
}

.badge-stock {
    background: var(--danger-light);
    color: var(--danger);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.hero-title {
    font-size: 24px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--black);
    letter-spacing: -0.3px;
}

.highlight {
    color: var(--success);
    position: relative;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.55;
}

/* Social Proof Inline */
.hero-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding: 10px 14px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
}

.mini-avatars {
    display: flex;
}

.mini-av {
    width: 28px;
    height: 28px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    margin-left: -8px;
    border: 2px solid var(--white);
}

.mini-av:first-child { margin-left: 0; background: #4CAF50; }
.mini-av:nth-child(2) { background: #2196F3; }
.mini-av:nth-child(3) { background: #9C27B0; }
.mini-av:nth-child(4) { background: #FF9800; }
.mini-av:nth-child(5) { background: var(--gray-400); font-size: 10px; }

.hero-proof-text {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.3;
}

/* Gallery */
.product-gallery {
    margin-bottom: 24px;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    margin-bottom: 10px;
    border: 1px solid var(--gray-200);
}

.main-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.gallery-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(4px);
}

.live-dot-sm {
    width: 6px;
    height: 6px;
    background: #ff4444;
    border-radius: 50%;
    animation: blink 1.5s infinite;
    display: inline-block;
}

.gallery-thumbs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
}

.gallery-thumbs::-webkit-scrollbar { display: none; }

.thumb {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 2px solid var(--gray-200);
    cursor: pointer;
    flex-shrink: 0;
    transition: border-color 0.2s, transform 0.2s;
}

.thumb:active { transform: scale(0.95); }

.thumb.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

/* Price Box */
.price-box {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    overflow: hidden;
}

.price-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
}

.price-label {
    font-size: 13px;
    color: var(--gray-500);
}

.price-old {
    text-decoration: line-through;
    color: var(--danger);
    font-weight: 700;
    font-size: 15px;
}

.price-divider {
    width: 100%;
    height: 1px;
    background: var(--gray-200);
    margin-bottom: 12px;
}

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

.price-label-now {
    font-size: 12px;
    color: var(--success);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 4px;
}

.price-main {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin: 4px 0 12px;
}

.price-currency {
    font-size: 22px;
    font-weight: 800;
    color: var(--success);
    margin-top: 10px;
}

.price-value {
    font-size: 60px;
    font-weight: 900;
    color: var(--success);
    line-height: 1;
    font-family: var(--font-body);
}

.price-installment {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 12px;
    text-align: center;
}

.price-pix {
    background: var(--pix-bg);
    border: 1px solid var(--pix);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
}

.pix-badge {
    background: var(--pix);
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius-xs);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.pix-price {
    color: var(--dark);
    font-size: 17px;
}

.pix-discount {
    color: var(--success);
    font-size: 12px;
    font-weight: 600;
}

/* ==========================================
   CTA BUTTONS
   ========================================== */
.cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 18px 24px;
    background: var(--success);
    color: white;
    text-align: center;
    font-size: 16px;
    font-weight: 800;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 20px var(--success-glow);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px var(--success-glow);
    background: var(--success-dark);
}

.cta-button:active {
    transform: translateY(0) scale(0.98);
}

.cta-icon {
    margin-bottom: 2px;
}

.cta-sub {
    display: block;
    font-size: 11px;
    font-weight: 500;
    text-transform: none;
    opacity: 0.85;
    margin-top: 4px;
    letter-spacing: 0;
}

.cta-big {
    padding: 22px 24px;
    font-size: 17px;
}

.cta-secondary {
    background: var(--gray-700);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.cta-secondary:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    background: var(--dark);
}

/* Pulse */
.cta-pulse {
    animation: cta-glow 2.5s ease-in-out infinite;
}

@keyframes cta-glow {
    0%, 100% { box-shadow: 0 4px 20px var(--success-glow); }
    50% { box-shadow: 0 4px 40px rgba(13, 175, 92, 0.5); }
}

/* Trust Badges */
.trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
}

.trust-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.trust-item strong {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.trust-item span {
    font-size: 11px;
    color: var(--gray-400);
}

/* ==========================================
   SEÇÃO DE DOR
   ========================================== */
.pain-section {
    padding: 36px 0;
    background: var(--dark);
    color: var(--white);
}

.pain-title {
    font-size: 20px;
    font-weight: 800;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 20px;
}

.pain-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pain-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--gray-300);
    border-left: 3px solid var(--danger);
}

.pain-x {
    color: var(--danger);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.pain-solution {
    text-align: center;
    margin-top: 24px;
}

.pain-arrow {
    display: block;
    font-size: 24px;
    color: var(--success);
    margin-bottom: 8px;
    animation: bounce-down 1.5s infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

.pain-solution p {
    font-size: 16px;
    font-weight: 700;
    color: var(--success);
}

/* ==========================================
   VSL
   ========================================== */
.vsl-section {
    padding: 40px 0;
    background: var(--black);
}

.vsl-title {
    color: var(--white) !important;
}

.vsl-wrapper {
    margin-top: 16px;
}

.vsl-placeholder {
    width: 100%;
    aspect-ratio: 9/16;
    max-height: 480px;
    background: var(--dark-2);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray-600);
}

.vsl-play-btn {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
    margin-bottom: 16px;
    box-shadow: 0 0 30px var(--accent-glow);
}

.vsl-text {
    color: var(--gray-400);
    font-size: 14px;
    font-weight: 600;
}

.vsl-sub {
    color: var(--gray-600);
    font-size: 12px;
    margin-top: 4px;
}

/* ==========================================
   PROVA SOCIAL
   ========================================== */
.social-proof {
    padding: 44px 0;
    background: var(--cream);
}

.proof-header {
    text-align: center;
    margin-bottom: 24px;
}

.shopee-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--white);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 13px;
}

.shopee-stars {
    color: #F5A623;
    font-size: 13px;
}

.shopee-rating {
    font-weight: 800;
    color: var(--accent);
}

.shopee-count {
    color: var(--gray-400);
    font-size: 12px;
}

.section-title {
    font-size: 21px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 6px;
    line-height: 1.3;
    color: var(--black);
    letter-spacing: -0.2px;
}

.section-sub {
    font-size: 14px;
    color: var(--gray-500);
    text-align: center;
}

/* Reviews Carousel */
.reviews-carousel {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0 8px;
}

.reviews-carousel::-webkit-scrollbar { display: none; }

.review-card {
    min-width: 84%;
    scroll-snap-align: center;
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
}

.review-stars {
    color: #F5A623;
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 14px;
    font-style: italic;
    line-height: 1.6;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.review-badge {
    display: block;
    font-size: 11px;
    color: var(--success);
    font-weight: 700;
}

.review-img-wrap {
    width: 100%;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.review-photo {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: all 0.3s;
    cursor: pointer;
}

.dot.active {
    background: var(--accent);
    width: 24px;
    border-radius: 4px;
}

/* ==========================================
   BENEFÍCIOS
   ========================================== */
.benefits {
    padding: 44px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}

.benefit-card {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 20px 14px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid transparent;
}

.benefit-card:active {
    transform: scale(0.97);
}

.benefit-icon {
    font-size: 30px;
    margin-bottom: 10px;
    display: block;
}

.benefit-card h3 {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--black);
}

.benefit-card p {
    font-size: 12px;
    color: var(--gray-500);
    line-height: 1.45;
}

/* ==========================================
   SELETOR DE PRODUTO
   ========================================== */
.product-selector {
    padding: 44px 0;
    background: var(--cream);
}

.model-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}

.model-btn {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 16px 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.25s;
    position: relative;
    font-family: inherit;
}

.model-btn:active {
    transform: scale(0.97);
}

.model-btn.active {
    border-color: var(--accent);
    background: var(--accent-soft);
    box-shadow: 0 0 0 1px var(--accent);
}

.model-name {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: var(--black);
    letter-spacing: 1px;
}

.model-desc {
    display: block;
    font-size: 12px;
    color: var(--gray-500);
    margin-top: 2px;
}

.model-price-sm {
    display: block;
    font-size: 20px;
    font-weight: 900;
    color: var(--success);
    margin-top: 6px;
}

.best-seller-tag {
    position: absolute;
    top: -10px;
    right: -5px;
    background: var(--accent);
    color: white;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Color Selector */
.color-selector {
    margin: 16px 0;
    text-align: center;
}

.color-label {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--gray-600);
}

.color-options {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.color-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}

.color-btn:active { transform: scale(0.9); }

.color-btn.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent);
    transform: scale(1.05);
}

/* Selected Product Image */
.selected-product-img {
    margin: 16px 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.selected-product-img img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Quick Specs */
.quick-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 16px 0;
}

.spec-item {
    background: var(--white);
    padding: 12px;
    border-radius: var(--radius-sm);
    text-align: center;
    border: 1px solid var(--gray-200);
}

.spec-label {
    display: block;
    font-size: 10px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 4px;
}

.spec-value {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: var(--black);
}

/* Selector Price Box */
.selector-price-box {
    background: var(--white);
    border: 2px solid var(--success);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    margin: 16px 0;
    position: relative;
    overflow: hidden;
}

.price-tag-label {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: var(--success);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.selector-price-box .price-from-sm {
    margin-top: 24px;
}

.price-from-sm {
    font-size: 13px;
    color: var(--gray-500);
}

.price-from-sm s {
    color: var(--danger);
    font-weight: 700;
}

.price-main-sm {
    margin: 6px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
}

.currency-sm {
    font-size: 20px;
    font-weight: 800;
    color: var(--success);
    margin-top: 8px;
}

.value-sm {
    font-size: 52px;
    font-weight: 900;
    color: var(--success);
    line-height: 1;
}

.installment-sm {
    font-size: 14px;
    color: var(--gray-600);
    margin-bottom: 10px;
}

.pix-sm {
    background: var(--pix-bg);
    border: 1px solid var(--pix);
    border-radius: var(--radius-sm);
    padding: 10px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pix-badge-sm {
    background: var(--pix);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
}

.pix-save {
    color: var(--success);
    font-size: 12px;
    font-weight: 700;
}

/* Stock Alert */
.stock-alert {
    margin: 16px 0;
}

.stock-bar {
    width: 100%;
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 8px;
}

.stock-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--danger), #ff7043);
    border-radius: 3px;
    transition: width 0.5s;
}

.stock-text {
    font-size: 13px;
    color: var(--danger);
    font-weight: 600;
    text-align: center;
}

/* Secure Badges */
.secure-badges {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 12px;
    font-size: 11px;
    color: var(--gray-400);
    font-weight: 500;
}

/* ==========================================
   COMO MONTAR
   ========================================== */
.how-to-mount {
    padding: 44px 0;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.step {
    background: var(--gray-100);
    border-radius: var(--radius);
    padding: 18px 20px;
    position: relative;
    border: 1px solid var(--gray-200);
}

.step-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.step-number {
    position: absolute;
    top: -8px;
    left: -4px;
    width: 26px;
    height: 26px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.step-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.step h3 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 2px;
    color: var(--black);
}

.step p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.4;
}

.mount-video-hint {
    text-align: center;
    margin-top: 20px;
    padding: 14px;
    background: var(--accent-soft);
    border: 1px solid var(--accent);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--gray-600);
}

/* ==========================================
   COMPARATIVO
   ========================================== */
.comparison {
    padding: 44px 0;
    background: var(--cream);
}

.comparison-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.comp-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    border: 2px solid var(--gray-200);
    position: relative;
}

.comp-featured {
    border-color: var(--accent);
    box-shadow: 0 4px 30px var(--accent-glow);
}

.comp-best {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.comp-img-wrap {
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 16px;
    background: var(--gray-100);
}

.comp-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.comp-name {
    font-size: 22px;
    font-weight: 900;
    margin-bottom: 4px;
    color: var(--black);
    letter-spacing: 1px;
}

.comp-sub {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-500);
}

.comp-features {
    list-style: none;
    text-align: left;
    margin: 16px 0;
}

.comp-features li {
    padding: 7px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--gray-100);
    color: var(--gray-600);
}

.comp-diff {
    color: var(--gray-400);
    font-style: italic;
}

.comp-plus {
    color: var(--success) !important;
}

.comp-price {
    margin: 16px 0 4px;
}

.comp-price s {
    font-size: 14px;
    color: var(--gray-400);
    margin-right: 8px;
}

.comp-price strong {
    font-size: 34px;
    color: var(--success);
    font-weight: 900;
}

.comp-installment {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.comp-popular {
    margin-top: 10px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 700;
}

/* ==========================================
   DEPOIMENTOS FOTOS
   ========================================== */
.testimonials {
    padding: 44px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin-top: 20px;
}

.testimonial-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
}

.testimonial-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform 0.3s;
}

.testimonial-item:active .testimonial-img {
    transform: scale(1.03);
}

/* ==========================================
   FAQ
   ========================================== */
.faq {
    padding: 44px 0;
    background: var(--cream);
}

.faq-list {
    margin-top: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: border-color 0.2s;
}

.faq-item.active {
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-700);
    text-align: left;
    font-family: inherit;
    gap: 12px;
}

.faq-arrow {
    font-size: 18px;
    font-weight: 800;
    transition: transform 0.3s;
    color: var(--gray-400);
    flex-shrink: 0;
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ==========================================
   CTA FINAL
   ========================================== */
.final-cta {
    padding: 48px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,107,0,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-box {
    text-align: center;
    color: var(--white);
    position: relative;
}

.final-cta h2 {
    font-size: 23px;
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.final-cta p {
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 24px;
    line-height: 1.5;
}

.final-price {
    margin-bottom: 24px;
}

.final-price-from {
    font-size: 14px;
    color: var(--gray-500);
}

.final-price-from s {
    color: var(--danger);
}

.final-price-main {
    font-size: 17px;
    margin: 8px 0;
    color: var(--gray-300);
}

.final-price-main strong {
    font-size: 42px;
    color: var(--success);
    font-weight: 900;
}

.final-price-installment {
    font-size: 14px;
    color: var(--gray-400);
}

.final-guarantees {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
    font-size: 12px;
    color: var(--gray-400);
}

/* Live Viewers */
.live-viewers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 13px;
    color: var(--gray-400);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

/* ==========================================
   WHATSAPP FLUTUANTE
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 88px;
    right: 16px;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    transition: transform 0.2s;
}

.whatsapp-float:active {
    transform: scale(0.92);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 32px 0;
    background: var(--black);
    color: var(--gray-500);
    text-align: center;
}

.footer-logo {
    font-size: 18px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 3px;
    margin-bottom: 8px;
}

.footer-cnpj, .footer-address {
    font-size: 12px;
    margin-bottom: 4px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    color: var(--gray-500);
    text-decoration: underline;
}

.footer-copy {
    font-size: 11px;
    color: var(--gray-600);
}

/* ==========================================
   BARRA MOBILE INFERIOR
   ========================================== */
.mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.bottom-bar-price {
    display: flex;
    flex-direction: column;
}

.bottom-old {
    font-size: 11px;
    color: var(--gray-400);
    text-decoration: line-through;
}

.bottom-new {
    font-size: 22px;
    font-weight: 900;
    color: var(--success);
}

.bottom-bar-cta {
    background: var(--success);
    color: white;
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px var(--success-glow);
    transition: background 0.2s;
}

.bottom-bar-cta:active {
    background: var(--success-dark);
}

/* ==========================================
   RESPONSIVO
   ========================================== */
@media (min-width: 768px) {
    .container {
        max-width: 580px;
    }

    .hero-title {
        font-size: 30px;
    }

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

    .comparison-cards {
        flex-direction: row;
    }

    .comp-card {
        flex: 1;
    }

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

    .purchase-notification {
        left: auto;
        right: 24px;
        max-width: 340px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 680px;
    }

    .mobile-bottom-bar {
        display: none;
    }

    body {
        padding-bottom: 0;
    }

    .whatsapp-float {
        bottom: 24px;
    }

    .purchase-notification {
        bottom: 24px;
    }
}

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

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* ==========================================
   METALY REDESIGN — inspirado no DESIGN.md
   Mantem estrutura/copy, troca apenas camada visual.
   ========================================== */

:root {
    --green-it: #777169;
    --red-it: #777169;
    --black: #000000;
    --dark: #000000;
    --dark-2: #f5f3f1;
    --white: #ffffff;
    --off-white: #fdfcfc;
    --cream: #f5f3f1;

    --gray-100: #f5f3f1;
    --gray-200: #e5e5e5;
    --gray-300: #b1b0b0;
    --gray-400: #a59f97;
    --gray-500: #777169;
    --gray-600: #57534f;
    --gray-700: #000000;

    --accent: #000000;
    --accent-hover: #24211f;
    --accent-glow: rgba(0, 0, 0, 0.08);
    --accent-soft: #f5f3f1;
    --success: #000000;
    --success-dark: #24211f;
    --success-glow: rgba(0, 0, 0, 0.08);
    --pix: #777169;
    --pix-bg: #f5f3f1;
    --danger: #9a3412;
    --danger-light: #f5f3f1;

    --shadow-xs: rgba(0, 0, 0, 0.075) 0 0 0 0.5px inset;
    --shadow-sm: rgba(0, 0, 0, 0.4) 0 0 1px 0, rgba(0, 0, 0, 0.04) 0 2px 4px;
    --shadow-md: rgba(0, 0, 0, 0.4) 0 0 1px 0, rgba(0, 0, 0, 0.04) 0 2px 4px;
    --shadow-lg: rgba(0, 0, 0, 0.4) 0 0 1px 0, rgba(0, 0, 0, 0.04) 0 2px 4px;
    --shadow-xl: rgba(0, 0, 0, 0.4) 0 0 1px 0, rgba(0, 0, 0, 0.04) 0 2px 4px;

    --radius-xs: 4px;
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-mono: 'Space Mono', 'Courier New', monospace;
}

html {
    background: var(--off-white);
}

body {
    background: var(--off-white);
    color: var(--black);
    font-family: var(--font-body);
    line-height: 1.55;
}

.container {
    max-width: min(100%, 1200px);
    padding: 0 20px;
}

section {
    background: var(--off-white);
}

.urgency-bar {
    top: 0;
    background: rgba(253, 252, 252, 0.92);
    color: var(--black);
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(14px);
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1px;
}

.countdown {
    background: var(--black);
    color: var(--off-white);
    border-radius: var(--radius-full);
    padding: 3px 10px;
    font-size: 12px;
    letter-spacing: 0.08em;
}

.header {
    position: sticky;
    top: 37px;
    z-index: 999;
    background: rgba(253, 252, 252, 0.92);
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(14px);
    padding: 10px 0;
}

.header .container {
    min-height: 36px;
}

.logo-text,
.footer-logo {
    color: var(--black);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.logo-flag {
    height: 10px;
    width: 22px;
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
    background: conic-gradient(from 180deg, #0447ff, #52d0e9, #ff4704, #0447ff);
}

.flag-green,
.flag-white,
.flag-red {
    display: none;
}

.header-rating,
.shopee-badge,
.badge,
.gallery-badge,
.best-seller-tag,
.comp-best,
.price-tag-label,
.pix-badge,
.pix-badge-sm {
    border-radius: var(--radius-full);
    border: 1px solid var(--gray-200);
    box-shadow: none;
}

.header-rating {
    background: var(--white);
    color: var(--black);
    padding: 4px 10px;
    font-weight: 500;
}

.header-sales,
.section-sub,
.hero-subtitle,
.hero-proof-text,
.price-label,
.price-installment,
.color-label,
.installment-sm,
.comp-installment,
.final-price-installment,
.footer,
.footer a,
.footer p {
    color: var(--gray-500);
}

.hero {
    padding: 48px 0 64px;
    background:
        linear-gradient(180deg, rgba(245, 243, 241, 0.72) 0%, rgba(253, 252, 252, 0) 34%),
        var(--off-white);
}

.badge-row {
    gap: 8px;
    margin-bottom: 18px;
}

.badge {
    background: var(--white);
    color: var(--gray-600);
    padding: 6px 12px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.badge-hot {
    background: var(--black);
    color: var(--off-white);
}

.badge-stock {
    background: var(--white);
    color: var(--danger);
    animation: none;
}

.hero-title,
.section-title,
.pain-title,
.final-cta h2 {
    color: var(--black);
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: -0.02em;
}

.hero-title {
    max-width: 760px;
    font-size: clamp(40px, 7.2vw, 84px);
    line-height: 0.98;
    margin-bottom: 20px;
}

.highlight,
.price-value,
.price-currency,
.model-price-sm,
.currency-sm,
.value-sm,
.comp-price strong,
.final-price-main strong,
.bottom-new {
    color: var(--black);
}

.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.08em;
    height: 0.1em;
    background: var(--gray-200);
    z-index: -1;
}

.hero-subtitle {
    max-width: 560px;
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.45;
    margin-bottom: 22px;
}

.hero-proof,
.trust-item,
.price-box,
.review-card,
.benefit-card,
.model-btn,
.selected-product-img,
.spec-item,
.selector-price-box,
.step,
.comp-card,
.faq-item,
.final-cta-box,
.purchase-notification,
.vsl-placeholder {
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.hero-proof {
    width: fit-content;
    max-width: 100%;
    padding: 8px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

.mini-av,
.review-avatar {
    background: conic-gradient(from 180deg, #0447ff, #52d0e9, #ff4704, #0447ff);
    color: var(--white);
    border-color: var(--white);
    font-weight: 600;
}

.mini-av:nth-child(2),
.mini-av:nth-child(4) {
    background: var(--gray-500);
}

.mini-av:nth-child(3),
.mini-av:nth-child(5) {
    background: var(--black);
}

.product-gallery {
    margin: 28px 0 24px;
}

.gallery-main,
.selected-product-img,
.comp-img-wrap,
.review-img-wrap,
.testimonial-item {
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.gallery-main {
    overflow: hidden;
}

.main-product-img,
.selected-product-img img {
    object-fit: contain;
    background: var(--white);
    padding: 10px;
}

.gallery-badge {
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--black);
    backdrop-filter: blur(12px);
    font-weight: 500;
}

.live-dot-sm,
.live-dot {
    background: #ff4704;
    animation: refined-blink 2.4s ease-in-out infinite;
}

@keyframes refined-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.45; transform: scale(0.78); }
}

.thumb {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    background: var(--white);
    padding: 3px;
    object-fit: contain;
}

.thumb.active,
.model-btn.active,
.color-btn.active,
.comp-featured,
.faq-item.active {
    border-color: var(--black);
    box-shadow: var(--shadow-sm), inset 0 0 0 1px var(--black);
}

.price-box,
.selector-price-box {
    border-width: 1px;
    padding: 22px;
}

.price-main,
.price-main-sm {
    align-items: baseline;
}

.price-value,
.value-sm {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: -0.04em;
}

.price-value {
    font-size: clamp(68px, 12vw, 112px);
}

.value-sm {
    font-size: clamp(58px, 10vw, 88px);
}

.price-label-now,
.price-tag-label {
    color: var(--gray-500);
    background: transparent;
    border: 0;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.09em;
}

.price-tag-label {
    position: static;
    padding: 0 0 10px;
}

.selector-price-box .price-from-sm {
    margin-top: 0;
}

.price-pix,
.pix-sm {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    color: var(--black);
}

.pix-badge,
.pix-badge-sm {
    background: var(--white);
    color: var(--black);
    font-weight: 600;
}

.pix-discount,
.pix-save,
.comp-plus,
.review-badge {
    color: var(--gray-600) !important;
}

.cta-button,
.bottom-bar-cta {
    background: var(--black);
    color: var(--off-white);
    border: 1px solid var(--black);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.cta-button {
    min-height: 58px;
    padding: 15px 24px;
}

.cta-button::after {
    display: none;
}

.cta-button:hover,
.bottom-bar-cta:hover {
    background: #24211f;
    transform: translateY(-1px);
    box-shadow: rgba(0, 0, 0, 0.14) 0 8px 24px;
}

.cta-button:active,
.bottom-bar-cta:active {
    transform: translateY(0) scale(0.99);
}

.cta-secondary {
    background: var(--white);
    color: var(--black);
    border-color: var(--gray-200);
}

.cta-secondary:hover {
    background: var(--gray-100);
    color: var(--black);
}

.cta-pulse {
    animation: none;
}

.cta-icon {
    display: none;
}

.cta-sub {
    color: rgba(253, 252, 252, 0.72);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
}

.cta-secondary .cta-sub {
    color: var(--gray-500);
}

.trust-badges {
    gap: 10px;
}

.trust-item {
    border-radius: var(--radius);
    padding: 12px;
}

.trust-icon,
.benefit-icon,
.step-icon {
    filter: grayscale(1);
    opacity: 0.78;
}

.pain-section,
.vsl-section,
.social-proof,
.benefits,
.product-selector,
.how-to-mount,
.comparison,
.testimonials,
.faq,
.final-cta {
    padding: 72px 0;
    background: var(--off-white);
    color: var(--black);
}

.social-proof,
.product-selector,
.comparison,
.faq {
    background: var(--gray-100);
}

.pain-section {
    border-top: 1px solid var(--gray-200);
    border-bottom: 1px solid var(--gray-200);
}

.pain-title,
.section-title,
.final-cta h2 {
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.04;
    margin-bottom: 10px;
}

.section-title {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.pain-items {
    max-width: 820px;
    margin: 28px auto 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.pain-item {
    background: var(--white);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
    border-left: 0;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 14px 16px;
}

.pain-x,
.pain-arrow {
    color: var(--danger);
    animation: none;
}

.pain-solution p {
    color: var(--black);
    font-weight: 500;
}

.vsl-title {
    color: var(--black) !important;
}

.vsl-placeholder {
    max-width: 520px;
    margin: 0 auto;
    background: var(--white);
    border-style: solid;
    color: var(--gray-500);
}

.vsl-play-btn {
    background: var(--black);
    color: var(--off-white);
    box-shadow: none;
}

.vsl-text,
.vsl-sub {
    color: var(--gray-500);
}

.proof-header {
    margin-bottom: 28px;
}

.shopee-badge {
    background: var(--white);
    color: var(--black);
    padding: 7px 14px;
}

.shopee-stars,
.review-stars {
    color: var(--black);
    letter-spacing: 0.08em;
}

.shopee-rating {
    color: var(--black);
    font-weight: 600;
}

.reviews-carousel {
    gap: 16px;
    padding: 6px 2px 10px;
}

.review-card {
    padding: 20px;
}

.review-text {
    color: var(--gray-600);
    font-style: normal;
}

.review-photo,
.testimonial-img,
.comp-img {
    filter: saturate(0.9);
}

.dot {
    background: var(--gray-300);
}

.dot.active {
    background: var(--black);
    border-radius: var(--radius-full);
}

.benefits-grid {
    gap: 12px;
}

.benefit-card {
    background: var(--white);
    border-color: var(--gray-200);
    text-align: left;
}

.benefit-card h3,
.step h3,
.comp-name,
.model-name,
.spec-value,
.faq-question {
    color: var(--black);
    font-weight: 600;
}

.benefit-card p,
.step p,
.comp-features li,
.faq-answer p,
.model-desc {
    color: var(--gray-500);
}

.model-toggle {
    gap: 12px;
}

.model-btn {
    border-width: 1px;
    border-radius: var(--radius);
}

.model-btn.active {
    background: var(--white);
}

.best-seller-tag,
.comp-best {
    background: var(--black);
    color: var(--off-white);
    border-color: var(--black);
    font-weight: 600;
}

.color-btn {
    border: 1px solid var(--gray-200) !important;
    box-shadow: var(--shadow-sm);
}

.quick-specs {
    gap: 10px;
}

.spec-item {
    border-radius: var(--radius);
}

.stock-bar {
    background: var(--gray-200);
}

.stock-fill {
    background: var(--black);
}

.stock-text {
    color: var(--danger);
    font-weight: 500;
}

.secure-badges,
.final-guarantees {
    color: var(--gray-500);
}

.step {
    border-radius: var(--radius);
}

.step-number {
    background: var(--black);
    color: var(--off-white);
    box-shadow: var(--shadow-sm);
}

.mount-video-hint {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    color: var(--gray-600);
    box-shadow: var(--shadow-sm);
}

.comparison-cards {
    gap: 18px;
}

.comp-card {
    border-width: 1px;
}

.comp-featured {
    border-color: var(--black);
}

.comp-img {
    background: var(--white);
    object-fit: contain;
    padding: 10px;
}

.comp-popular {
    color: var(--gray-600);
    font-weight: 500;
}

.testimonial-grid {
    gap: 10px;
}

.testimonial-item {
    border-radius: var(--radius);
}

.faq-list {
    max-width: 880px;
    margin: 24px auto 0;
}

.faq-item {
    border-radius: var(--radius);
}

.faq-question {
    font-size: 15px;
}

.faq-arrow {
    color: var(--gray-400);
}

.faq-item.active .faq-arrow {
    color: var(--black);
}

.final-cta {
    border-top: 1px solid var(--gray-200);
}

.final-cta::before {
    display: none;
}

.final-cta-box {
    max-width: 720px;
    margin: 0 auto;
    padding: 28px;
    border-radius: var(--radius-lg);
    color: var(--black);
}

.final-cta p,
.final-price-from,
.final-price-main,
.live-viewers {
    color: var(--gray-500);
}

.final-price-main strong {
    font-family: var(--font-display);
    font-weight: 300;
    letter-spacing: -0.04em;
}

.whatsapp-float {
    background: var(--black);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.footer {
    background: var(--off-white);
    border-top: 1px solid var(--gray-200);
}

.footer-logo {
    color: var(--black);
}

.footer-links a {
    text-decoration: none;
}

.mobile-bottom-bar {
    background: rgba(253, 252, 252, 0.94);
    border-top: 1px solid var(--gray-200);
    box-shadow: rgba(0, 0, 0, 0.08) 0 -8px 24px;
    backdrop-filter: blur(16px);
}

.bottom-old {
    color: var(--gray-400);
}

.purchase-notification {
    border-radius: var(--radius);
}

.notif-avatar {
    background: var(--black);
    color: var(--off-white);
}

@media (hover: hover) {
    .thumb:hover,
    .benefit-card:hover,
    .review-card:hover,
    .comp-card:hover,
    .model-btn:hover,
    .step:hover,
    .testimonial-item:hover {
        transform: translateY(-2px);
        box-shadow: rgba(0, 0, 0, 0.1) 0 8px 24px;
    }

    .testimonial-item:hover .testimonial-img {
        transform: scale(1.015);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: min(100%, 1120px);
        padding: 0 32px;
    }

    .hero .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
        column-gap: 36px;
        align-items: start;
    }

    .badge-row,
    .hero-title,
    .hero-subtitle,
    .hero-proof,
    .price-box,
    #heroCta,
    .trust-badges {
        grid-column: 1;
    }

    .product-gallery {
        grid-column: 2;
        grid-row: 1 / span 8;
        position: sticky;
        top: 104px;
        margin-top: 4px;
    }

    .price-box {
        max-width: 520px;
    }

    #heroCta,
    .trust-badges {
        max-width: 520px;
    }

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

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

    .reviews-carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: visible;
    }

    .review-card {
        min-width: 0;
        scroll-snap-align: none;
    }

    .carousel-dots {
        display: none;
    }

    .product-selector .container {
        max-width: 920px;
    }

    .comparison-cards {
        flex-direction: row;
    }

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

    .testimonial-img {
        height: 260px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: min(100%, 1200px);
        padding: 0 40px;
    }

    .hero {
        padding: 76px 0 96px;
    }

    .pain-section,
    .vsl-section,
    .social-proof,
    .benefits,
    .product-selector,
    .how-to-mount,
    .comparison,
    .testimonials,
    .faq,
    .final-cta {
        padding: 96px 0;
    }

    .steps {
        max-width: 860px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 520px;
    }

    .header {
        top: 36px;
    }

    .hero-title {
        font-size: clamp(38px, 12vw, 58px);
    }

    .hero-proof {
        width: 100%;
        border-radius: var(--radius);
    }

    .reviews-carousel {
        scroll-padding: 20px;
    }

    .review-card {
        min-width: 86%;
    }

    .final-cta-box {
        padding: 24px 18px;
    }

    .bottom-bar-cta {
        padding: 12px 18px;
        font-size: 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .live-dot-sm,
    .live-dot {
        animation: none;
    }
}

/* ==========================================
   METALY REDESIGN — Stripe reference
   Visual-only override. Copy/structure stay intact.
   ========================================== */

:root {
    --green-it: #81b81a;
    --red-it: #ff6118;
    --black: #061b31;
    --dark: #061b31;
    --dark-2: #0a2540;
    --white: #ffffff;
    --off-white: #ffffff;
    --cream: #e5edf5;

    --gray-100: #f8fafd;
    --gray-200: #e5edf5;
    --gray-300: #d8d6df;
    --gray-400: #64748d;
    --gray-500: #50617a;
    --gray-600: #31415c;
    --gray-700: #061b31;

    --accent: #533afd;
    --accent-hover: #432bd8;
    --accent-glow: rgba(83, 58, 253, 0.22);
    --accent-soft: #f0f2ff;
    --success: #533afd;
    --success-dark: #432bd8;
    --success-glow: rgba(83, 58, 253, 0.22);
    --pix: #81b81a;
    --pix-bg: #f2f8e7;
    --danger: #ff6118;
    --danger-light: #fff0e8;

    --stripe-text: #061b31;
    --stripe-muted: #50617a;
    --stripe-tertiary: #64748d;
    --stripe-violet: #533afd;
    --stripe-soft-violet: #8087ff;
    --stripe-washed-violet: #b9b9f9;
    --stripe-porcelain: #f8fafd;
    --stripe-powder: #e5edf5;
    --stripe-sunburst: linear-gradient(90deg, rgb(114, 50, 241) 3.13%, rgb(251, 118, 250) 50%, rgb(255, 207, 94));
    --stripe-dreamy: radial-gradient(circle at 30% 20%, rgb(127, 125, 252), rgb(244, 75, 204) 30%, rgb(229, 237, 245) 66%);

    --shadow-xs: rgba(23, 23, 23, 0.04) 0 1px 2px;
    --shadow-sm: rgba(23, 23, 23, 0.06) 0 3px 6px 0;
    --shadow-md: rgba(50, 50, 93, 0.12) 0 16px 32px 0;
    --shadow-lg: rgba(23, 23, 23, 0.08) 0 15px 35px 0;
    --shadow-xl: rgba(50, 50, 93, 0.12) 0 24px 48px 0, rgba(83, 58, 253, 0.08) 0 0 32px 8px;

    --radius-xs: 4px;
    --radius-sm: 4px;
    --radius: 6px;
    --radius-lg: 8px;
    --radius-full: 4px;

    --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

html {
    background: var(--white);
}

body {
    background: var(--white);
    color: var(--stripe-text);
    font-family: var(--font-body);
    font-feature-settings: "ss01" 1, "tnum" 1;
    letter-spacing: 0;
    line-height: 1.45;
}

.container {
    max-width: min(100%, 1180px);
}

section {
    background: var(--white);
}

.urgency-bar {
    background: var(--stripe-text);
    color: var(--white);
    border-bottom: 0;
    padding: 9px 16px;
    font-size: 12px;
    font-weight: 400;
    backdrop-filter: none;
}

.countdown {
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    border-radius: 4px;
    padding: 3px 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.header {
    top: 34px;
    background: rgba(255, 255, 255, 0.86);
    border-bottom: 1px solid rgba(229, 237, 245, 0.86);
    backdrop-filter: blur(18px);
    padding: 12px 0;
}

.logo-text,
.footer-logo {
    color: var(--stripe-text);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.logo-flag {
    width: 28px;
    height: 14px;
    border: 0;
    border-radius: 4px;
    background: var(--stripe-sunburst);
    box-shadow: rgba(83, 58, 253, 0.24) 0 4px 14px;
}

.header-rating,
.shopee-badge {
    background: var(--stripe-porcelain);
    color: var(--stripe-text);
    border: 1px solid var(--stripe-powder);
    border-radius: 4px;
    box-shadow: none;
}

.header-sales,
.section-sub,
.hero-subtitle,
.hero-proof-text,
.price-label,
.price-installment,
.color-label,
.installment-sm,
.comp-installment,
.footer,
.footer a,
.footer p {
    color: var(--stripe-muted);
}

.hero {
    position: relative;
    isolation: isolate;
    padding: 76px 0 92px;
    background:
        radial-gradient(circle at 82% 18%, rgba(244, 75, 204, 0.28), rgba(244, 75, 204, 0) 26%),
        radial-gradient(circle at 68% 5%, rgba(83, 58, 253, 0.34), rgba(83, 58, 253, 0) 32%),
        linear-gradient(180deg, #f8fafd 0%, #ffffff 62%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: -240px -120px auto auto;
    width: min(760px, 80vw);
    height: 520px;
    background: var(--stripe-dreamy);
    filter: blur(4px);
    opacity: 0.65;
    transform: rotate(-8deg);
    z-index: -1;
    clip-path: polygon(12% 8%, 100% 0, 88% 78%, 0 100%);
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 90px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff);
    z-index: -1;
}

.badge-row {
    margin-bottom: 18px;
}

.badge,
.best-seller-tag,
.comp-best,
.price-tag-label,
.pix-badge,
.pix-badge-sm,
.gallery-badge {
    border-radius: 4px;
    border: 1px solid transparent;
    box-shadow: none;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.badge {
    padding: 6px 9px;
    font-size: 11px;
    color: var(--stripe-violet);
    background: rgba(83, 58, 253, 0.08);
}

.badge-hot {
    color: var(--white);
    background: var(--stripe-violet);
}

.badge-stock {
    color: var(--danger);
    background: var(--danger-light);
}

.hero-title,
.section-title,
.pain-title,
.final-cta h2 {
    color: var(--stripe-text);
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: -0.03em;
}

.hero-title {
    max-width: 740px;
    font-size: clamp(44px, 7.2vw, 82px);
    line-height: 1.02;
    margin-bottom: 22px;
}

.section-title,
.pain-title,
.final-cta h2 {
    font-size: clamp(34px, 4.8vw, 56px);
    line-height: 1.07;
}

.highlight,
.price-value,
.price-currency,
.model-price-sm,
.currency-sm,
.value-sm,
.comp-price strong,
.final-price-main strong,
.bottom-new {
    color: var(--stripe-violet);
}

.highlight::after {
    background: linear-gradient(90deg, rgba(128, 135, 255, 0.24), rgba(255, 97, 24, 0.18));
    bottom: 0.06em;
    height: 0.14em;
}

.hero-subtitle {
    max-width: 560px;
    font-size: clamp(17px, 2vw, 21px);
    line-height: 1.34;
    margin-bottom: 24px;
}

.hero-proof,
.trust-item,
.price-box,
.review-card,
.benefit-card,
.model-btn,
.selected-product-img,
.spec-item,
.selector-price-box,
.step,
.comp-card,
.faq-item,
.final-cta-box,
.purchase-notification,
.vsl-placeholder {
    background: var(--stripe-porcelain);
    border: 0;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.hero-proof {
    width: fit-content;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(229, 237, 245, 0.9);
    backdrop-filter: blur(16px);
}

.mini-av,
.review-avatar {
    background: var(--stripe-sunburst);
    color: var(--white);
    border-color: var(--white);
    font-weight: 600;
}

.mini-av:nth-child(2),
.mini-av:nth-child(4),
.review-card:nth-child(even) .review-avatar {
    background: linear-gradient(135deg, #533afd, #8087ff);
}

.mini-av:nth-child(3),
.mini-av:nth-child(5),
.review-card:nth-child(3n) .review-avatar {
    background: linear-gradient(135deg, #ff6118, #ffcf5e);
}

.product-gallery {
    margin: 30px 0 24px;
}

.gallery-main,
.selected-product-img,
.comp-img-wrap,
.review-img-wrap,
.testimonial-item {
    background:
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(120deg, rgba(83, 58, 253, 0.32), rgba(244, 75, 204, 0.18), rgba(229, 237, 245, 0.8)) border-box;
    border: 1px solid transparent;
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
}

.main-product-img,
.selected-product-img img,
.comp-img {
    background:
        radial-gradient(circle at 70% 15%, rgba(128, 135, 255, 0.16), rgba(128, 135, 255, 0) 32%),
        linear-gradient(180deg, #ffffff, #f8fafd);
    object-fit: contain;
    padding: 12px;
}

.gallery-badge {
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--stripe-text);
    border: 1px solid rgba(229, 237, 245, 0.9);
    backdrop-filter: blur(16px);
}

.live-dot-sm,
.live-dot {
    background: var(--danger);
    animation: stripe-pulse 2.3s ease-in-out infinite;
}

@keyframes stripe-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255, 97, 24, 0.36); }
    50% { opacity: 0.78; box-shadow: 0 0 0 5px rgba(255, 97, 24, 0); }
}

.thumb {
    background: var(--white);
    border: 1px solid var(--stripe-powder);
    border-radius: 4px;
    padding: 3px;
    object-fit: contain;
    box-shadow: var(--shadow-xs);
}

.thumb.active,
.model-btn.active,
.color-btn.active,
.comp-featured,
.faq-item.active {
    border-color: var(--stripe-washed-violet);
    box-shadow: rgba(83, 58, 253, 0.18) 0 0 0 1px, var(--shadow-md);
}

.price-box,
.selector-price-box {
    position: relative;
    overflow: hidden;
    padding: 22px;
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.price-box::before,
.selector-price-box::before,
.final-cta-box::before {
    content: '';
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 3px;
    background: var(--stripe-sunburst);
}

.price-label-now,
.price-tag-label {
    color: var(--stripe-tertiary);
    background: transparent;
    border: 0;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.price-tag-label {
    position: static;
    padding: 0 0 10px;
}

.selector-price-box .price-from-sm {
    margin-top: 0;
}

.price-value,
.value-sm,
.final-price-main strong {
    font-family: var(--font-body);
    font-weight: 300;
    letter-spacing: -0.045em;
}

.price-value {
    font-size: clamp(66px, 11vw, 104px);
}

.value-sm {
    font-size: clamp(58px, 10vw, 88px);
}

.price-pix,
.pix-sm {
    background: var(--pix-bg);
    border: 1px solid rgba(129, 184, 26, 0.28);
    border-radius: 4px;
    color: var(--stripe-text);
}

.pix-badge,
.pix-badge-sm {
    background: var(--pix);
    color: var(--white);
}

.pix-discount,
.pix-save,
.comp-plus,
.review-badge {
    color: var(--pix) !important;
}

.cta-button,
.bottom-bar-cta {
    background: var(--stripe-violet);
    color: var(--white);
    border: 0;
    border-radius: 4px;
    box-shadow: rgba(83, 58, 253, 0.28) 0 10px 28px;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cta-button {
    min-height: 54px;
    padding: 15px 24px;
}

.cta-button::after {
    display: none;
}

.cta-button:hover,
.bottom-bar-cta:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: rgba(83, 58, 253, 0.32) 0 16px 34px;
}

.cta-secondary {
    background: transparent;
    color: var(--stripe-violet);
    border: 1px solid var(--stripe-washed-violet);
    box-shadow: none;
}

.cta-secondary:hover {
    background: var(--accent-soft);
    color: var(--stripe-violet);
}

.cta-pulse {
    animation: none;
}

.cta-icon {
    display: none;
}

.cta-sub {
    color: rgba(255, 255, 255, 0.76);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
}

.cta-secondary .cta-sub {
    color: var(--stripe-muted);
}

.trust-badges {
    gap: 10px;
}

.trust-item {
    padding: 12px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.trust-icon,
.benefit-icon,
.step-icon {
    filter: none;
    opacity: 0.9;
}

.pain-section,
.vsl-section,
.social-proof,
.benefits,
.product-selector,
.how-to-mount,
.comparison,
.testimonials,
.faq,
.final-cta {
    padding: 76px 0;
    color: var(--stripe-text);
}

.social-proof,
.product-selector,
.comparison,
.faq {
    background:
        radial-gradient(circle at 12% 0%, rgba(128, 135, 255, 0.13), rgba(128, 135, 255, 0) 26%),
        var(--stripe-powder);
}

.pain-section,
.benefits,
.how-to-mount,
.testimonials {
    background: var(--white);
}

.pain-items {
    max-width: 860px;
    margin: 28px auto 0;
    display: grid;
    gap: 10px;
}

.pain-item {
    background: var(--stripe-porcelain);
    color: var(--stripe-muted);
    border: 0;
    border-left: 3px solid var(--danger);
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
}

.pain-x,
.pain-arrow {
    color: var(--danger);
    animation: none;
}

.pain-solution p {
    color: var(--stripe-text);
    font-weight: 500;
}

.vsl-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(244, 75, 204, 0.18), rgba(244, 75, 204, 0) 32%),
        linear-gradient(180deg, #ffffff, #f8fafd);
}

.vsl-title {
    color: var(--stripe-text) !important;
}

.vsl-placeholder {
    max-width: 520px;
    margin: 0 auto;
    background: var(--stripe-porcelain);
}

.vsl-play-btn {
    background: var(--stripe-violet);
    color: var(--white);
    box-shadow: rgba(83, 58, 253, 0.26) 0 12px 28px;
}

.vsl-text,
.vsl-sub {
    color: var(--stripe-muted);
}

.shopee-stars,
.review-stars {
    color: var(--stripe-violet);
    letter-spacing: 0.06em;
}

.shopee-rating {
    color: var(--stripe-text);
}

.reviews-carousel {
    gap: 16px;
}

.review-card,
.benefit-card,
.model-btn,
.step,
.comp-card,
.faq-item {
    background: var(--stripe-porcelain);
}

.review-text {
    color: var(--stripe-muted);
    font-style: normal;
}

.review-photo,
.testimonial-img {
    filter: saturate(0.95);
}

.dot {
    background: var(--stripe-washed-violet);
}

.dot.active {
    background: var(--stripe-violet);
    border-radius: 4px;
}

.benefit-card {
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.benefit-card h3,
.step h3,
.comp-name,
.model-name,
.spec-value,
.faq-question {
    color: var(--stripe-text);
    font-weight: 500;
}

.benefit-card p,
.step p,
.comp-features li,
.faq-answer p,
.model-desc {
    color: var(--stripe-muted);
}

.model-btn {
    border: 1px solid transparent;
    padding: 16px 12px;
}

.model-btn.active {
    background: var(--white);
}

.best-seller-tag,
.comp-best {
    background: var(--stripe-violet);
    color: var(--white);
    border: 0;
}

.color-btn {
    border: 1px solid var(--stripe-powder) !important;
    box-shadow: var(--shadow-sm);
}

.spec-item {
    background: var(--white);
}

.stock-bar {
    background: rgba(83, 58, 253, 0.14);
}

.stock-fill {
    background: var(--stripe-sunburst);
}

.stock-text {
    color: var(--danger);
    font-weight: 500;
}

.secure-badges,
.final-guarantees {
    color: var(--stripe-tertiary);
}

.step-number {
    background: var(--stripe-violet);
    color: var(--white);
    box-shadow: rgba(83, 58, 253, 0.2) 0 8px 20px;
}

.mount-video-hint {
    background: var(--stripe-porcelain);
    border: 0;
    border-radius: 6px;
    color: var(--stripe-muted);
    box-shadow: var(--shadow-sm);
}

.comp-featured {
    background: var(--white);
}

.comp-img {
    object-fit: contain;
}

.comp-popular {
    color: var(--stripe-violet);
    font-weight: 500;
}

.faq-question {
    font-size: 15px;
}

.faq-arrow,
.faq-item.active .faq-arrow {
    color: var(--stripe-violet);
}

.final-cta {
    background:
        linear-gradient(180deg, #ffffff, #f8fafd);
    border-top: 1px solid var(--stripe-powder);
}

.final-cta::before {
    display: none;
}

.final-cta-box {
    position: relative;
    max-width: 760px;
    margin: 0 auto;
    padding: 32px;
    overflow: hidden;
    background:
        radial-gradient(circle at 86% 12%, rgba(244, 75, 204, 0.16), rgba(244, 75, 204, 0) 30%),
        var(--white);
    box-shadow: var(--shadow-xl);
}

.final-cta p,
.final-price-from,
.final-price-main,
.live-viewers {
    color: var(--stripe-muted);
}

.whatsapp-float {
    background: var(--stripe-violet);
    border: 0;
    border-radius: 50%;
    box-shadow: rgba(83, 58, 253, 0.28) 0 12px 28px;
}

.footer {
    background: var(--white);
    border-top: 1px solid var(--stripe-powder);
}

.footer-logo {
    color: var(--stripe-text);
}

.footer-links a {
    text-decoration: none;
}

.mobile-bottom-bar {
    background: rgba(255, 255, 255, 0.92);
    border-top: 1px solid var(--stripe-powder);
    box-shadow: rgba(50, 50, 93, 0.12) 0 -12px 28px;
    backdrop-filter: blur(18px);
}

.bottom-old {
    color: var(--stripe-tertiary);
}

.purchase-notification {
    background: var(--white);
    border-radius: 6px;
    box-shadow: var(--shadow-lg);
}

.notif-avatar {
    background: var(--stripe-violet);
    color: var(--white);
}

@media (hover: hover) {
    .thumb:hover,
    .benefit-card:hover,
    .review-card:hover,
    .comp-card:hover,
    .model-btn:hover,
    .step:hover,
    .testimonial-item:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-md);
    }
}

@media (min-width: 768px) {
    .container {
        max-width: min(100%, 1160px);
        padding: 0 32px;
    }

    .hero .container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(340px, 0.76fr);
        column-gap: 48px;
        align-items: start;
    }

    .product-gallery {
        top: 104px;
    }

    .reviews-carousel {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        overflow: visible;
    }

    .review-card {
        min-width: 0;
    }

    .carousel-dots {
        display: none;
    }

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

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

    .comparison-cards {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 88px 0 112px;
    }

    .pain-section,
    .vsl-section,
    .social-proof,
    .benefits,
    .product-selector,
    .how-to-mount,
    .comparison,
    .testimonials,
    .faq,
    .final-cta {
        padding: 96px 0;
    }
}

@media (max-width: 767px) {
    .header {
        top: 34px;
    }

    .hero {
        padding: 44px 0 64px;
    }

    .hero::before {
        inset: -170px -190px auto auto;
        width: 540px;
        height: 420px;
        opacity: 0.48;
    }

    .hero-title {
        font-size: clamp(40px, 11vw, 54px);
        line-height: 1.02;
    }

    .hero-proof {
        width: 100%;
    }

    .review-card {
        min-width: 86%;
    }

    .final-cta-box {
        padding: 28px 18px;
    }

    .bottom-bar-cta {
        padding: 12px 18px;
        font-size: 13px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .live-dot-sm,
    .live-dot {
        animation: none;
    }
}
