/*
  NovaBrisa — Design System v3 (TikTok Shop Style)
  Variables → Reset → Typography → Layout → Offer Bar →
  Header → Drawer → Buttons → Hero → Cards → Grid →
  Carousel → Product Zone → Gallery → Bundle → Reviews →
  Steps → Comparison → Video → FAQ → Sticky Bar →
  WhatsApp → Footer → Legal → Animations
*/

/* ===== VARIABLES ===== */
:root {
  --white: #ffffff;
  --bg: #f7f4ef;
  --black: #1e1c1a;
  --text: #1e1c1a;
  --text2: #7a7570;
  --cta: #1e1c1a;
  --cta-h: #2d2a27;
  --green: #4a7c59;
  --gray1: #ede9e4;
  --gray2: #ddd8d2;
  --gray3: #b0a9a2;
  --acc: #9a8e85;
  --radius: 8px;
  --radius-sm: 4px;
  --radius-lg: 16px;
  --shadow: 0 1px 10px rgba(30,28,26,.05);
  --shadow-lg: 0 6px 32px rgba(30,28,26,.09);
  --transition: all .22s ease;
  --max-w: 1280px;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, select, textarea { font: inherit; }

/* ===== TYPOGRAPHY ===== */
h1 { font-family: var(--font); font-size: clamp(1.9rem, 5vw, 3.2rem); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; }
h2 { font-family: var(--font); font-size: clamp(1.4rem, 3.5vw, 2.2rem); font-weight: 700; line-height: 1.15; letter-spacing: -.01em; }
h3 { font-size: 1.05rem; font-weight: 600; }
p { font-size: .9375rem; color: var(--text2); }

/* ===== LAYOUT ===== */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 16px; }
@media (min-width:768px) { .container { padding: 0 24px; } }
@media (min-width:1200px) { .container { padding: 0 32px; } }

section { padding: 60px 0; }
@media (min-width:768px) { section { padding: 88px 0; } }

/* ===== OFFER BAR ===== */
.offer-bar {
  background: var(--black);
  color: rgba(255,255,255,.65);
  font-size: .72rem;
  font-weight: 400;
  text-align: center;
  padding: 7px 16px;
  position: sticky; top: 0; z-index: 1000;
  letter-spacing: .06em;
}
.offer-bar .js-countdown { font-weight: 800; font-variant-numeric: tabular-nums; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--gray1);
  position: sticky; top: 36px; z-index: 999;
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; gap: 12px;
}
.logo {
  display: flex; align-items: center;
  flex-shrink: 0;
}
.logo img { height: 34px; width: auto; display: block; }
.logo span { color: var(--text2); }

.nav-links {
  display: none;
  align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
@media (min-width:900px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: .85rem; font-weight: 500;
  color: var(--text); padding: 6px 10px;
  border-radius: var(--radius-sm);
  white-space: nowrap; transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--gray1); }

.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn-cta-nav {
  background: var(--text); color: var(--white);
  border: none;
  font-size: .78rem; font-weight: 600;
  padding: 8px 18px; border-radius: 6px;
  white-space: nowrap; transition: var(--transition);
  display: none;
  letter-spacing: .02em;
}
@media (min-width:640px) { .btn-cta-nav { display: block; } }
.btn-cta-nav:hover { opacity: .85; }

.burger {
  width: 36px; height: 36px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px;
  border-radius: var(--radius-sm); transition: var(--transition);
}
@media (min-width:900px) { .burger { display: none; } }
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE DRAWER ===== */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 998;
  pointer-events: none;
}
.drawer-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.5);
  opacity: 0; transition: opacity .3s;
}
.drawer-panel {
  position: absolute; top: 0; right: 0;
  width: 280px; height: 100%;
  background: var(--white);
  transform: translateX(100%);
  transition: transform .3s ease;
  overflow-y: auto; padding: 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.mobile-drawer.open { pointer-events: all; }
.mobile-drawer.open .drawer-overlay { opacity: 1; }
.mobile-drawer.open .drawer-panel { transform: none; }
.drawer-panel a {
  display: block; padding: 12px 8px;
  font-size: .9375rem; font-weight: 500;
  border-bottom: 1px solid var(--gray1);
  color: var(--text);
}
.drawer-panel a:hover { color: var(--cta); }
.drawer-close {
  align-self: flex-end; margin-bottom: 8px;
  font-size: 1.5rem; color: var(--gray3);
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700;
  transition: var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--text); color: var(--white); }
