/* ==========================================================================
   Plus Ofertas™ — DESIGN SYSTEM DE ALTA CONVERSÃO (OUTONO/INVERNO)
   ========================================================================== */

:root {
  --bg: #FAF8F5;
  --bg-elevated: #FFFFFF;
  --bg-subtle: #F4EFEA;
  --ink: #191817;
  --ink-soft: #5E5B56;
  --ink-muted: #8E8A83;
  --border: #E8E2D9;
  --border-focus: #D0C6B8;
  
  /* Cores de Destaque & Conversão */
  --primary: #E11D48;
  --primary-hover: #BE123C;
  --primary-subtle: #FFE4E6;
  --accent: #E05D26;
  --accent-gold: #D97706;
  --accent-gold-bg: #FEF3C7;
  --success: #059669;
  --success-bg: #D1FAE5;
  --danger: #DC2626;
  --danger-bg: #FEE2E2;

  --shadow-sm: 0 2px 8px rgba(25, 24, 23, 0.04);
  --shadow-md: 0 8px 24px rgba(25, 24, 23, 0.08);
  --shadow-lg: 0 16px 40px rgba(25, 24, 23, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --maxw: 1120px;

  /* Superfícies translúcidas e estados selecionados.
     Ficam aqui (e não em regras [data-theme]) porque o modo escuro do sistema
     não define data-theme: sem isto, header e barra de compra saíam claros
     sobre a página escura na primeira visita. */
  --surface-glass: rgba(250, 248, 245, 0.95);
  --surface-glass-header: rgba(250, 248, 245, 0.92);
  --select-bg: #FFE4E6;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #141312;
    --bg-elevated: #1E1D1B;
    --bg-subtle: #282624;
    --ink: #F7F5F0;
    --ink-soft: #B5B0A6;
    --ink-muted: #7E7970;
    --border: #33302C;
    --border-focus: #4A4640;
    --primary: #FB7185;
    --primary-hover: #F43F5E;
    --primary-subtle: #3A1B22;
    --accent: #F97316;
    --accent-gold: #FBBF24;
    --accent-gold-bg: #352608;
    --success: #34D399;
    --success-bg: #0C3323;
    --danger: #F87171;
    --danger-bg: #381414;
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
    --surface-glass: rgba(20, 19, 18, 0.95);
    --surface-glass-header: rgba(20, 19, 18, 0.92);
    --select-bg: rgba(225, 29, 72, 0.18);
  }
}

