/* ═══════════════════════════════════════════
   TUDOVÊ — Câmera Speed IA 2025
   style.css
   ═══════════════════════════════════════════ */

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

:root {
  --bg: #F9FAFB;
  --bg-alt: #F3F4F6;
  --bg-white: #FFFFFF;
  --bg-dark: #0E0E10;
  --primary: #16A34A;
  --primary-dark: #15803d;
  --primary-light: rgba(22, 163, 74, 0.10);
  --border: #E5E7EB;
  --text: #111827;
  --text-muted: #6B7280;
  --text-light: #9CA3AF;
  --red: #C00000;
  --red-light: rgba(192, 0, 0, 0.12);
  --green: #059669;
  --green-light: #F0FDF4;
  --green-border: #A7F3D0;
  --yellow: #FBBF24;
  --gold: #D4A017;
  --gold-light: rgba(212, 160, 23, 0.15);
  --blue: #024AB4;
  --blue-light: rgba(2, 74, 180, 0.12);
  --accent: #1a1a1a;
  --radius: 10px;
  --shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  --font: 'Inter', sans-serif;
  --max: 500px;
}

html {
  scroll-behavior: smooth;
  font-size: 18px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: var(--max);
  margin: 0 auto;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font);
}

ul {
  list-style: none;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════════════════
   TOP BANNER
══════════════════════════════════════════ */
.top-banner {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  overflow: hidden;
  white-space: nowrap;
  padding: 7px 0;
}

.top-banner__scroll {
  display: inline-flex;
  gap: 48px;
  animation: marquee 28s linear infinite;
}

.top-banner__scroll span {
  flex-shrink: 0;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.menu-toggle {
  display: flex;
  align-items: center;
  color: var(--text);
  padding: 4px;
  border-radius: 6px;
  transition: background 0.2s;
}

.menu-toggle:hover {
  background: var(--bg-alt);
}

.site-header__logo img {
  height: 52px;
  width: auto;
}

/* ── SIDE MENU (DRAWER) ── */
.side-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 200;
  backdrop-filter: blur(2px);
}

.side-menu-overlay.open { display: block; }

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background: var(--bg-white);
  z-index: 201;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.side-menu.open { transform: translateX(0); }

.side-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
}

.side-menu__close {
  font-size: 26px;
  color: var(--text-muted);
  line-height: 1;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.2s;
}

.side-menu__close:hover { background: var(--bg-alt); }

.side-menu__body {
  padding: 20px 16px;
  flex: 1;
}

.side-menu__section-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.side-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.side-menu__link {
  display: block;
  padding: 9px 10px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  transition: background 0.18s;
}

.side-menu__link:hover { background: var(--bg-alt); }

.side-menu__divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}

.side-menu__support p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

.side-menu__support a {
  color: var(--blue);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   PRODUCT HERO
══════════════════════════════════════════ */
.product-hero {
  background: var(--bg-white);
  padding: 0 0 24px;
}

/* ── GALLERY ── */
.gallery {
  background: var(--bg-alt);
  position: relative;
}

.gallery__main {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__hint {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.52);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  letter-spacing: 0.2px;
}

.gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.25s ease;
}

.gallery__main img.fading { opacity: 0; }

.gallery__thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  overflow-x: auto;
  background: var(--bg-alt);
  scrollbar-width: none;
}

.gallery__thumbs::-webkit-scrollbar { display: none; }

.gallery__thumb {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery__thumb.active { border-color: var(--primary); }
.gallery__thumb:hover { border-color: var(--text-muted); }

/* ── PRODUCT INFO ── */
.product-info {
  padding: 18px 16px 0;
}

.product-header__title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 12px;
}

.product-header__verified-icon {
  color: var(--blue);
  font-size: 16px;
}

/* Badges row */
.badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 9999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.badge--gold {
  background: var(--gold-light);
  color: var(--gold);
  border-color: rgba(212, 160, 23, 0.35);
}

.badge--green {
  background: var(--green-light);
  color: var(--green);
  border-color: var(--green-border);
}

.badge--blue {
  background: var(--blue-light);
  color: var(--blue);
  border-color: rgba(2, 74, 180, 0.25);
}

/* Stars */
.stars-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  cursor: pointer;
}

.stars { display: flex; gap: 2px; }
.stars svg { width: 15px; height: 15px; }
.stars-score { font-size: 14px; font-weight: 700; color: var(--text); }
.stars-count { font-size: 12px; color: var(--text-muted); }

/* Offer Banner */
.offer-banner {
  background: #0E0E10;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 12px;
  border-left: 4px solid var(--primary);
}

.offer-banner__title {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.offer-banner__subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
}

/* Kit Selection */
.kit-selection-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.kit-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: var(--bg-white);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.kit-card input[type="radio"] {
  display: none;
}