.btn-primary:hover {
  background: var(--cta-h);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255,45,85,.35);
}
.btn-outline {
  background: transparent; color: var(--cta);
  border: 2px solid var(--cta);
}
.btn-outline:hover { background: var(--cta); color: var(--white); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; border-radius: 12px; }
.btn-block { width: 100%; }

/* ===== HERO ===== */
.hero {
  background: var(--white);
  padding: 60px 0 72px; overflow: hidden;
}
/* Full-bleed editorial hero */
.hero-fullbleed {
  position: relative;
  min-height: 100vh;
  background: #1a1917 !important;
  padding: 0 !important;
  display: flex; align-items: center;
  z-index: 0;
}
.hero-bg-wrap {
  position: absolute; inset: 0;
  overflow: hidden;
}
.hero-bg-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  opacity: .42;
}
.hero-fullbleed .hero-inner {
  position: relative; z-index: 2;
  grid-template-columns: 1fr !important;
  padding: 140px 0 120px;
  max-width: 720px;
}
.hero-kicker {
  display: inline-block;
  font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--acc);
  margin-bottom: 18px;
  padding: 5px 14px;
  border: 1px solid var(--acc);
  border-radius: 20px;
}
.hero-fullbleed .hero-kicker { color: rgba(255,255,255,.65); border-color: rgba(255,255,255,.25); }
.hero-fullbleed .hero-title { color: rgba(255,255,255,.82) !important; }
.hero-fullbleed .hero-desc { color: rgba(255,255,255,.72) !important; }
.hero-fullbleed .hero-price-label { color: rgba(255,255,255,.6) !important; }
.hero-fullbleed .hero-price-main { color: #fff !important; }
.hero-fullbleed .hero-price-sub { color: rgba(255,255,255,.55) !important; }
.hero-fullbleed .trust-pill {
  background: rgba(255,255,255,.10) !important;
  color: rgba(255,255,255,.82) !important;
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(6px);
}
.hero-fullbleed .hero-img { display: none !important; }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.45);
  padding: 14px 28px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 600;
  display: inline-flex; align-items: center;
  transition: var(--transition); white-space: nowrap;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.75); }
.hero-inner {
  display: grid; gap: 32px; align-items: center;
}
@media (min-width:768px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,45,85,.1); color: var(--cta);
  font-size: .75rem; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 14px;
}
.hero-title { color: var(--text); margin-bottom: 14px; }
.hero-title em { color: var(--cta); font-style: normal; }
.hero-desc { font-size: .9375rem; color: var(--text2); margin-bottom: 24px; max-width: 520px; }
.hero-price-box { margin-bottom: 24px; }
.hero-price-label { font-size: .8125rem; color: var(--text2); margin-bottom: 4px; }
.hero-price-main {
  font-size: 2.4rem; font-weight: 800; color: var(--text); line-height: 1;
  letter-spacing: -.04em;
}
.hero-price-main small { font-size: 1rem; font-weight: 500; }
.hero-price-sub { font-size: .85rem; color: var(--text2); margin-top: 4px; }
.hero-price-old { text-decoration: line-through; color: var(--gray3); }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 8px; }
.trust-pill {
  display: flex; align-items: center; gap: 5px;
  background: var(--gray1); border-radius: 20px;
  font-size: .75rem; font-weight: 600;
  padding: 5px 11px; color: var(--text);
}
.hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.hero-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ===== SECTION HEADER ===== */
.section-header { text-align: left; margin-bottom: 40px; }
.section-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 500;
  color: var(--text2); text-transform: uppercase;
  letter-spacing: .12em; margin-bottom: 12px;
}
.section-title { color: var(--text); margin-bottom: 10px; }
.section-sub { color: var(--text2); max-width: 520px; margin: 0 auto; }

/* ===== BENEFITS STRIP ===== */
.benefits-strip {
  background: var(--white);
  border-top: 1px solid var(--gray2);
  border-bottom: 1px solid var(--gray1);
  padding: 20px 0;
}
.benefits-strip-inner {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 16px 36px;
}
.benefit-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 500; color: var(--text);
  letter-spacing: .01em;
}