:root[data-theme="dark"] {
  --bg: #141312;
  --bg-elevated: #1E1D1B;
  --bg-subtle: #282624;
  --ink: #F7F5F0;
  --ink-soft: #B5B0A6;
  --ink-muted: #7E7970;
  --border: #33302C;
  --border-focus: #4A4640;
  --primary: #FB7185;
  --primary-hover: #F43F5E;
  --primary-subtle: #3A1B22;
  --accent: #F97316;
  --accent-gold: #FBBF24;
  --accent-gold-bg: #352608;
  --success: #34D399;
  --success-bg: #0C3323;
  --danger: #F87171;
  --danger-bg: #381414;
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --surface-glass: rgba(20, 19, 18, 0.95);
  --surface-glass-header: rgba(20, 19, 18, 0.92);
  --select-bg: rgba(225, 29, 72, 0.18);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
.svg-icon {
  width: 1em; height: 1em;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.stars-vector { display: inline-flex; align-items: center; gap: 2px; }
.svg-icon-sm { width: 0.8em; height: 0.8em; }
.fill-curr { fill: currentColor; stroke: none; }
a { color: inherit; text-decoration: none; }
button, input, select { font-family: inherit; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ── BARRA DE URGÊNCIA NO TOPO ── */
.top-bar {
  background: linear-gradient(90deg, #991B1B, #DC2626, #E11D48);
  color: #FFFFFF;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  z-index: 40;
}
.top-bar-timer {
  background: rgba(0, 0, 0, 0.25);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-variant-numeric: tabular-nums;
}

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 30;
  background: var(--surface-glass-header);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: all 0.2s ease;
}

.header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
}
.logo-box {
  display: flex; align-items: center; gap: 8px;
}
.logo {
  font-weight: 900;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 4px;
}
.logo-tag {
  font-size: 0.65rem;
  background: var(--primary-subtle);
  color: var(--primary);
  padding: 2px 6px;
  border-radius: var(--radius-full);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-badges {
  display: flex; align-items: center; gap: 16px; font-size: 0.85rem; font-weight: 600;
  color: var(--ink-soft);
}
@media (max-width: 768px) {
  .header-badges { display: none; }
}
.header-badge-item {
  display: flex; align-items: center; gap: 6px;
}
.theme-toggle {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--ink);
  border-radius: var(--radius-full);
  width: 38px; height: 38px;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease;
}
.theme-toggle:hover { transform: scale(1.05); }

/* ── BOTÕES ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: none; border-radius: var(--radius-full); cursor: pointer;
  font-weight: 800; font-size: 1.05rem; letter-spacing: -0.01em;
  padding: 18px 32px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25);
  text-align: center;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #BE123C);
  color: #FFFFFF;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #F43F5E, var(--primary));
  box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
  transform: translateY(-1px);
}
.btn-full { width: 100%; }
.btn-ghost {
  background: var(--bg-elevated);
  color: var(--ink);
  border: 1px solid var(--border);
  box-shadow: none;
  padding: 12px 20px;
  font-size: 0.95rem;
}
.btn-ghost:hover { border-color: var(--ink-soft); }

.pulse-animation {
  animation: pulseButton 2s infinite;
}
@keyframes pulseButton {
  0% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(225, 29, 72, 0); }
  100% { box-shadow: 0 0 0 0 rgba(225, 29, 72, 0); }
}

/* Brilho passando no botão principal ao passar o mouse */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: -60%;
  width: 35%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.btn-primary:hover::after { left: 130%; }

/* Botão magnético (segue sutilmente o cursor) */
.magnetic-btn {
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.2s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── HERO SECTION & GALERIA ── */
.hero { padding: 32px 0 48px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 28px; }
}

/* Galeria */
.gallery-wrapper {
  position: sticky; top: 80px;
}
@media (max-width: 900px) {
  .gallery-wrapper { position: static; }
}
.gallery-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}
.gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-main:hover img { transform: scale(1.05); }
.gallery-tag-float {
  position: absolute; top: 16px; left: 16px;
  background: rgba(20, 19, 18, 0.85);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.gallery-tag-tiktok {
  background: linear-gradient(135deg, #EE1D52, #191817 65%);
}
/* .live-dot segue em uso no checkout ("Aguardando confirmação do banco...") */
.live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
  animation: blinkDot 1.5s infinite;
}
@keyframes blinkDot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.gallery-thumbs-wrap { margin-top: 14px; }
.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }

/* Setas de navegação sobre a foto principal */
.gallery-nav-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 19, 18, 0.55);
  backdrop-filter: blur(4px);
  color: #FFFFFF;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: opacity 0.15s ease, background 0.15s ease, transform 0.15s ease;
}
.gallery-nav-arrow:hover { background: rgba(20, 19, 18, 0.8); transform: translateY(-50%) scale(1.08); }
.gallery-nav-arrow:disabled { opacity: 0.35; cursor: default; pointer-events: none; }
.gallery-nav-left { left: 12px; }
.gallery-nav-right { right: 12px; }
.thumb-btn {
  flex: 0 0 60px;
  scroll-snap-align: start;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-subtle);
  aspect-ratio: 1/1;
  padding: 0;
  transition: all 0.15s ease;
}
.thumb-btn.active {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: 0 0 0 2px var(--primary-subtle);
}
.thumb-btn img {
  width: 100%; height: 100%; object-fit: cover;
}
.thumb-flat img {
  object-position: 50% 38%;
}