.kit-card.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.kit-card__radio {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.kit-card.active .kit-card__radio {
  border-color: var(--primary);
}

.kit-card.active .kit-card__radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.kit-card__content {
  flex: 1;
}

.kit-card__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.kit-card__desc {
  font-size: 11px;
  color: var(--text-muted);
}

.kit-card__price-col {
  text-align: right;
}

.kit-card__old-price {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.kit-card__current-price {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
}

/* ── Kit Card V2 (with image) ── */
.kit-card-v2 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 10px;
  border: 2px solid var(--border);
  background: var(--bg-white);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.kit-card-v2 input[type="radio"] { display: none; }

.kit-card-v2.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.kit-card-v2__radio {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}

.kit-card-v2.active .kit-card-v2__radio {
  border-color: var(--primary);
}

.kit-card-v2.active .kit-card-v2__radio::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
}

.kit-card-v2__img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--bg-alt);
  padding: 2px;
}

.kit-card-v2__content { flex: 1; min-width: 0; }

.kit-card-v2__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.kit-card-v2__desc {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 1px;
}

.kit-card-v2__price-col {
  text-align: right;
  flex-shrink: 0;
}

.kit-card-v2__old-price {
  font-size: 11px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.kit-card-v2__current-price {
  font-size: 17px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.2;
}

.kit-card-v2__installment {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 1px;
}

.badge-mais-vendido {
  position: relative;
  top: auto;
  right: auto;
  background: var(--primary);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 99px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 2px;
}

/* ── Preço principal ── */
.price-main-block { margin-bottom: 12px; }

.price-old-line {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.price-old-line s { color: var(--text-muted); }

.price-current-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.price-current {
  font-size: 32px;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
}

.price-badge-save {
  background: var(--green);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 99px;
}

.price-installment {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* PIX reveal */
.pix-reveal-wrap {
  margin-bottom: 14px;
  border-radius: 10px;
  border: 1.5px dashed var(--green);
  overflow: hidden;
}

.pix-reveal-wrap .price-pix-block {
  margin: 0;
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--green-border);
}

.price-pix-block {
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--green-light);
  border: 1px solid var(--green-border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-pix-icon { font-size: 22px; }
.price-pix-main { font-size: 22px; font-weight: 900; color: var(--green); }
.price-pix-label { font-size: 13px; font-weight: 600; color: var(--green); }
.price-pix-note { font-size: 12px; color: var(--green); margin-top: 2px; }

/* Shipping block */
.shipping-block {
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 12px;
}

.shipping-block svg {
  color: var(--text-muted);
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.shipping-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
}

.shipping-city { font-weight: 700; color: var(--text); }

.shipping-days {
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
}

/* CTA Button */
.buy-btn {
  display: block;
  width: 100%;
  background: linear-gradient(135deg, #16A34A, #22c55e);
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 17px 20px;
  border-radius: 10px;
  text-align: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.45);
  animation: pulse-btn 2.5s infinite;
}

@keyframes pulse-btn {
  0%, 100% { box-shadow: 0 4px 20px rgba(22, 163, 74, 0.45); }
  50% { box-shadow: 0 4px 30px rgba(22, 163, 74, 0.7); }
}

.buy-btn:hover {
  background: linear-gradient(135deg, #15803d, #16A34A);
  transform: translateY(-1px);
  animation: none;
}

.buy-btn:active { transform: translateY(0); }

/* Payment icons */
.payment-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding: 0 8px;
}

.payment-icons img { height: 20px; width: auto; }

/* ══════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════ */
.trust-strip {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 20px 8px;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  max-width: 80px;
}

.trust-icon { color: var(--primary); }

.trust-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
}

.trust-sublabel {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ══════════════════════════════════════════
   SECTIONS
══════════════════════════════════════════ */
.section {
  padding: 40px 16px;
}

.section--dark {
  background: var(--bg-dark);
  color: #fff;
}

.section--white { background: var(--bg-white); }
.section--alt { background: var(--bg-alt); }

.section-title {
  font-size: 22px;
  font-weight: 900;
  text-align: center;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 14px;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.55;
  max-width: 440px;
  margin: 0 auto 24px;
}

/* ══════════════════════════════════════════
   FEATURE GRID — PRO
══════════════════════════════════════════ */
.feature-grid-pro {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.feature-item-pro {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px;
}

.feature-item-pro__icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item-pro__label {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.feature-item-pro__sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* Light variant */
.feature-item-pro--light {
  background: rgba(22, 163, 74, 0.06);
  border: 1px solid rgba(22, 163, 74, 0.15);
}

.feature-item-pro__icon--light {
  background: var(--primary);
}

.feature-item-pro__label--light { color: var(--text); }
.feature-item-pro__sub--light { color: var(--text-muted); }

/* ══════════════════════════════════════════
   IMAGE / GIF WRAP
══════════════════════════════════════════ */
.kevlar-img-wrap {
  margin-bottom: 20px;
}

.kevlar-img-wrap img,
.kevlar-img-wrap video {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* ══════════════════════════════════════════
   QUALITY LIST
══════════════════════════════════════════ */
.quality-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.quality-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.quality-list li svg { flex-shrink: 0; }

/* Quality Item */
.quality-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  margin-bottom: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.quality-item img,
.quality-item video {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.quality-card__label {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}

.quality-card__text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
  margin-bottom: 8px;
}

.quality-checks {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quality-checks li {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  padding-left: 16px;
  position: relative;
}

.quality-checks li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* ══════════════════════════════════════════
   WHY CHEAP GRID
══════════════════════════════════════════ */
.why-cheap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.why-cheap-card {
  padding: 14px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
}

.why-cheap-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.why-cheap-content h3 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text);
}

.why-cheap-content p {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.45;
}

/* ══════════════════════════════════════════
   KIT INCLUDE
══════════════════════════════════════════ */
.kit-include {
  background: rgba(22, 163, 74, 0.06);
  border: 1px solid rgba(22, 163, 74, 0.2);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
}

.kit-include__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.kit-include__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 8px;
}

.kit-include__item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
}

.kit-include__item svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   SPECS TABLE
══════════════════════════════════════════ */
.specs-table {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.specs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.specs-row:last-child { border-bottom: none; }
.specs-row:nth-child(odd) { background: rgba(255, 255, 255, 0.04); }

.specs-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.specs-value {
  font-size: 13px;
  color: #fff;
  font-weight: 700;
  text-align: right;
}

/* ══════════════════════════════════════════
   COMPARE TABLE
══════════════════════════════════════════ */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 10px;
  overflow: hidden;
  font-size: 12px;
  border: 1px solid var(--border);
}

.compare-table th,
.compare-table td {
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background: var(--bg-alt);
  font-weight: 700;
  font-size: 11px;
}

.compare-table .col-old { color: var(--red); }
.compare-table .col-new { color: var(--green); font-weight: 600; }

/* ══════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════ */
.reviews-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.reviews-rating__score {
  font-size: 42px;
  font-weight: 900;
  color: var(--text);
}

.reviews-rating__stars {
  color: var(--yellow);
  font-size: 18px;
  letter-spacing: 2px;
}

.reviews-rating__count {
  font-size: 13px;
  color: var(--text-muted);
}

.reviews-rating__badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid var(--green-border);
  border-radius: 99px;
  padding: 4px 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card {
  background: var(--bg-white);
  border-radius: 10px;
  padding: 14px;
  border: 1px solid var(--border);
}

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

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 900;
}

.review-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.review-meta {
  font-size: 11px;
  color: var(--text-muted);
}

.review-stars {
  color: var(--yellow);
  font-size: 14px;
  margin-bottom: 6px;
}

.review-text {
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
  margin-bottom: 6px;
}

.review-verified {
  font-size: 11px;
  color: var(--green);
  font-weight: 600;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-white);
}

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

.faq-question__arrow {
  transition: transform 0.3s;
  font-size: 18px;
  color: var(--text-muted);
}

.faq-item.open .faq-question__arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 14px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 14px 14px;
}