/* ===== CATEGORIES GRID ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); gap: 12px;
}
@media (min-width:480px) { .cat-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width:768px) { .cat-grid { grid-template-columns: repeat(4, 1fr); } }
.cat-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition); display: block;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.cat-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cat-card-body { padding: 12px 14px; }
.cat-card-name { font-size: .9rem; font-weight: 700; color: var(--text); }
.cat-card-count { display: none; }

/* ===== PRODUCT CARD ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); gap: 14px;
}
@media (min-width:640px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width:1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }

.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.product-card-img { position: relative; overflow: hidden; }
.product-card-img img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-img::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(44,35,24,.45) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s ease;
  pointer-events: none;
}
.product-card:hover .product-card-img::after { opacity: 1; }
.badge-card {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  background: var(--black); color: var(--white);
  font-size: .68rem; font-weight: 700;
  padding: 3px 9px; border-radius: 4px; text-transform: uppercase;
  letter-spacing: .04em;
}
.product-card-body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
.product-card-name { font-size: .875rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.product-card-price { margin-top: auto; }
.product-card-price .old { display: none; }
.product-card-price .new { font-size: 1rem; font-weight: 700; color: var(--text); }
.product-card-cta {
  display: block; width: 100%;
  background: var(--text); color: var(--white);
  font-size: .82rem; font-weight: 600;
  text-align: center; padding: 11px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transition: var(--transition); letter-spacing: .02em;
}
.product-card-cta:hover { background: var(--cta-h); opacity: .9; }

/* ===== CAROUSEL ===== */
.carousel-track {
  display: flex; gap: 14px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding-bottom: 4px;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-track .product-card { flex: 0 0 220px; scroll-snap-align: start; }
@media (min-width:768px) { .carousel-track .product-card { flex: 0 0 260px; } }

/* ===== PRODUCT PAGE – 2-COL ZONE ===== */
.product-zone { background: var(--white); padding: 28px 0 48px; }
.product-zone-inner { display: grid; gap: 32px; align-items: start; }
@media (min-width:768px) {
  .product-zone-inner { grid-template-columns: 1fr 1fr; gap: 48px; }
}

/* Gallery */
.gallery-main {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4/3; background: var(--gray1);
  cursor: zoom-in;
  border: 1px solid var(--gray2);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs {
  display: flex; gap: 8px; margin-top: 10px;
  overflow-x: auto; scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.gallery-thumb {
  flex: 0 0 72px; height: 72px;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  transition: var(--transition);
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumb.active { border-color: var(--text); }

/* Product Info */
.breadcrumb {
  font-size: .78rem; color: var(--gray3);
  display: flex; align-items: center; gap: 6px;
  margin-bottom: 8px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--gray3); }
.breadcrumb a:hover { color: var(--cta); }
.product-title {
  font-family: var(--font);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700; margin-bottom: 8px;
  letter-spacing: -.01em; color: var(--text);
}
.product-rating {
  display: flex; align-items: center; gap: 6px;
  font-size: .85rem; color: var(--text2); margin-bottom: 16px;
}
.stars { color: #fbbf24; letter-spacing: 2px; }
.product-price-zone {
  background: var(--gray1); border-radius: var(--radius-lg);
  padding: 16px 20px; margin-bottom: 20px;
}
.price-compre { font-size: .8rem; color: var(--text2); margin-bottom: 4px; }
.price-main {
  font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1;
}
.price-main small { font-size: 1rem; font-weight: 500; }
.price-sub { font-size: .85rem; color: var(--text2); margin-top: 4px; }
.price-old { text-decoration: line-through; color: var(--gray3); font-size: .85rem; }
.price-anchor {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 8px; margin-top: 2px;
}
.price-was { font-size: .85rem; color: var(--gray3); }
.price-was strong { text-decoration: line-through; font-weight: 600; }
.price-off {
  background: #e53935; color: #fff;
  font-size: .72rem; font-weight: 700;
  padding: 3px 9px; border-radius: 4px;
  letter-spacing: .02em;
}
.price-installment { font-size: .82rem; color: var(--green); font-weight: 600; margin-top: 4px; }

/* Selectors */
.selector-label { font-size: .875rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.color-swatches { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.color-swatch {
  width: 32px; height: 32px; border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gray2);
  cursor: pointer; transition: var(--transition);
}
.color-swatch.active { box-shadow: 0 0 0 2px var(--text); }
.color-swatch:hover { box-shadow: 0 0 0 2px var(--text); }

.size-options { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.size-option {
  padding: 7px 16px; border: 2px solid var(--gray2);
  border-radius: var(--radius-sm); font-size: .875rem; font-weight: 600;
  cursor: pointer; transition: var(--transition); background: var(--white);
}
.size-option:hover { border-color: var(--cta); color: var(--cta); }
.size-option.active { border-color: var(--cta); color: var(--cta); background: rgba(255,45,85,.06); }

/* Bundle */
.bundle-selector { margin-bottom: 20px; }
.bundle-options { display: flex; flex-direction: column; gap: 10px; }
.bundle-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 16px; border: 2px solid var(--gray2);
  border-radius: var(--radius); cursor: pointer;
  transition: var(--transition); background: var(--white); gap: 10px;
}
.bundle-option:hover { border-color: var(--text); }
.bundle-option.active { border-color: var(--text); background: rgba(30,28,26,.03); }
.bundle-option-left { display: flex; align-items: center; gap: 10px; }
.bundle-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--gray2); flex-shrink: 0; transition: var(--transition);
}
.bundle-option.active .bundle-radio {
  border-color: var(--text); background: var(--text);
  box-shadow: inset 0 0 0 3px var(--white);
}
.bundle-name { font-size: .875rem; font-weight: 700; color: var(--text); }
.bundle-sub { font-size: .78rem; color: var(--text2); }
.bundle-price { font-size: 1rem; font-weight: 700; color: var(--text); white-space: nowrap; }
.bundle-save {
  background: var(--green); color: var(--white);
  font-size: .7rem; font-weight: 800;
  padding: 2px 7px; border-radius: 10px;
}

.product-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.product-guarantee {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: .78rem; color: var(--text2); padding-top: 4px;
}
.product-guarantee span { display: flex; align-items: center; gap: 5px; }

/* Order Bump */
.order-bump {
  border: 2px dashed var(--cta);
  border-radius: var(--radius); padding: 14px 16px;
  background: rgba(255,45,85,.03);
  margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px; cursor: pointer;
}
.order-bump input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--cta); flex-shrink: 0; }
.order-bump-label { font-size: .85rem; }
.order-bump-label strong { color: var(--cta); }

/* Urgency */
.urgency-box {
  background: rgba(255,45,85,.08); border: 1px solid rgba(255,45,85,.2);
  border-radius: var(--radius); padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: .85rem; color: var(--text); margin-bottom: 16px;
}
.urgency-box strong { color: var(--cta); }

/* ===== FEATURE CARDS ===== */
.feature-cards-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px;
}
@media (min-width:768px) { .feature-cards-grid { grid-template-columns: repeat(4, 1fr); } }
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow); transition: var(--transition);
  border: 1px solid var(--gray2);
}
.feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.feature-card-icon { font-size: 2rem; margin-bottom: 10px; }
.feature-card h3 { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.feature-card p { font-size: .8rem; color: var(--text2); }

/* ===== STEPS (Compre 1 Leve 2) ===== */
.steps-grid {
  display: grid; gap: 20px; grid-template-columns: repeat(1, 1fr);
}
@media (min-width:600px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px 20px; text-align: center; box-shadow: var(--shadow);
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--text); color: var(--white);
  font-size: 1rem; font-weight: 800; margin: 0 auto 14px;
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.step-card p { font-size: .875rem; color: var(--text2); }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid; gap: 14px; grid-template-columns: repeat(1, 1fr);
}
@media (min-width:640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width:1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 22px; box-shadow: none;
  border: 1px solid var(--gray2);
}
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gray1); display: flex; align-items: center;
  justify-content: center; font-weight: 700; color: var(--text2);
  font-size: .9rem; flex-shrink: 0;
}
.review-name { font-size: .875rem; font-weight: 700; color: var(--text); }
.review-stars { color: #fbbf24; font-size: .85rem; }
.review-text { font-size: .8375rem; color: var(--text2); line-height: 1.55; }
.review-date { font-size: .75rem; color: var(--gray3); margin-top: 8px; }
.verified-badge { font-size: .7rem; color: var(--green); font-weight: 700; }

/* ===== COMPARISON TABLE ===== */
.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.comparison-table {
  width: 100%; border-collapse: collapse;
  font-size: .875rem; background: var(--white); min-width: 420px;
}
.comparison-table th {
  padding: 14px 16px; text-align: center; font-weight: 700;
}
.comparison-table th:first-child { text-align: left; background: var(--gray1); }
.comparison-table th:nth-child(2) { background: var(--cta); color: var(--white); }
.comparison-table th:nth-child(3) { background: var(--gray1); color: var(--text2); }
.comparison-table td {
  padding: 12px 16px; text-align: center;
  border-top: 1px solid var(--gray2); color: var(--text2);
}
.comparison-table td:first-child { text-align: left; font-weight: 500; color: var(--text); }
.comparison-table td:nth-child(2) { color: var(--green); font-weight: 700; }
.comparison-table tbody tr:hover { background: var(--gray1); }
.check { color: var(--green); font-weight: 800; font-size: 1.1rem; }
.cross { color: #ff4444; }

/* ===== VIDEO SECTION ===== */
.video-section { background: var(--black); padding: 56px 0; }
.video-section .section-title { color: var(--white); }
.video-section .section-tag { color: rgba(255,255,255,.6); }
.video-section .section-sub { color: rgba(255,255,255,.5); }
.video-grid {
  display: grid; gap: 16px; grid-template-columns: repeat(1, 1fr);
}
@media (min-width:600px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width:900px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }
.video-card {
  border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 9/16; background: #111;
  position: relative; cursor: pointer;
}
.video-card img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.video-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.video-play-btn {
  width: 56px; height: 56px; background: rgba(255,255,255,.9);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray2); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; text-align: left;
  font-size: .9375rem; font-weight: 600; color: var(--text); gap: 12px;
}
.faq-q:hover { color: var(--text); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0; border-radius: 50%;
  border: 2px solid var(--gray2);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: transform .25s; color: var(--gray3);
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--cta); color: var(--cta); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
  font-size: .875rem; color: var(--text2); line-height: 1.6;
}
.faq-a-inner { padding-bottom: 16px; }
.faq-item.open .faq-a { max-height: 400px; }