/* Informações do Produto & Oferta */
.product-info { display: flex; flex-direction: column; gap: 20px; }

.rating-row {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 8px; font-size: 0.85rem; font-weight: 700;
}
.stars { color: #F59E0B; font-size: 0.95rem; }
.rating-count { color: var(--ink-soft); font-weight: 500; }
.sales-badge {
  background: var(--accent-gold-bg);
  color: var(--accent-gold);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 800;
}

.product-title {
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
}
@media (max-width: 640px) {
  .product-title { font-size: 1.75rem; }
}
.product-headline {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.45;
}

/* Banner de Alerta Pré-Inverno */
.winter-alert-box {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-subtle));
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
}
.winter-alert-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.winter-alert-text strong {
  display: block;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 800;
}
.winter-alert-text p {
  color: var(--ink-soft);
  font-size: 0.82rem;
  margin-top: 2px;
}

/* Card de Preço & Ofertas */
.price-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 16px;
}
.price-header {
  display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.price-old {
  color: var(--ink-muted);
  text-decoration: line-through;
  font-size: 1rem;
  font-weight: 600;
}
.price-current {
  font-size: 2.3rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
}
.price-pix-tag {
  background: var(--success-bg);
  color: var(--success);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
}

/* Seletor de Kits / Combos */
.bundle-selector-label {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.bundle-options {
  display: flex; flex-direction: column; gap: 10px;
}
.bundle-card {
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  background: var(--bg);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}
.bundle-card:hover { border-color: var(--border-focus); }
.bundle-card.selected {
  border-color: var(--primary);
  background: var(--select-bg);
}

.bundle-radio {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2px solid var(--border-focus);
  display: flex; align-items: center; justify-content: center;
}
.bundle-card.selected .bundle-radio {
  border-color: var(--primary);
}
.bundle-card.selected .bundle-radio::after {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary);
}

.bundle-title { font-weight: 800; font-size: 0.95rem; }
.bundle-sub { font-size: 0.8rem; color: var(--ink-soft); }
.bundle-price-col { text-align: right; }
.bundle-price { font-weight: 900; font-size: 1.15rem; color: var(--ink); }
.bundle-economy {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--success);
}
.bundle-badge {
  position: absolute;
  top: -10px; right: 14px;
  background: linear-gradient(90deg, #F59E0B, #D97706);
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 900;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 6px rgba(217, 119, 6, 0.3);
}

/* Seletor de Cores e Tamanhos */
.variation-group { margin-top: 6px; }
.variation-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;
}
.variation-title {
  font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-soft);
}
.size-guide-link {
  font-size: 0.82rem; font-weight: 700; color: var(--primary); cursor: pointer; text-decoration: underline;
}