.faq-answer p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.final-cta {
  text-align: center;
  padding: 40px 16px;
  background: linear-gradient(180deg, var(--bg-dark) 0%, #151517 100%);
}

.final-cta__price-old {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.final-cta__price {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 4px;
}

.final-cta__installment {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.final-cta .buy-btn {
  max-width: 400px;
  margin: 0 auto;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.site-footer {
  background: #0a0a0a;
  color: rgba(255,255,255,0.45);
  font-size: 11px;
  padding: 24px 16px;
  text-align: center;
  line-height: 1.7;
}

.site-footer a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

/* ══════════════════════════════════════════
   STICKY CTA
══════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--max);
  z-index: 150;
  background: transparent;
  border-top: none;
  box-shadow: none;
  padding: 10px 16px;
  display: none;
}

.sticky-cta.visible { display: block; }

.sticky-cta .buy-btn {
  font-size: 15px;
  padding: 14px 16px;
}

/* ══════════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════════ */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 20px;
  cursor: zoom-out;
}

.lightbox-overlay.open {
  display: flex;
}

.lightbox-overlay img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 8px;
  object-fit: contain;
}

/* ══════════════════════════════════════════
   SCENARIO CARDS (USE CASES)
══════════════════════════════════════════ */
.scenario-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.scenario-card {
  display: flex;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px;
}

.scenario-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.scenario-card__title {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 3px;
}

.scenario-card__text {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* ══════════════════════════════════════════
   SOCIAL PROOF COUNTER
══════════════════════════════════════════ */
.social-proof-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(22, 163, 74, 0.08);
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

.social-proof-bar .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ══════════════════════════════════════════
   STAT COUNTERS
══════════════════════════════════════════ */
.stats-row {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  margin-bottom: 24px;
}

.stat-item {
  text-align: center;
}

.stat-item__num {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
}

.stat-item__label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  line-height: 1.3;
}