/* ===== COUNTDOWN DISPLAY ===== */
.countdown-box {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: .8rem; color: var(--text2); margin-bottom: 16px;
}
.countdown-segs { display: flex; align-items: center; gap: 4px; }
.countdown-seg {
  display: flex; flex-direction: column; align-items: center;
  background: var(--gray1); border-radius: var(--radius-sm);
  padding: 5px 9px; min-width: 38px;
}
.countdown-seg .num {
  font-size: 1.1rem; font-weight: 800; color: var(--cta); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown-seg .lbl { font-size: .6rem; text-transform: uppercase; letter-spacing: .05em; color: var(--gray3); }
.countdown-sep { font-weight: 800; color: var(--cta); margin-bottom: 12px; }

/* ===== STICKY MOBILE BAR ===== */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  background: var(--white); border-top: 1px solid var(--gray2);
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 10px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  transform: translateY(100%); transition: transform .3s ease;
}
.sticky-bar.visible { transform: none; }
.sticky-bar-price { flex: 1; min-width: 0; }
.sticky-bar-price .old { font-size: .75rem; color: var(--gray3); text-decoration: line-through; }
.sticky-bar-price .new { font-size: 1.15rem; font-weight: 800; color: var(--cta); line-height: 1; }
.sticky-bar-btn {
  flex: 0 0 auto; background: var(--cta); color: var(--white);
  font-weight: 700; font-size: .9rem;
  padding: 12px 22px; border-radius: var(--radius);
  white-space: nowrap; transition: background .2s;
}
.sticky-bar-btn:hover { background: var(--cta-h); }
@media (min-width:768px) { .sticky-bar { display: none; } }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 80px; right: 20px; z-index: 996;
  width: 52px; height: 52px;
}
@media (min-width:768px) { .whatsapp-float { bottom: 32px; } }
.whatsapp-float a {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%;
  background: #25d366; border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); color: var(--white);
}
.whatsapp-float a svg { width: 28px; height: 28px; }
.whatsapp-float::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid rgba(37,211,102,.4);
  animation: wa-pulse 2s ease infinite;
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0; }
}