.color-options { display: flex; gap: 10px; }
.color-pill {
  display: flex; align-items: center; gap: 8px;
  border: 1.5px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--bg);
  transition: all 0.15s ease;
}
.color-pill.active {
  border-color: var(--primary);
  background: var(--bg-elevated);
  box-shadow: 0 0 0 1px var(--primary);
}
.color-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
}
.color-dot-cinza { background: #9CA3AF; }
.color-dot-preto { background: #18181B; }
.color-dot-rosa { background: #FBCFE8; }

.size-options {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px;
}
.size-pill {
  text-align: center;
  border: 1.5px solid var(--border);
  padding: 10px 4px;
  border-radius: var(--radius-md);
  cursor: pointer;
  background: var(--bg);
  transition: all 0.15s ease;
}
.size-pill.active {
  border-color: var(--primary);
  background: var(--select-bg);
  box-shadow: 0 0 0 1px var(--primary);
}
.size-letter { font-weight: 800; font-size: 1rem; }
.size-desc { font-size: 0.7rem; color: var(--ink-soft); margin-top: 2px; }

/* Frete & CEP */
.shipping-calc-box {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 8px;
}
.shipping-input-row { display: flex; gap: 8px; }
.shipping-input-row input {
  flex: 1; padding: 10px 12px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  background: var(--bg-elevated); color: var(--ink); font-size: 0.9rem;
}
.shipping-btn {
  padding: 10px 16px; font-size: 0.85rem; font-weight: 700;
  background: var(--ink); color: var(--bg); border: none; border-radius: var(--radius-sm);
  cursor: pointer;
}
.shipping-result { font-size: 0.82rem; font-weight: 600; color: var(--success); }

/* Selos de Confiança */
.trust-badges {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 10px;
  text-align: center; font-size: 0.78rem; font-weight: 600; color: var(--ink-soft);
}
.trust-badge-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--bg-subtle); padding: 10px 8px; border-radius: var(--radius-md);
}
.trust-icon { font-size: 1.3rem; }

/* ── SEÇÃO DE DESTAQUES & TECNOLOGIA ── */
.features-section {
  padding: 60px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.section-tag {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: inline-block;
}
.section-title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.section-subtitle {
  color: var(--ink-soft);
  font-size: 1rem;
  margin-top: 8px;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .feature-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .feature-cards-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex; flex-direction: column; gap: 12px;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon-box {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.feature-card h3 { font-size: 1.15rem; font-weight: 800; }
.feature-card p { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.45; }

/* ── SLIDER TÉRMICO (ARRASTAR PARA COMPARAR) ── */
.thermal-slider-box {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  -webkit-user-select: none; user-select: none;
  touch-action: none;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.thermal-layer, .thermal-layer-after {
  position: absolute; inset: 0;
}
.thermal-layer img, .thermal-layer-after img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  -webkit-user-drag: none;
}
.thermal-layer-after img {
  transform: scale(1.75);
  transform-origin: 50% 34%;
}
.thermal-layer-after {
  clip-path: inset(0 50% 0 0);
}
.thermal-badge-left, .thermal-badge-right {
  position: absolute; bottom: 14px;
  background: rgba(20, 19, 18, 0.8);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  pointer-events: none;
  z-index: 2;
}
.thermal-badge-left { left: 14px; }
.thermal-badge-right { right: 14px; }
.thermal-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px;
  background: #FFFFFF;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  display: flex; align-items: center; justify-content: center;
}
.thermal-handle::after {
  content: '↔';
  position: absolute;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #191817;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* ── LOOKBOOK / GALERIA DE ESTILO ── */
.lookbook-section { padding: 60px 0; }
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .lookbook-grid { grid-template-columns: 1fr; }
}
.lookbook-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
}
.lookbook-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.lookbook-item:hover img { transform: scale(1.04); }
.lookbook-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: #FFFFFF;
}
.lookbook-tag {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  color: #F43F5E; letter-spacing: 0.05em;
}
.lookbook-title { font-size: 1.1rem; font-weight: 800; margin-top: 4px; }

/* ── TABELA DE MEDIDAS & CALCULADOR ── */
.sizing-section {
  padding: 60px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.sizing-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: start;
}
@media (max-width: 860px) {
  .sizing-grid { grid-template-columns: 1fr; }
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--bg);
}
.sizing-table {
  width: 100%; border-collapse: collapse; text-align: left; font-size: 0.9rem;
}
.sizing-table th {
  background: var(--bg-subtle);
  padding: 14px 16px;
  font-weight: 800;
  color: var(--ink);
  border-bottom: 1px solid var(--border);
}
.sizing-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--ink-soft);
}
.sizing-table tr:last-child td { border-bottom: none; }
.sizing-table tr.highlight-row {
  background: var(--primary-subtle);
  font-weight: 700;
  color: var(--ink);
}

.sizing-calculator-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.sizing-calculator-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; }
.calc-field { margin-bottom: 14px; }
.calc-field label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; }
.calc-field select {
  width: 100%; padding: 10px 14px; border-radius: var(--radius-sm);
  border: 1px solid var(--border); background: var(--bg-elevated); color: var(--ink); font-size: 0.95rem;
}
.calc-result-box {
  margin-top: 16px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--success-bg);
  color: var(--success);
  font-weight: 700;
  text-align: center;
}

/* ── COMPARATIVO: Plus Ofertas VS COMUNS ── */
.comparison-section { padding: 60px 0; }
.comparison-table-wrap {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-elevated);
  box-shadow: var(--shadow-sm);
}
.comparison-table { width: 100%; border-collapse: collapse; text-align: left; }
.comparison-table th, .comparison-table td {
  padding: 16px 20px; border-bottom: 1px solid var(--border); font-size: 0.95rem;
}
.comparison-table th { background: var(--bg-subtle); font-weight: 800; }
.comparison-table th.col-plus {
  background: var(--primary); color: #FFFFFF; font-size: 1.05rem;
}
.comparison-table td.col-plus {
  background: rgba(225, 29, 72, 0.04);
  font-weight: 700;
  color: var(--ink);
}

/* ── DEPOIMENTOS E AVALIAÇÕES ── */
.reviews-section {
  padding: 60px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}