/* ===== FOOTER ===== */
.site-footer { background: var(--black); color: rgba(255,255,255,.7); padding: 48px 0 24px; }
.footer-grid {
  display: grid; gap: 32px;
  grid-template-columns: 1fr; margin-bottom: 36px;
}
@media (min-width:640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width:900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-brand .logo { color: var(--white); font-size: 1.3rem; display: block; margin-bottom: 12px; }
.footer-desc { font-size: .83rem; color: rgba(255,255,255,.5); line-height: 1.6; max-width: 280px; }
.footer-heading {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.4); margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: 10px;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { font-size: .75rem; color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: var(--white); }
.footer-payments { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; margin-top: 12px; }
.payment-badge {
  background: rgba(255,255,255,.08); border-radius: 4px;
  padding: 4px 8px; font-size: .7rem; color: rgba(255,255,255,.5); font-weight: 600;
}

/* ===== LEGAL PAGE ===== */
.legal-page { max-width: 720px; margin: 48px auto; padding: 0 16px 100px; }
.legal-page h1 { font-size: 1.75rem; margin-bottom: 6px; }
.legal-date { font-size: .8rem; color: var(--gray3); margin-bottom: 28px; }
.legal-page h2 { font-size: 1rem; font-weight: 700; margin: 24px 0 8px; color: var(--text); }
.legal-page p { font-size: .9rem; color: var(--text2); margin-bottom: 12px; line-height: 1.65; }
.legal-page ul { margin: 8px 0 12px 18px; list-style: disc; }
.legal-page li { font-size: .9rem; color: var(--text2); margin-bottom: 6px; line-height: 1.55; }

/* ===== CATEGORY PAGE HEADER ===== */
.cat-page-header { background: var(--white); padding: 48px 0 32px; border-bottom: 1px solid var(--gray2); }
.cat-page-header h1 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: 6px; }
.cat-page-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.filter-chip {
  padding: 5px 14px; border-radius: 20px;
  background: var(--gray1); font-size: .8rem; font-weight: 600;
  color: var(--text); transition: var(--transition); cursor: pointer;
}
.filter-chip.active, .filter-chip:hover { background: var(--cta); color: var(--white); }