.reviews-stats-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 20px; margin-bottom: 32px; text-align: center;
}
.stat-big { font-size: 2.4rem; font-weight: 900; color: var(--ink); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--ink-soft); margin-top: 4px; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
@media (max-width: 860px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.review-header {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.reviewer-info strong { display: block; font-size: 0.95rem; }
.reviewer-city { font-size: 0.8rem; color: var(--ink-soft); }
.verified-tag {
  background: var(--success-bg); color: var(--success);
  font-size: 0.72rem; font-weight: 800; padding: 2px 8px; border-radius: var(--radius-full);
}
.review-text { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
.review-img-preview {
  border-radius: var(--radius-md); overflow: hidden; height: 160px;
  border: 1px solid var(--border);
}
.review-img-preview img { width: 100%; height: 100%; object-fit: cover; }

/* ── GARANTIA INCONDICIONAL ── */
.guarantee-section { padding: 60px 0; }
.guarantee-card {
  background: linear-gradient(135deg, var(--bg-elevated), var(--bg-subtle));
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; align-items: center; gap: 32px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
  .guarantee-card { flex-direction: column; text-align: center; padding: 24px; }
}
.guarantee-badge-big {
  width: 100px; height: 100px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #10B981, #059669);
  color: #FFFFFF;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-weight: 900; text-align: center; line-height: 1.1;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}
.guarantee-badge-big span { font-size: 1.8rem; }
.guarantee-badge-big small { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; }

/* ── FAQ ── */
.faq-section {
  padding: 60px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg);
  overflow: hidden;
  transition: all 0.15s ease;
}
.faq-item summary {
  padding: 18px 20px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.3rem; font-weight: 600; color: var(--primary);
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 20px 20px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ── POPUP DE COMPRA SOCIAL AO VIVO ── */
.social-popup {
  position: fixed; bottom: 20px; left: 20px; z-index: 50;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  max-width: 320px;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.social-popup.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.social-popup-thumb {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  overflow: hidden; flex-shrink: 0;
}
.social-popup-thumb img { width: 100%; height: 100%; object-fit: cover; }
.social-popup-text { font-size: 0.8rem; line-height: 1.35; }
.social-popup-text strong { display: block; color: var(--ink); }
.social-popup-text span { color: var(--ink-soft); }

/* ── BLOCOS DE CTA AO LONGO DA PÁGINA ──
   Cada seção de persuasão termina com um caminho de compra: sem isto o cliente
   é convencido no meio da página e não tem onde clicar sem voltar ao topo. */
.cta-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 28px 24px;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.cta-block-title {
  font-size: 1.35rem; font-weight: 900; letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.cta-block-sub {
  font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5;
  margin-bottom: 18px;
}
.cta-block-price {
  display: flex; align-items: baseline; justify-content: center; gap: 10px;
  margin-bottom: 16px; flex-wrap: wrap;
}
.cta-block-price .cta-old {
  font-size: 0.95rem; color: var(--ink-muted); text-decoration: line-through;
}
.cta-block-price .cta-now {
  font-size: 2rem; font-weight: 900; letter-spacing: -0.03em; color: var(--ink);
}
.cta-block-price .cta-pix {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--success); background: var(--success-bg);
  padding: 3px 10px; border-radius: var(--radius-full);
}
.cta-selecao {
  font-size: 0.82rem; color: var(--ink-soft);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 9px 12px;
  margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  gap: 6px; flex-wrap: wrap;
}
.cta-selecao strong { color: var(--ink); font-weight: 800; }
.cta-alterar {
  color: var(--primary); font-weight: 800; text-decoration: underline;
  text-underline-offset: 2px;
}
.cta-block-reassure {
  margin-top: 14px; font-size: 0.8rem; color: var(--ink-muted);
  display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap;
}
.cta-section { padding: 8px 0 52px; }

/* ── CTA FIXA (MOBILE SEMPRE / DESKTOP APÓS O HERO) ──
   No desktop ela só entra depois que o botão do hero sai da tela, senão
   o cliente ficaria com dois botões de compra visíveis ao mesmo tempo. */
.mobile-sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--surface-glass);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  padding: 10px 16px;
  display: flex; flex-direction: column; gap: 8px;
  z-index: 35;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(105%);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-sticky-bar.visivel { transform: translateY(0); }

@media (max-width: 768px) {
  body { padding-bottom: 126px; }
}

/* Desktop: linha única e centralizada, com os mini seletores ao lado do preço */
@media (min-width: 769px) {
  .mobile-sticky-bar {
    flex-direction: row; align-items: center; justify-content: center;
    gap: 28px;
    padding: 12px 24px;
  }
  .sticky-mini-selectors { gap: 16px; }
  .sticky-price-row { gap: 20px; }
  .mobile-sticky-bar .btn { padding: 14px 28px !important; font-size: 1rem !important; }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-sticky-bar { transition: none; }
}
.sticky-mini-selectors { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.sticky-mini-sizes, .sticky-mini-colors { display: flex; gap: 6px; }
.sticky-mini-size {
  width: 28px; height: 28px;
  border-radius: var(--radius-sm, 8px);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--ink-soft);
  font-size: 0.72rem; font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.15s ease;
}
.sticky-mini-size.active {
  border-color: var(--primary);
  background: var(--primary-subtle);
  color: var(--primary);
}
.sticky-mini-color {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: none;
  padding: 2px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s ease;
}
.sticky-mini-color .color-dot { width: 100%; height: 100%; }
.sticky-mini-color.active { border-color: var(--primary); }
.sticky-price-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.sticky-price-info { display: flex; flex-direction: column; }
.sticky-price-sub { font-size: 0.72rem; color: var(--ink-soft); }
.sticky-price-val { font-size: 1.25rem; font-weight: 900; color: var(--ink); line-height: 1.1; }

/* ── MODAL DE CHECKOUT ── */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(10, 9, 8, 0.7);
  display: none; align-items: center; justify-content: center;
  padding: 16px; z-index: 100;
  backdrop-filter: blur(6px);
}
.modal-overlay.aberto { display: flex; }

.modal-painel {
  width: 520px; max-width: 100%; max-height: 92vh; overflow-y: auto;
  background: var(--bg-elevated);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px 24px;
  position: relative;
  border: 1px solid var(--border);
}
.modal-fechar {
  position: absolute; top: 18px; right: 18px;
  background: var(--bg-subtle); border: none; cursor: pointer;
  width: 32px; height: 32px; border-radius: 50%;
  font-size: 1.1rem; color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
}

/* ── AJUSTE DE VARIAÇÃO DENTRO DO CHECKOUT ── */
.checkout-variacao {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  margin: -8px 0 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.checkout-variacao-linha {
  display: flex; align-items: center; gap: 12px;
}
.checkout-variacao-label {
  font-size: 0.78rem; font-weight: 800; color: var(--ink-soft);
  min-width: 78px; flex-shrink: 0;
}
.checkout-variacao-opcoes { display: flex; gap: 6px; flex-wrap: wrap; }
.checkout-variacao-opcoes button {
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--ink-soft);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 0.78rem; font-weight: 800;
  cursor: pointer;
  display: flex; align-items: center; gap: 5px;
  transition: all 0.15s ease;
}
.checkout-variacao-opcoes button:hover { border-color: var(--ink-soft); }
.checkout-variacao-opcoes button.ativo {
  border-color: var(--primary);
  background: var(--select-bg);
  color: var(--primary);
}
.checkout-combo-select {
  flex: 1;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  font-size: 0.8rem; font-weight: 700;
  cursor: pointer;
}
@media (max-width: 420px) {
  .checkout-variacao-linha { flex-direction: column; align-items: flex-start; gap: 6px; }
  .checkout-variacao-label { min-width: 0; }
  .checkout-combo-select { width: 100%; }
}

/* ── CHECKOUT FORM & ETAPAS ── */
.progresso { display: flex; gap: 6px; margin-bottom: 24px; }
.progresso .passo {
  flex: 1; height: 6px; border-radius: var(--radius-full); background: var(--border);
  cursor: default; transition: background 0.2s ease;
}
.progresso .passo.ativo, .progresso .passo.feito { background: var(--primary); }
.progresso .passo.feito { cursor: pointer; }

.checkout-header-summary {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-subtle); padding: 12px 14px; border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.checkout-header-thumb {
  width: 48px; height: 48px; border-radius: var(--radius-sm); overflow: hidden;
}
.checkout-header-thumb img { width: 100%; height: 100%; object-fit: cover; }
.checkout-header-title { font-weight: 800; font-size: 0.9rem; }
.checkout-header-price { font-size: 0.85rem; color: var(--primary); font-weight: 700; }

.campo { margin-bottom: 14px; }
.campo label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; }
.campo input, .campo select {
  width: 100%; padding: 12px 14px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg);
  color: var(--ink); font-size: 0.95rem;
  transition: border-color 0.15s ease;
}
.campo input:focus, .campo select:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-subtle);
}
.campo .erro { color: var(--danger); font-size: 0.8rem; margin-top: 4px; display: none; }
.campo.invalido input { border-color: var(--danger); }
.campo.invalido .erro { display: block; }
.linha-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.metodo-pagamento {
  border: 1.5px solid var(--border); border-radius: var(--radius-md); padding: 14px;
  margin-bottom: 10px; cursor: pointer; transition: all 0.15s ease;
}
.metodo-pagamento.selecionado {
  border-color: var(--primary); background: var(--select-bg);
}
.metodo-pagamento.desabilitado { opacity: 0.65; cursor: default; }
.badge-em-breve {
  display: inline-block; font-size: 0.7rem; font-weight: 800;
  background: var(--border); color: var(--ink-soft);
  padding: 2px 8px; border-radius: var(--radius-full); margin-left: 8px;
}
.aviso-cartao { font-size: 0.82rem; color: var(--ink-soft); margin-top: 6px; display: none; }
.metodo-pagamento.desabilitado.tocado .aviso-cartao { display: block; }

/* QR Code & PIX Box */
.pix-box { text-align: center; }
.pix-box img {
  margin: 0 auto 16px; width: 200px; height: 200px; border-radius: var(--radius-md);
  border: 1px solid var(--border); background: #FFFFFF; padding: 8px;
}
.pix-copia { display: flex; gap: 8px; margin-top: 12px; }
/* ── SEÇÃO DE VÍDEO & REELS SHOWCASE ── */
.video-showcase-section {
  padding: 60px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.video-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 860px) {
  .video-showcase-grid { grid-template-columns: 1fr; gap: 32px; }
}

.reel-phone-mockup {
  max-width: 340px;
  margin: 0 auto;
  border-radius: 36px;
  background: #000000;
  padding: 10px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
}
.reel-screen {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9/16;
  background: #111111;
}
.reel-screen img, .reel-screen video {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}

.reel-play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.reel-play-btn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  color: #191817;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease;
}
.reel-play-overlay:hover .reel-play-btn { transform: scale(1.08); }

.reel-overlay-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
  color: #FFFFFF;
  display: flex; flex-direction: column; gap: 8px;
}
.reel-creator {
  display: flex; align-items: center; gap: 8px; font-size: 0.82rem; font-weight: 700;
}
.reel-avatar {
  width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid #FFFFFF;
  background: var(--primary); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.reel-caption {
  font-size: 0.8rem; line-height: 1.35; color: rgba(255, 255, 255, 0.9);
}
.reel-product-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 4px;
}