/* ===== SOCIAL PROOF RIBBON ===== */
.proof-ribbon { background: var(--white); border-top: 1px solid var(--gray2); padding: 14px 0; overflow: hidden; }
.proof-ribbon-inner { display: flex; gap: 40px; white-space: nowrap; animation: marquee 25s linear infinite; }
.proof-item {
  display: flex; align-items: center; gap: 6px;
  font-size: .8rem; font-weight: 600; color: var(--text2); flex-shrink: 0;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .5s ease, transform .5s ease; }
.fade-up.visible { opacity: 1; transform: none; }
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 9999;
  background: var(--cta); transform-origin: left; transform: scaleX(0); transition: transform .1s;
}

/* ===== UTILS ===== */
.text-red { color: var(--cta); }
.text-green { color: var(--green); }
.fw-800 { font-weight: 800; }
.text-center { text-align: center; }


/* ===== TRANSPARENT HEADER (hero pages only) ===== */
.hero-page .site-header {
  position: fixed !important;
  top: 36px !important;
  left: 0 !important;
  width: 100% !important;
  background: transparent !important;
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.hero-page .site-header.scrolled {
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray1) !important;
  box-shadow: var(--shadow) !important;
}
.hero-page .site-header:not(.scrolled) .logo { color: rgba(255,255,255,.92); }
.hero-page .site-header:not(.scrolled) .logo img { filter: brightness(0) invert(1); }
.hero-page .site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.78); }
.hero-page .site-header:not(.scrolled) .nav-links a:hover { background: rgba(255,255,255,.1); color: #fff; }
.hero-page .site-header:not(.scrolled) .btn-cta-nav { background: rgba(255,255,255,.88); color: var(--black); }
.hero-page .site-header:not(.scrolled) .burger span { background: #fff; }
/* ===== UGC TIKTOK SCROLL ===== */
.ugc-scroll {
  display: flex; gap: 12px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 16px 24px;
}
@media (min-width:768px) { .ugc-scroll { padding: 4px 24px 24px; } }
@media (min-width:1200px) { .ugc-scroll { padding: 4px 32px 24px; } }
.ugc-scroll::-webkit-scrollbar { display: none; }
.ugc-card {
  flex: 0 0 175px; scroll-snap-align: start;
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative; aspect-ratio: 9/16;
  background: var(--gray1); cursor: pointer;
  transition: var(--transition);
}
@media (min-width:640px) { .ugc-card { flex: 0 0 215px; } }
@media (min-width:1024px) { .ugc-card { flex: 0 0 255px; } }
.ugc-card img { width: 100%; height: 100%; object-fit: cover; }
.ugc-card:hover { transform: translateY(-4px); }
.ugc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.18) 60%, transparent 100%);
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 16px;
}
.ugc-play {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.85);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.ugc-card:hover .ugc-play { background: var(--text); transform: translate(-50%,-50%) scale(1.1); }
.ugc-play svg { fill: var(--black); transition: var(--transition); }
.ugc-card:hover .ugc-play svg { fill: var(--white); }
.ugc-stars { color: #f59e0b; font-size: .7rem; letter-spacing: 2px; margin-bottom: 5px; }
.ugc-quote {
  color: rgba(255,255,255,.93); font-size: .74rem; font-weight: 500;
  line-height: 1.42; margin-bottom: 4px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.ugc-author { color: rgba(255,255,255,.52); font-size: .67rem; }