.reel-side-actions {
  position: absolute; right: 12px; bottom: 80px;
  display: flex; flex-direction: column; gap: 14px; align-items: center;
  color: #FFFFFF; font-size: 0.75rem; font-weight: 700;
}
.reel-action-btn {
  background: none; border: none; color: #FFFFFF; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
}
.reel-action-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}

/* ── LIGHTBOX DE FOTOS DOS CLIENTES ── */
.lightbox-modal {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(10, 9, 8, 0.9);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox-modal.aberto { display: flex; }
.lightbox-content {
  max-width: 700px; width: 100%; max-height: 90vh;
  position: relative;
  display: flex; flex-direction: column; align-items: center;
}
.lightbox-img-wrap {
  width: 100%; max-height: 70vh; border-radius: var(--radius-md); overflow: hidden;
  background: #000000; display: flex; align-items: center; justify-content: center;
}
.lightbox-img-wrap img {
  max-width: 100%; max-height: 70vh; object-fit: contain;
}
.lightbox-caption-box {
  width: 100%; background: var(--bg-elevated); padding: 14px 18px;
  border-radius: var(--radius-md); margin-top: 12px;
  font-size: 0.88rem; color: var(--ink);
}
.lightbox-fechar {
  position: absolute; top: -40px; right: 0;
  background: none; border: none; color: #FFFFFF; font-size: 1.8rem;
  cursor: pointer;
}

/* ── REVIEWS AMADORES REALISTAS ── */
.review-photo-btn {
  position: relative; cursor: pointer; border-radius: var(--radius-md); overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1/1;
  background: var(--bg-subtle);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-photo-btn:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.review-photo-btn img {
  width: 100%; height: 100%; object-fit: cover;
}
.review-photo-tag {
  position: absolute; bottom: 8px; right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  display: flex; align-items: center; gap: 4px;
}

/* ── ANIMAÇÕES SUAVES DE ENTRADA (REVEAL) ── */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
.trust-badge-item.reveal-on-scroll:nth-child(2) { transition-delay: 0.08s; }
.trust-badge-item.reveal-on-scroll:nth-child(3) { transition-delay: 0.16s; }
.faq-item.reveal-on-scroll:nth-child(2) { transition-delay: 0.06s; }
.faq-item.reveal-on-scroll:nth-child(3) { transition-delay: 0.12s; }
.faq-item.reveal-on-scroll:nth-child(4) { transition-delay: 0.18s; }
.faq-item.reveal-on-scroll:nth-child(5) { transition-delay: 0.24s; }

/* Respeita quem prefere menos movimento na tela */
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
  .pulse-animation, .live-dot { animation: none !important; }
  .magnetic-btn { transition: none !important; }
  .btn-primary::after { transition: none !important; }
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--bg-subtle);
  color: var(--ink-soft);
  font-size: 0.88rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 32px; margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-col h4 { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: 12px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 0.8rem;
}


