/* =========================================================
   MERCATTO LANDING — STYLE.CSS (Premium 2026)
   Direção visual: Apple · Dyson · Baseus · Xiaomi · Nothing
   Mobile-first. Blocos independentes. Pronto para Wix.
   ========================================================= */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #E5E5E5;
  background: #050505;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 84px;
}
p { color: #B8B8B8; }
strong { color: #FFFFFF; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- DESIGN TOKENS (paleta branco · laranja · preto) ---------- */
:root {
  /* Cores — variáveis nomeadas como "blue" por compatibilidade,
     mas agora representam laranja (acentos) e preto (profundo). */
  --blue: #FF6A1A;        /* laranja brand */
  --blue-2: #FF8A4A;      /* laranja claro */
  --blue-deep: #0A0A0A;   /* preto profundo */
  --white: #FFFFFF;
  /* Tons claros (para uso pontual em cards/destaques) */
  --gray-50: #FAFAFA;
  --gray-100: #F0F0F0;
  --gray-200: #E5E5E5;
  --gray-400: #A3A3A3;
  --gray-600: #525252;
  --text: #FFFFFF;
  /* Tons escuros (default da página agora) */
  --bg-1: #050505;
  --bg-2: #0A0A0A;
  --bg-3: #141414;
  --bg-glass: rgba(20,20,20,.65);
  --border-soft: rgba(255,255,255,.08);
  --border-warm: rgba(255,138,74,.18);
  --cta: #FF6A1A;
  --cta-dark: #E5571A;
  --success: #22C55E;

  /* Gradientes */
  --grad-hero: linear-gradient(160deg, #FFFFFF 0%, #FAFAFA 55%, #F0F0F0 100%);
  --grad-blue: linear-gradient(135deg, #FF6A1A 0%, #FF8A4A 100%);
  --grad-cta:  linear-gradient(180deg, #FF8A4A 0%, #FF6A1A 60%, #E5571A 100%);
  --grad-dark: linear-gradient(160deg, #0A0A0A 0%, #1A1A1A 60%, #2A2A2A 100%);
  --grad-glow: radial-gradient(60% 60% at 50% 35%, rgba(255,106,26,.18) 0%, rgba(255,106,26,0) 70%);


  /* Sombras */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
  --shadow-sm: 0 4px 12px rgba(0,0,0,.06);
  --shadow-md: 0 12px 32px rgba(0,0,0,.08);
  --shadow-lg: 0 24px 60px rgba(0,0,0,.14);
  --shadow-cta: 0 10px 24px rgba(255,106,26,.32), inset 0 1px 0 rgba(255,255,255,.25);
  --shadow-blue: 0 10px 26px rgba(255,106,26,.28);

  /* Raio */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 28px;

  /* Layout */
  --max-w: 1200px;
  --header-h: 64px;
  --easing: cubic-bezier(.2, .8, .2, 1);
}

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 18px; }
section { padding: 64px 0; position: relative; }

/* Render off-screen apenas quando entra na viewport (ganho enorme em scroll) */
.trust-bar,
.benefits,
.where-use,
.before-after,
.reviews,
.how-it-works,
.guarantee,
.faq,
.cta-final,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: 1px 600px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { color: var(--text); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.9rem, 5.4vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 {
  font-size: clamp(1.55rem, 4vw, 2.4rem);
  font-weight: 800;
  /* Chrome metálico escuro — letras com profundidade */
  background: linear-gradient(180deg, #1A1A1A 0%, #050505 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* Chrome claro — agora o padrão (página é dark) */
h2 {
  background: linear-gradient(180deg, #FFFFFF 0%, #B8B8B8 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  text-shadow: 0 0 30px rgba(255,255,255,.12);
}
h1, .hero__title { color: #FFFFFF; }
h3 { color: #FFFFFF; }
h4 { color: #FFFFFF; }
h3 { font-size: 1.05rem; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 0.9rem; font-weight: 600; }
p  { color: var(--gray-600); }
.hl { background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hl-orange { color: var(--cta); }

/* ---------- SECTION HEADER ---------- */
.section-header { text-align: center; max-width: 720px; margin: 0 auto 44px; position: relative; }
.section-header .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(255,106,26,.07);
  padding: 7px 16px;
  border-radius: 99px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,106,26,.18);
  box-shadow: 0 0 0 4px rgba(255,106,26,.04), 0 4px 16px rgba(255,106,26,.08);
  position: relative;
}
.section-header h2 { margin-bottom: 16px; }
/* Light streak — assinatura cinematográfica embaixo do título */
.section-header h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  margin: 14px auto 0;
  background: linear-gradient(90deg, transparent, var(--blue) 30%, var(--blue-2) 70%, transparent);
  border-radius: 2px;
  box-shadow: 0 0 12px rgba(255,106,26,.45);
}
.section-header--light h2::after {
  background: linear-gradient(90deg, transparent, #FFB791 30%, #FF8A4A 70%, transparent);
  box-shadow: 0 0 16px rgba(255,138,74,.6);
}
.section-header p { color: var(--gray-600); font-size: 1.02rem; }
.section-header--light .eyebrow { color: #FFB791; background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); }
.section-header--light h2, .section-header--light p { color: #fff; }
.section-header--light p { color: rgba(255,255,255,.78); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 16px 26px;
  border-radius: 14px;
  cursor: pointer;
  transition: transform .25s var(--easing), box-shadow .25s var(--easing), background .25s ease;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
  text-transform: none;
}
.btn__sub { display: block; font-size: 0.74rem; font-weight: 500; opacity: .92; margin-top: 4px; letter-spacing: 0; }
.btn--primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: var(--shadow-cta), 0 0 0 1px rgba(255,138,74,.4), 0 0 24px rgba(255,106,26,.25);
  text-shadow: 0 1px 0 rgba(0,0,0,.15);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255,106,26,.5), 0 0 0 1px rgba(255,180,120,.6), 0 0 32px rgba(255,106,26,.4), inset 0 1px 0 rgba(255,255,255,.25);
}
.btn--primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .6s var(--easing);
}
.btn--primary:hover::after { transform: translateX(100%); }
.btn--blue { background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-blue); }
.btn--blue:hover { transform: translateY(-2px); box-shadow: 0 16px 32px rgba(255,106,26,.32); }
.btn--xl { width: 100%; padding: 18px 26px; font-size: 1rem; }

/* Pulse sutil — opacity-only para evitar repaint custoso */
.btn--pulse { position: relative; }
.btn--pulse::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: inherit;
  box-shadow: 0 0 0 2px rgba(255,106,26,.35);
  opacity: 0;
  animation: softPulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes softPulse {
  0%   { opacity: .7; transform: scale(1); }
  100% { opacity: 0;  transform: scale(1.06); }
}

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.announcement-bar {
  background: linear-gradient(90deg, #E5571A 0%, #FF6A1A 50%, #E5571A 100%);
  color: #FFFFFF;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 16px;
  letter-spacing: 0.3px;
  line-height: 1.4;
  position: relative;
}
.announcement-bar::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
}
.announcement-bar p {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.announcement-bar strong {
  color: #FFFFFF;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-shadow: 0 1px 0 rgba(0,0,0,.12);
}
.announcement-bar .sep {
  display: inline-block;
  width: 4px; height: 4px;
  background: rgba(255,255,255,.55);
  border-radius: 50%;
}

/* =========================================================
   HEADER (sticky · glass)
   ========================================================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5,5,5,.78);
  backdrop-filter: saturate(150%) blur(10px);
  -webkit-backdrop-filter: saturate(150%) blur(10px);
  border-bottom: 1px solid rgba(255,138,74,.18);
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 1px 0 rgba(255,106,26,.15);
  padding: 0;
  transition: padding .25s var(--easing);
  will-change: padding;
}
.header.is-scrolled { padding: 0; background: rgba(5,5,5,.92); }
.header__nav a { color: #B8B8B8; }
.header__nav a:hover { color: #FFFFFF; }
.header__inner { display: flex; align-items: center; justify-content: center; gap: 14px; min-height: 0; overflow: visible; }
.header__logo { display: inline-flex; align-items: center; line-height: 0; }
.header__logo-img {
  height: 130px;
  width: auto;
  display: block;
  margin: -25px 0;
  filter: drop-shadow(0 0 18px rgba(255,106,26,.15));
  /* Logo PNG com fundo transparente.
     Negative margin permite a logo crescer visualmente
     sem aumentar a altura da barra. */
}
@media (min-width: 768px) {
  .header__logo-img { height: 150px; margin: -29px 0; }
}
/* Variante para o footer */
.footer .header__logo-img { height: 110px; margin: 0; }

.header__nav { display: none; gap: 28px; }
.header__nav a {
  font-size: 0.92rem;
  color: var(--gray-600);
  font-weight: 500;
  position: relative;
  transition: color .2s;
}
.header__nav a:hover { color: var(--text); }
.header__nav a::after {
  content: ''; position: absolute; bottom: -6px; left: 0; height: 2px; width: 0;
  background: var(--blue);
  transition: width .3s var(--easing);
}
.header__nav a:hover::after { width: 100%; }

.header__cta { display: none; }
.header__cta .btn { padding: 10px 18px; font-size: 0.85rem; border-radius: 10px; }

.header__trust { display: none; }
.trust-item { font-size: 0.82rem; color: var(--gray-600); display: inline-flex; align-items: center; gap: 4px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  padding: 28px 0 64px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(70% 60% at 85% 5%, rgba(255,106,26,.40) 0%, transparent 60%),
    radial-gradient(55% 55% at 5% 95%, rgba(255,138,74,.25) 0%, transparent 60%),
    linear-gradient(160deg, #050505 0%, #0F0F0F 45%, #1A1A1A 100%);
}
/* Faíscas/embers no hero */
.hero::before {
  content: '';
  position: absolute; inset: -10%;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(255,138,74,.85), transparent 50%),
    radial-gradient(1px 1px at 80% 45%, rgba(255,106,26,.75), transparent 50%),
    radial-gradient(1px 1px at 45% 80%, rgba(255,180,120,.6), transparent 50%),
    radial-gradient(2px 2px at 65% 20%, rgba(255,138,74,.7), transparent 50%),
    radial-gradient(1px 1px at 30% 60%, rgba(255,106,26,.8), transparent 50%),
    radial-gradient(1.5px 1.5px at 90% 75%, rgba(255,180,120,.5), transparent 50%);
  animation: floatEmbers 24s ease-in-out infinite;
  pointer-events: none;
  opacity: .7;
}
.hero__grid { display: grid; grid-template-columns: 1fr; gap: 28px; position: relative; }

/* Galeria */
.hero__gallery { display: flex; flex-direction: column; gap: 24px; position: relative; }
.gallery-main {
  position: relative;
  background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), 0 0 0 1px var(--border-warm);
  border: 1px solid var(--border-warm);
}
.gallery-main__img {
  transition: transform .5s var(--easing);
  transform-origin: center center;
  will-change: transform;
}
.gallery-main__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
  z-index: 2;
  transition: opacity .35s var(--easing);
}
/* Vídeo escondido só quando o usuário escolhe uma das outras fotos */
.gallery-main__video.is-hidden { opacity: 0; pointer-events: none; }
/* Thumb de vídeo — card próprio com play icon centralizado */
.thumb--video {
  position: relative;
  background:
    radial-gradient(circle at center, rgba(255,106,26,.18), transparent 70%),
    linear-gradient(135deg, #1F1F1F 0%, #0A0A0A 100%);
  overflow: hidden;
}
.thumb--video::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 70%; height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,26,.25), transparent 65%);
  filter: blur(8px);
  pointer-events: none;
}
.thumb__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #FFFFFF;
  pointer-events: none;
  transition: transform .3s var(--easing);
}
.thumb__play svg {
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 2px 12px rgba(255,106,26,.6));
  transition: transform .25s var(--easing);
}
.thumb__label {
  position: absolute;
  bottom: 6px;
  left: 0; right: 0;
  text-align: center;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: rgba(255,255,255,.7);
  pointer-events: none;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.thumb--video:hover { border-color: rgba(255,138,74,.5); box-shadow: 0 0 16px rgba(255,106,26,.3); }
.thumb--video:hover .thumb__play svg { transform: scale(1.2); }
.thumb--video.is-active { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 0 24px rgba(255,106,26,.5); }
/* Zoom inset apenas em dispositivos com hover (desktop) */
@media (hover: hover) and (pointer: fine) {
  .gallery-main { cursor: zoom-in; }
  .gallery-main:hover .gallery-main__img { transform: scale(2); }
  .gallery-main.is-zooming .gallery-main__img { transition: transform .12s ease-out; }
}
.gallery-main::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(255,106,26,.06), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.gallery-main__img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 0; }
.gallery-badge {
  position: absolute;
  top: -14px; right: 20px;
  background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  color: var(--blue);
  padding: 8px 16px;
  font-weight: 700;
  font-size: 0.78rem;
  border-radius: 99px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  box-shadow: 0 6px 20px rgba(0,0,0,.5), 0 0 0 1px rgba(255,138,74,.5), 0 0 24px rgba(255,106,26,.35);
  z-index: 5;
  border: 1px solid var(--border-warm);
}
.gallery-badge::before { content: '●'; color: var(--cta); margin-right: 6px; font-size: 0.7rem; }

.gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-thumbs::-webkit-scrollbar { display: none; }
.thumb {
  background: linear-gradient(180deg, #1F1F1F 0%, #0A0A0A 100%);
  border: 2px solid var(--border-soft);
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  padding: 0;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
  /* Largura fixa pra rolagem horizontal — mostra ~3.5 thumbs por vez */
  flex: 0 0 calc((100% - 28px) / 3.5);
  scroll-snap-align: start;
}
.thumb:hover { border-color: rgba(255,138,74,.4); box-shadow: 0 4px 14px rgba(0,0,0,.4), 0 0 12px rgba(255,106,26,.15); }
.thumb.is-active { border-color: var(--blue); box-shadow: 0 0 0 1px var(--blue), 0 0 16px rgba(255,106,26,.4); }
.thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 65%; display: block; }

/* Info */
.hero__rating { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: #B8B8B8; margin-bottom: 14px; flex-wrap: wrap; }
.stars { color: #FFB400; letter-spacing: 1px; font-size: 0.95rem; text-shadow: 0 0 8px rgba(255,180,0,.4); }
.stars-lg { color: #FFB400; font-size: 1.4rem; letter-spacing: 2px; text-shadow: 0 0 12px rgba(255,180,0,.5); }
.rating-text strong { color: #FFFFFF; font-weight: 700; }

.hero__title {
  margin-bottom: 14px;
  position: relative;
  line-height: 1.2;
}
.hero__title .hl {
  position: relative;
  display: inline-block;
  padding-bottom: 0.12em;
  margin-bottom: -0.12em;
}
/* Light streak horizontal sutil atrás do destaque laranja */
.hero__title .hl::before {
  content: '';
  position: absolute;
  left: -8%; right: -8%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,106,26,.35) 30%, rgba(255,138,74,.5) 50%, rgba(255,106,26,.35) 70%, transparent);
  transform: translateY(-50%);
  filter: blur(1px);
  z-index: -1;
  pointer-events: none;
}
.hero__subtitle { color: #B8B8B8; font-size: 1.04rem; margin-bottom: 22px; max-width: 540px; }
.hero__subtitle strong { color: #FFFFFF; }

.hero__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin-bottom: 24px;
}
.hero__highlights li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.9rem; color: #E5E5E5; font-weight: 500;
}
.hero__highlights li::before {
  content: ''; width: 18px; height: 18px; border-radius: 50%; flex-shrink: 0;
  background: var(--success) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8.5l3 3 7-7' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat;
}

/* Card de oferta */
.hero__offer {
  background: linear-gradient(180deg, rgba(30,30,30,.85) 0%, rgba(15,15,15,.85) 100%);
  border: 1px solid var(--border-warm);
  border-radius: var(--r-lg);
  padding: 22px;
  margin-bottom: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,.5), 0 0 30px rgba(255,106,26,.1);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.offer-prices { display: flex; flex-direction: column; gap: 2px; text-align: center; align-items: center; }
.price-old { color: #888888; font-size: 0.92rem; }
.price-new { font-size: 1rem; color: #B8B8B8; }
.price-new strong {
  font-size: 2.6rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #B8B8B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: block;
  line-height: 1;
  margin-top: 4px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-shadow: 0 0 24px rgba(255,138,74,.25);
}
.price-installments { font-size: 0.88rem; color: #B8B8B8; margin-top: 8px; }
.offer-bonus {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  font-size: 0.9rem;
  color: #E5E5E5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.offer-bonus strong { color: var(--blue); font-weight: 700; }

/* Countdown — minimalista premium */
.countdown {
  background: linear-gradient(180deg, rgba(30,30,30,.85) 0%, rgba(15,15,15,.85) 100%);
  border: 1px solid var(--border-warm);
  color: #FFFFFF;
  border-radius: var(--r-lg);
  padding: 18px 20px;
  margin-bottom: 18px;
  box-shadow: 0 12px 32px rgba(0,0,0,.5), 0 0 30px rgba(255,106,26,.12);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.countdown::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--cta) 100%);
}
.countdown__title {
  font-size: 0.78rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: #B8B8B8;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 6px;
}
.countdown__title::before { content: '●'; color: var(--cta); animation: blink 1.4s infinite; }
@keyframes blink { 0%, 60%, 100% { opacity: 1; } 30% { opacity: .25; } }
.countdown__timer { display: flex; justify-content: center; gap: 10px; }
.time-block {
  background: linear-gradient(180deg, #1F1F1F 0%, #0A0A0A 100%);
  border: 1px solid var(--border-warm);
  border-radius: 12px;
  padding: 12px 14px;
  min-width: 72px;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 0 16px rgba(255,106,26,.12);
}
.time-block span {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(180deg, #FFFFFF 0%, #C5C5C5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 18px rgba(255,138,74,.4);
}
.time-block small { display: block; font-size: 0.65rem; color: #888888; margin-top: 6px; letter-spacing: 1.2px; text-transform: uppercase; }

/* Ancoragem de valor — lista "Economize" */
.offer-savings {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
/* Variante no hero (fora do card de oferta) — sem borda, mais respiro */
.hero__savings {
  margin: 0 0 22px;
  padding-top: 0;
  border-top: none;
}
.offer-savings__head {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--blue-2);
  margin-bottom: 2px;
}
.offer-savings li:not(.offer-savings__head) {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: #E5E5E5;
  line-height: 1.3;
}
.offer-savings li:not(.offer-savings__head)::before {
  content: '';
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--success) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8.5l3 3 7-7' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/11px no-repeat;
}

/* Pagamentos */
.hero__payments { margin-top: 16px; text-align: center; color: var(--gray-400); font-size: 0.76rem; letter-spacing: 0.4px; }
.hero__payments p { margin-bottom: 10px; }
.payments-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; align-items: center; }
.payments-row img {
  height: 30px;
  width: 50px;
  object-fit: contain;
  background: #FFFFFF;
  opacity: .98;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,.35);
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-sizing: border-box;
}
/* PNG do Pix tem proporção diferente — adiciona padding pra encaixar */
.payments-row img[src*="pay-pix"] {
  padding: 3px 5px;
}
.payments-row img:hover {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,.45);
}

/* =========================================================
   TRUST BAR
   ========================================================= */
.trust-bar {
  background: linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
  padding: 36px 0;
  border-top: 1px solid var(--border-warm);
  border-bottom: 1px solid var(--border-soft);
  position: relative;
}
.trust-bar::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 320px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue) 50%, transparent);
  box-shadow: 0 0 16px rgba(255,106,26,.4);
}
.trust-bar__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.trust-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(180deg, rgba(30,30,30,.7) 0%, rgba(15,15,15,.7) 100%);
  padding: 14px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  transition: transform .3s var(--easing), box-shadow .3s var(--easing), border-color .3s var(--easing);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute; top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,138,74,.6), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.trust-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(255,138,74,.3);
  border-color: rgba(255,138,74,.4);
}
.trust-card:hover::before { opacity: 1; }
.trust-card__icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: 10px;
  background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
  border: 1px solid var(--border-warm);
  display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 0 12px rgba(255,106,26,.15);
  color: var(--blue);
}
.trust-card strong { display: block; font-size: 1rem; color: #FFFFFF; font-weight: 600; }
.trust-card small { color: #B0B0B0; font-size: 0.85rem; }

/* =========================================================
   BENEFITS
   ========================================================= */
.benefits {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(255,106,26,.18) 0%, transparent 60%),
    radial-gradient(45% 65% at 0% 40%, rgba(255,138,74,.12) 0%, transparent 65%),
    linear-gradient(180deg, #0A0A0A 0%, #141414 50%, #0A0A0A 100%);
}
.benefits > .container { position: relative; }
.benefits .container::after {
  content: '';
  position: absolute; left: -10%; right: -10%; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,138,74,.4) 50%, transparent 100%);
  filter: blur(1px);
  animation: streakSweep 14s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
/* Faíscas sutis */
.benefits::before {
  content: '';
  position: absolute; inset: -10%;
  background-image:
    radial-gradient(1px 1px at 10% 15%, rgba(255,138,74,.5), transparent 50%),
    radial-gradient(1.5px 1.5px at 88% 70%, rgba(255,106,26,.6), transparent 50%),
    radial-gradient(1px 1px at 35% 80%, rgba(255,180,120,.4), transparent 50%),
    radial-gradient(1px 1px at 70% 25%, rgba(255,138,74,.5), transparent 50%);
  animation: floatEmbers 26s ease-in-out infinite;
  pointer-events: none;
  opacity: .7;
}
.benefits__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.benefit {
  background: linear-gradient(180deg, rgba(28,28,28,.7) 0%, rgba(14,14,14,.7) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform .35s var(--easing), box-shadow .35s var(--easing), border-color .35s var(--easing);
  display: flex; flex-direction: column;
  position: relative;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* Light streak no topo do card (assinatura futurista da logo) */
.benefit::before {
  content: '';
  position: absolute; top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,106,26,0), transparent);
  transition: background .4s var(--easing);
  pointer-events: none;
  z-index: 2;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(255,106,26,.2), 0 0 30px rgba(255,106,26,.1);
  border-color: rgba(255,106,26,.25);
}
.benefit:hover::before {
  background: linear-gradient(90deg, transparent, rgba(255,106,26,.7), transparent);
}
.benefit__img {
  position: relative;
  background: linear-gradient(180deg, #1F1F1F 0%, #0A0A0A 100%);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--border-warm);
}
.benefit__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--easing); }
.benefit:hover .benefit__img img { transform: scale(1.04); }
.benefit h3 { padding: 18px 18px 6px; font-size: 1.18rem; color: #FFFFFF; }
.benefit p { padding: 0 18px 20px; color: #B8B8B8; font-size: 1rem; line-height: 1.5; }

/* =========================================================
   ONDE USAR
   ========================================================= */
.where-use {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(45% 65% at 0% 50%, rgba(255,106,26,.20), transparent 60%),
    radial-gradient(45% 65% at 100% 50%, rgba(255,138,74,.16), transparent 60%),
    linear-gradient(180deg, #050505 0%, #0F0F0F 100%);
}
.where-use__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.where-card {
  background: linear-gradient(180deg, rgba(28,28,28,.7) 0%, rgba(14,14,14,.7) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 20px 14px;
  text-align: center;
  transition: transform .3s var(--easing), box-shadow .3s var(--easing), border-color .3s var(--easing);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.where-card::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-blue);
  opacity: 0;
  transition: opacity .3s var(--easing);
  z-index: 0;
}
.where-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 24px rgba(255,106,26,.25), 0 0 0 1px rgba(255,138,74,.4);
  border-color: transparent;
}
.where-card:hover::before { opacity: 1; }
.where-card:hover .where-card__icon { background: rgba(255,255,255,.22); color: #fff; box-shadow: 0 0 12px rgba(255,255,255,.3); }
.where-card:hover h3 { color: #fff; text-shadow: 0 1px 0 rgba(0,0,0,.2); }
.where-card__icon {
  position: relative; z-index: 1;
  width: 54px; height: 54px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: linear-gradient(180deg, #1F1F1F 0%, #0A0A0A 100%);
  border: 1px solid var(--border-warm);
  color: var(--blue);
  display: grid; place-items: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 0 12px rgba(255,106,26,.18);
  transition: background .3s, color .3s, box-shadow .3s;
}
.where-card__icon svg { width: 26px; height: 26px; }
.where-card h3 { position: relative; z-index: 1; font-size: 1.02rem; font-weight: 600; color: #FFFFFF; transition: color .3s; }

/* =========================================================
   BEFORE / AFTER
   ========================================================= */
.before-after {
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(55% 60% at 95% 0%, rgba(255,106,26,.50) 0%, transparent 60%),
    radial-gradient(50% 65% at 0% 100%, rgba(255,138,74,.32) 0%, transparent 60%),
    linear-gradient(160deg, #050505 0%, #0A0A0A 50%, #1F1F1F 100%);
}
/* Partículas / faíscas flutuantes */
.before-after::before {
  content: '';
  position: absolute; inset: -10%;
  background-image:
    radial-gradient(2px 2px at 15% 20%, rgba(255,138,74,.9), transparent 50%),
    radial-gradient(1px 1px at 85% 15%, rgba(255,106,26,.8), transparent 50%),
    radial-gradient(1.5px 1.5px at 25% 75%, rgba(255,180,120,.7), transparent 50%),
    radial-gradient(1px 1px at 70% 60%, rgba(255,106,26,.9), transparent 50%),
    radial-gradient(2px 2px at 50% 90%, rgba(255,138,74,.6), transparent 50%),
    radial-gradient(1px 1px at 40% 40%, rgba(255,138,74,.8), transparent 50%),
    radial-gradient(1.5px 1.5px at 90% 80%, rgba(255,106,26,.6), transparent 50%),
    radial-gradient(1px 1px at 5% 50%, rgba(255,180,120,.7), transparent 50%);
  animation: floatEmbers 18s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
/* Light streak horizontal animado */
.before-after::after {
  content: '';
  position: absolute; left: -10%; right: -10%; top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,138,74,.8) 50%, transparent 100%);
  filter: blur(1px);
  animation: streakSweep 9s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.before-after__media {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.6), 0 0 0 1px var(--border-warm), 0 0 60px rgba(255,106,26,.2);
  background: #000;
  position: relative;
  border: 1px solid var(--border-warm);
}

/* SLIDER ANTES/DEPOIS */
.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  user-select: none;
  cursor: ew-resize;
  /* pan-y permite ao navegador rolar a página verticalmente.
     Movimento horizontal fica livre pra o JS controlar o slider. */
  touch-action: pan-y;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  -webkit-user-drag: none;
}
.ba-slider__after { z-index: 1; }
.ba-slider__before-wrap {
  position: absolute;
  inset: 0;
  width: var(--pos, 50%);
  overflow: hidden;
  z-index: 2;
  will-change: width;
}
.ba-slider__before-wrap .ba-slider__before {
  width: 100vw;
  max-width: 720px;
  height: 100%;
}
/* Labels */
.ba-slider__label {
  position: absolute;
  top: 16px;
  z-index: 5;
  padding: 6px 12px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 99px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ba-slider__label--before { left: 16px; }
.ba-slider__label--after  { right: 16px; }
/* Handle */
.ba-slider__handle {
  position: absolute;
  top: 0;
  left: var(--pos, 50%);
  transform: translateX(-50%);
  height: 100%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  will-change: left;
}
.ba-slider__line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: #FFFFFF;
  box-shadow: 0 0 12px rgba(255,255,255,.6), 0 0 24px rgba(255,138,74,.5);
}
.ba-slider__knob {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FF8A4A 0%, #FF6A1A 100%);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow:
    0 8px 24px rgba(255,106,26,.5),
    0 0 0 4px rgba(255,255,255,.15),
    0 0 0 1px rgba(255,255,255,.4),
    inset 0 1px 0 rgba(255,255,255,.3);
  transition: transform .2s var(--easing), box-shadow .2s var(--easing);
}
.ba-slider:hover .ba-slider__knob,
.ba-slider__handle:focus-visible .ba-slider__knob,
.ba-slider.is-dragging .ba-slider__knob {
  transform: scale(1.1);
  box-shadow:
    0 12px 32px rgba(255,106,26,.6),
    0 0 0 6px rgba(255,255,255,.18),
    0 0 0 1px rgba(255,255,255,.5),
    inset 0 1px 0 rgba(255,255,255,.3);
}
.ba-slider.is-dragging { cursor: grabbing; }
.ba-slider.is-dragging .ba-slider__before-wrap,
.ba-slider.is-dragging .ba-slider__handle { transition: none; }
.ba-slider__before-wrap,
.ba-slider__handle { transition: width .3s var(--easing), left .3s var(--easing); }

/* Em telas largas, slider pode ficar 4:3 — mais cinematográfico */
@media (min-width: 768px) {
  .ba-slider { aspect-ratio: 4 / 3; }
}
.before-after__caption {
  text-align: center;
  margin-top: 20px;
  color: rgba(255,255,255,.7);
  font-size: 0.92rem;
}

/* =========================================================
   REVIEWS
   ========================================================= */
.reviews {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(50% 60% at 100% 30%, rgba(255,106,26,.18), transparent 60%),
    radial-gradient(50% 60% at 0% 70%, rgba(255,138,74,.14), transparent 60%),
    linear-gradient(180deg, #0A0A0A 0%, #141414 50%, #0A0A0A 100%);
}
.reviews__summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 14px;
  font-size: 0.9rem;
  color: #B8B8B8;
}
.reviews__summary strong { color: #FFFFFF; }
.reviews__grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 8px; }
.review {
  background: linear-gradient(180deg, rgba(28,28,28,.7) 0%, rgba(14,14,14,.7) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 22px;
  transition: transform .3s var(--easing), box-shadow .3s var(--easing), border-color .3s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.review:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(255,138,74,.3);
  border-color: rgba(255,138,74,.35);
}
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.review__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: #1F1F1F;
  border: 2px solid var(--border-warm);
  box-shadow: 0 0 10px rgba(255,106,26,.2);
}
.review__head > div { flex: 1; min-width: 0; }
.review__head strong { display: block; font-size: 1rem; color: #FFFFFF; font-weight: 600; }
.review__head small { color: #A0A0A0; font-size: 0.84rem; }
.review p { color: #DDDDDD; font-size: 1rem; line-height: 1.55; }
.review__photo { margin-top: 14px; border-radius: 12px; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* =========================================================
   HOW IT WORKS
   ========================================================= */
.how-it-works {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(255,106,26,.20), transparent 60%),
    linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
}
.steps { display: grid; grid-template-columns: 1fr; gap: 14px; }
.step {
  background: linear-gradient(180deg, rgba(28,28,28,.7) 0%, rgba(14,14,14,.7) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition: transform .3s var(--easing), box-shadow .3s var(--easing), border-color .3s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(255,138,74,.3);
  border-color: rgba(255,138,74,.35);
}
.step h3 { color: #FFFFFF !important; }
.step p { color: #B8B8B8 !important; }
.step__num {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px;
  background: var(--grad-blue);
  color: #fff;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 14px;
  box-shadow:
    var(--shadow-blue),
    inset 0 1px 0 rgba(255,255,255,.3),
    inset 0 -2px 6px rgba(0,0,0,.15),
    0 0 0 4px rgba(255,106,26,.08);
  text-shadow: 0 1px 0 rgba(0,0,0,.2);
  position: relative;
}
/* Light streak sutil à direita (assinatura logo) */
.step__num::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  width: 18px; height: 1px;
  margin-left: 4px;
  background: linear-gradient(90deg, rgba(255,106,26,.5), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}
.step h3 { margin-bottom: 6px; font-size: 1.15rem; font-weight: 600; }
.step p { color: var(--gray-600); font-size: 1rem; line-height: 1.5; }

/* =========================================================
   OFFER (Pacote único)
   ========================================================= */
.offer {
  color: #fff;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(50% 60% at 15% 0%, rgba(255,106,26,.55) 0%, transparent 60%),
    radial-gradient(55% 65% at 85% 100%, rgba(255,138,74,.35) 0%, transparent 60%),
    linear-gradient(160deg, #050505 0%, #0A0A0A 45%, #1F1F1F 100%);
}
.offer::before {
  content: '';
  position: absolute; inset: -10%;
  background-image:
    radial-gradient(2px 2px at 20% 30%, rgba(255,138,74,.9), transparent 50%),
    radial-gradient(1px 1px at 75% 20%, rgba(255,106,26,.7), transparent 50%),
    radial-gradient(1.5px 1.5px at 50% 60%, rgba(255,180,120,.8), transparent 50%),
    radial-gradient(1px 1px at 30% 80%, rgba(255,106,26,.6), transparent 50%),
    radial-gradient(2px 2px at 85% 70%, rgba(255,138,74,.7), transparent 50%),
    radial-gradient(1px 1px at 10% 65%, rgba(255,138,74,.8), transparent 50%),
    radial-gradient(1.5px 1.5px at 65% 90%, rgba(255,180,120,.6), transparent 50%);
  animation: floatEmbers 22s ease-in-out infinite reverse;
  pointer-events: none;
  z-index: -1;
}
.offer::after {
  content: '';
  position: absolute; left: -10%; right: -10%; top: 35%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,138,74,.7) 50%, transparent 100%);
  filter: blur(1px);
  animation: streakSweep 11s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.packs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 520px;
  margin: 0 auto 30px;
  position: relative;
}
.pack {
  background: linear-gradient(180deg, rgba(30,30,30,.85) 0%, rgba(15,15,15,.85) 100%);
  color: #FFFFFF;
  border-radius: var(--r-lg);
  padding: 26px 22px;
  border: 2px solid transparent;
  transition: transform .3s var(--easing), box-shadow .3s var(--easing), border-color .3s var(--easing);
  position: relative;
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pack:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pack.is-featured {
  border-color: var(--cta);
  box-shadow:
    0 20px 50px rgba(255,106,26,.28),
    0 0 0 1px rgba(255,138,74,.5),
    0 0 60px rgba(255,106,26,.18);
  animation: featuredBreath 4s ease-in-out infinite;
}
@keyframes featuredBreath {
  0%, 100% {
    box-shadow: 0 20px 50px rgba(255,106,26,.28), 0 0 0 1px rgba(255,138,74,.5), 0 0 60px rgba(255,106,26,.18);
  }
  50% {
    box-shadow: 0 24px 60px rgba(255,106,26,.4), 0 0 0 1px rgba(255,180,120,.7), 0 0 90px rgba(255,106,26,.3);
  }
}
@keyframes floatEmbers {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .7; }
  50%      { transform: translate3d(8px, -25px, 0); opacity: 1; }
}
@keyframes streakSweep {
  0%, 100% { opacity: 0; transform: translateX(-15%) scaleX(.6); }
  50%      { opacity: 1; transform: translateX(0) scaleX(1); }
}

.pack__tag {
  position: absolute; top: -12px; left: 22px;
  background: var(--grad-cta);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  padding: 7px 14px;
  border-radius: 99px;
  box-shadow: var(--shadow-cta), 0 0 0 1px rgba(255,180,120,.5), 0 0 20px rgba(255,106,26,.4);
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(0,0,0,.2);
}
.pack__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.pack__qty {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,138,74,.08);
  border: 1px solid rgba(255,138,74,.25);
  padding: 6px 14px;
  border-radius: 99px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #FFFFFF;
}
.pack__qty strong { color: var(--blue); font-weight: 800; }
.pack__discount {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: var(--success);
  background: rgba(34,197,94,.1);
  padding: 5px 10px;
  border-radius: 99px;
}
.pack h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 4px; color: #FFFFFF; }
.pack__desc { font-size: 0.86rem; color: #B8B8B8; margin-bottom: 18px; }

.pack__price-row { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.pack__price-old { color: #888888; font-size: 0.92rem; text-decoration: line-through; }
.pack__price {
  font-size: 2.6rem;
  font-weight: 900;
  background: linear-gradient(180deg, #FFFFFF 0%, #B8B8B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow: 0 0 24px rgba(255,138,74,.25);
}
.pack__unit { font-size: 0.84rem; color: #888888; }
.pack__install { font-size: 0.84rem; color: #B8B8B8; margin-bottom: 16px; }

.pack__list { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.pack__list li { font-size: 0.88rem; color: #E5E5E5; display: flex; align-items: center; gap: 8px; }
.pack__list strong { color: #FFFFFF; }
.pack__list li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: var(--success) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><path d='M3 8.5l3 3 7-7' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/10px no-repeat;
}

.pack__stock { font-size: 0.82rem; color: #B8B8B8; display: flex; align-items: center; gap: 6px; margin-top: 12px; }
.pack__stock::before { content: '●'; color: var(--success); animation: blink 1.6s infinite; }

/* =========================================================
   GUARANTEE
   ========================================================= */
.guarantee {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(50% 70% at 20% 50%, rgba(255,106,26,.22), transparent 60%),
    radial-gradient(40% 55% at 100% 30%, rgba(255,138,74,.15), transparent 65%),
    linear-gradient(180deg, #050505 0%, #0F0F0F 100%);
}
.guarantee__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.guarantee__seal img { width: 140px; height: 140px; filter: drop-shadow(0 12px 32px rgba(255,106,26,.45)); }
.guarantee__text h2 { margin-bottom: 10px; }
.guarantee__text p { color: #B8B8B8; max-width: 640px; }
.guarantee__text strong { color: #FFFFFF; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(60% 60% at 50% 0%, rgba(255,106,26,.18), transparent 60%),
    linear-gradient(180deg, #0A0A0A 0%, #141414 100%);
}
.faq__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq__item {
  background: linear-gradient(180deg, rgba(28,28,28,.7) 0%, rgba(14,14,14,.7) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: border-color .25s, background .25s, box-shadow .25s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.faq__item:hover { border-color: rgba(255,138,74,.3); }
.faq__item[open] {
  background: linear-gradient(180deg, rgba(35,25,15,.85) 0%, rgba(20,15,10,.85) 100%);
  border-color: var(--blue);
  box-shadow: 0 8px 24px rgba(0,0,0,.5), 0 0 24px rgba(255,106,26,.15);
}
.faq__item summary {
  font-weight: 600;
  font-size: 1.05rem;
  color: #FFFFFF;
  list-style: none;
  position: relative;
  padding-right: 36px;
  outline: none;
  cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--blue);
  width: 28px; height: 28px;
  background: rgba(255,106,26,.07);
  border-radius: 50%;
  display: grid; place-items: center;
  transition: transform .3s var(--easing), background .3s;
  line-height: 0;
}
.faq__item[open] summary::after { content: '−'; background: var(--blue); color: #fff; }
.faq__item p { margin-top: 12px; color: #C5C5C5; font-size: 1rem; line-height: 1.6; }

/* =========================================================
   CTA FINAL
   ========================================================= */
.cta-final {
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(60% 80% at 80% 20%, rgba(255,255,255,.18) 0%, transparent 60%),
    radial-gradient(55% 65% at 20% 100%, rgba(255,138,74,.35) 0%, transparent 60%),
    linear-gradient(135deg, #FF8A4A 0%, #FF6A1A 50%, #E5571A 100%);
}
.cta-final::before {
  content: '';
  position: absolute; inset: -10%;
  background-image:
    radial-gradient(2px 2px at 25% 30%, rgba(255,255,255,.8), transparent 50%),
    radial-gradient(1px 1px at 80% 25%, rgba(255,255,255,.6), transparent 50%),
    radial-gradient(1.5px 1.5px at 50% 70%, rgba(255,255,255,.7), transparent 50%),
    radial-gradient(1px 1px at 15% 80%, rgba(255,255,255,.5), transparent 50%),
    radial-gradient(2px 2px at 70% 90%, rgba(255,255,255,.6), transparent 50%),
    radial-gradient(1px 1px at 90% 55%, rgba(255,255,255,.7), transparent 50%);
  animation: floatEmbers 20s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.cta-final::after {
  content: '';
  position: absolute; left: -10%; right: -10%; top: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.7) 50%, transparent 100%);
  filter: blur(1px);
  animation: streakSweep 7s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}
.cta-final__inner { max-width: 720px; margin: 0 auto; position: relative; }
.cta-final h2 { color: #fff; margin-bottom: 12px; }
.cta-final p { margin-bottom: 26px; color: rgba(255,255,255,.85); }
.cta-final .btn { max-width: 460px; margin: 0 auto; }
.cta-final small { display: block; margin-top: 16px; color: rgba(255,255,255,.78); font-size: 0.85rem; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background:
    radial-gradient(45% 65% at 0% 0%, rgba(255,106,26,.20), transparent 65%),
    linear-gradient(180deg, #0A0A0A 0%, #050505 100%);
  color: rgba(255,255,255,.7);
  padding-top: 48px;
}
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.footer__col h4 { color: #fff; margin-bottom: 14px; font-size: 0.9rem; letter-spacing: 0.5px; font-weight: 600; }
.footer__col p, .footer__col li { font-size: 0.88rem; margin-bottom: 8px; color: rgba(255,255,255,.7); }
.footer__col a:hover { color: #fff; }
.footer__col .header__logo { margin-bottom: 14px; }
.footer__col .logo-text { color: #fff; }
.payments-row--footer img { opacity: .9; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 36px;
  padding: 22px 0;
  font-size: 0.78rem;
  color: rgba(255,255,255,.5);
  text-align: center;
}
.footer__disclaimer { margin-top: 6px; font-size: 0.74rem; opacity: .7; }

/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */
.mobile-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(10,10,10,.92) 0%, rgba(5,5,5,.95) 100%);
  border-top: 1px solid var(--border-warm);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 -8px 24px rgba(0,0,0,.5), 0 -1px 0 rgba(255,106,26,.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(100%);
  transition: transform .4s var(--easing);
  pointer-events: none;
}
.mobile-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-cta__price { flex: 1; line-height: 1.1; }
.mobile-cta__old { display: block; color: #888888; font-size: 0.74rem; margin-bottom: 2px; text-decoration: line-through; }
.mobile-cta__new {
  background: linear-gradient(180deg, #FFFFFF 0%, #C5C5C5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-shadow: 0 0 16px rgba(255,138,74,.3);
}
.mobile-cta__btn { padding: 14px 22px; font-size: 0.9rem; flex: 1; border-radius: 12px; }

/* =========================================================
   LIGHTBOX (zoom da imagem em tela cheia)
   ========================================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,.96);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
  touch-action: pinch-zoom;
  animation: lightboxIn .3s var(--easing);
  -webkit-overflow-scrolling: touch;
}
.lightbox[hidden] { display: none; }
@keyframes lightboxIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox__close {
  position: fixed;
  top: 16px; right: 16px;
  z-index: 202;
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background .2s, transform .2s;
  padding: 0;
}
.lightbox__close:hover { background: rgba(255,255,255,.22); transform: scale(1.05); }
.lightbox__hint {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 201;
  padding: 8px 14px;
  background: rgba(0,0,0,.6);
  border: 1px solid rgba(255,138,74,.4);
  border-radius: 99px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: .3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  animation: lightboxHint 3.5s var(--easing) forwards;
  pointer-events: none;
}
@keyframes lightboxHint {
  0%   { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  15%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  75%  { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-8px); }
}
.lightbox__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 16px;
}
.lightbox__inner img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

/* Indicador "toque para ampliar" no gallery-main */
.gallery-main::after {
  content: '';
  position: absolute;
  top: 12px; left: 12px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,.55) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><circle cx='11' cy='11' r='7'/><line x1='21' y1='21' x2='16.65' y2='16.65'/><line x1='11' y1='8' x2='11' y2='14'/><line x1='8' y1='11' x2='14' y2='11'/></svg>") center/18px no-repeat;
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2;
  opacity: .85;
  transition: opacity .2s, transform .2s;
  pointer-events: none;
}
.gallery-main:hover::after { opacity: 1; transform: scale(1.05); }

/* =========================================================
   WHATSAPP FLUTUANTE (botão + mini-chat)
   ========================================================= */
.wa-fab {
  position: fixed;
  bottom: 100px;
  right: 16px;
  z-index: 110;
  /* Visível desde o começo da página */
  transition: bottom .4s var(--easing), transform .25s var(--easing);
}
/* Sobe o WhatsApp pra acima do banner de cookies enquanto ele estiver visível */
body.cookie-visible .wa-fab { bottom: 290px; }
@media (min-width: 768px) {
  .wa-fab { bottom: 24px; right: 24px; }
  body.cookie-visible .wa-fab { bottom: 220px; }
}
.wa-fab__btn {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(180deg, #25D366 0%, #128C7E 100%);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.45), 0 4px 12px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.25);
  transition: transform .25s var(--easing), box-shadow .25s var(--easing);
  padding: 0;
}
.wa-fab__btn:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 36px rgba(37,211,102,.6), 0 6px 16px rgba(0,0,0,.4); }
.wa-fab__btn::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: rgba(37,211,102,.4);
  z-index: -1;
  animation: waPulse 2.2s ease-out infinite;
}
@keyframes waPulse {
  0%   { opacity: .5; transform: scale(1); }
  100% { opacity: 0;  transform: scale(1.35); }
}
.wa-fab__dot {
  position: absolute;
  top: 4px; right: 4px;
  width: 14px; height: 14px;
  background: var(--cta);
  border: 2px solid #050505;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,106,26,.6);
}

/* Mini-chat popup */
.wa-fab__popup {
  position: absolute;
  bottom: 76px;
  right: 0;
  width: 320px;
  max-width: calc(100vw - 32px);
  background: linear-gradient(180deg, rgba(25,25,25,.98) 0%, rgba(12,12,12,.98) 100%);
  border: 1px solid var(--border-warm);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.6), 0 0 0 1px rgba(255,138,74,.18), 0 0 40px rgba(255,106,26,.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: waPopupIn .35s var(--easing);
}
.wa-fab__popup[hidden] { display: none; }
@keyframes waPopupIn {
  from { opacity: 0; transform: translateY(12px) scale(.96); transform-origin: bottom right; }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.wa-fab__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 14px;
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.wa-fab__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(180deg, #FF8A4A 0%, #FF6A1A 100%);
  display: grid; place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: .95rem;
  box-shadow: 0 4px 12px rgba(255,106,26,.4), inset 0 1px 0 rgba(255,255,255,.3);
  flex-shrink: 0;
}
.wa-fab__head-text { flex: 1; min-width: 0; line-height: 1.2; }
.wa-fab__head-text strong { display: block; color: #fff; font-size: .9rem; font-weight: 700; }
.wa-fab__status { color: rgba(255,255,255,.85); font-size: .72rem; display: inline-flex; align-items: center; gap: 6px; }
.wa-fab__status i {
  width: 7px; height: 7px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 2px rgba(74,222,128,.3);
}
.wa-fab__close {
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  width: 28px; height: 28px;
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 0;
  cursor: pointer;
  transition: background .2s;
}
.wa-fab__close:hover { background: rgba(255,255,255,.22); }

.wa-fab__body {
  padding: 16px 14px;
  background:
    radial-gradient(80% 80% at 50% 0%, rgba(37,211,102,.05), transparent 60%),
    #0E0E0E;
}
.wa-fab__msg {
  background: linear-gradient(180deg, rgba(35,35,35,.95) 0%, rgba(20,20,20,.95) 100%);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  border-top-left-radius: 4px;
  padding: 12px 14px;
  max-width: 85%;
  position: relative;
}
.wa-fab__msg p { color: #E5E5E5; font-size: .86rem; line-height: 1.45; margin-bottom: 6px; }
.wa-fab__msg p:last-child { margin-bottom: 0; }

.wa-fab__form {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(180deg, #1A1A1A 0%, #0E0E0E 100%);
  border-top: 1px solid rgba(255,255,255,.06);
}
.wa-fab__input {
  flex: 1;
  background: rgba(35,35,35,.9);
  border: 1px solid var(--border-soft);
  border-radius: 99px;
  padding: 10px 14px;
  color: #fff;
  font-size: .88rem;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}
.wa-fab__input::placeholder { color: #888888; }
.wa-fab__input:focus { border-color: rgba(37,211,102,.5); background: rgba(45,45,45,.9); }
.wa-fab__send {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(180deg, #25D366 0%, #128C7E 100%);
  border: none;
  cursor: pointer;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(37,211,102,.4);
  transition: transform .2s, box-shadow .2s;
}
.wa-fab__send:hover { transform: scale(1.08); box-shadow: 0 6px 16px rgba(37,211,102,.55); }
.wa-fab__send:active { transform: scale(.95); }

@media (prefers-reduced-motion: reduce) {
  .wa-fab__btn::before { animation: none; }
}

/* =========================================================
   COOKIE BANNER (LGPD)
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 96px;
  right: 14px;
  z-index: 95;
  max-width: 380px;
  background: linear-gradient(180deg, rgba(30,30,30,.96) 0%, rgba(15,15,15,.96) 100%);
  border: 1px solid var(--border-warm);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,.6), 0 0 0 1px rgba(255,138,74,.2), 0 0 40px rgba(255,106,26,.15);
  color: #FFFFFF;
  font-size: 0.86rem;
  line-height: 1.45;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: cookieIn .5s var(--easing);
}
.cookie-banner[hidden] { display: none; }
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__content { display: flex; flex-direction: column; gap: 12px; }
.cookie-banner__text strong { display: block; font-size: 0.92rem; margin-bottom: 6px; color: #FFFFFF; font-weight: 700; }
.cookie-banner__text span { display: block; color: #B8B8B8; font-size: 0.8rem; }
.cookie-banner__text a { color: var(--blue); text-decoration: underline; text-decoration-color: rgba(255,138,74,.4); text-underline-offset: 2px; }
.cookie-banner__text a:hover { color: var(--blue-2); }
.cookie-banner__actions { display: flex; align-items: center; gap: 10px; justify-content: flex-end; }
.cookie-banner__link {
  color: #B8B8B8;
  font-size: 0.82rem;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.cookie-banner__link:hover { color: #FFFFFF; background: rgba(255,255,255,.05); }
.cookie-banner__accept {
  background: var(--grad-cta);
  color: #FFFFFF;
  border: none;
  padding: 9px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  cursor: pointer;
  letter-spacing: .2px;
  box-shadow: 0 4px 16px rgba(255,106,26,.35);
  transition: transform .2s var(--easing), box-shadow .2s var(--easing);
}
.cookie-banner__accept:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,106,26,.45); }

@media (max-width: 600px) {
  .cookie-banner { bottom: 84px; right: 10px; left: 10px; max-width: none; }
}
@media (min-width: 768px) {
  .cookie-banner { bottom: 24px; }
}

/* =========================================================
   SOCIAL PROOF TOAST (sem backdrop-filter)
   ========================================================= */
.social-toast {
  position: fixed;
  bottom: 96px;
  left: 14px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 270px;
  padding: 12px 14px;
  background: linear-gradient(180deg, rgba(30,30,30,.95) 0%, rgba(15,15,15,.95) 100%);
  border: 1px solid var(--border-warm);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,.6), 0 0 0 1px rgba(255,138,74,.2), 0 0 30px rgba(255,106,26,.15);
  color: #FFFFFF;
  font-size: 0.82rem;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s var(--easing), transform .4s var(--easing);
  pointer-events: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.social-toast.is-visible { opacity: 1; transform: translateY(0); }
/* Esconde o toast enquanto o banner de cookies tiver aberto (evita choque no mobile) */
body.cookie-visible .social-toast { display: none; }
.social-toast__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(34,197,94,.15);
  flex-shrink: 0;
}
.social-toast__body { min-width: 0; }
.social-toast__body strong { display: block; font-weight: 600; font-size: 0.82rem; margin-bottom: 2px; color: #FFFFFF; }
.social-toast__body span { color: #888888; font-size: 0.74rem; }

@media (min-width: 768px) {
  .social-toast { bottom: 24px; left: 24px; }
}

/* =========================================================
   ANIMAÇÕES DE ENTRADA (revelar no scroll)
   ========================================================= */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--easing), transform .7s var(--easing); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn--pulse { animation: none; }
  .before-after::before, .before-after::after,
  .offer::before, .offer::after,
  .cta-final::before, .cta-final::after,
  .pack.is-featured { animation: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =========================================================
   TABLET (≥ 768px)
   ========================================================= */
@media (min-width: 768px) {
  section { padding: 88px 0; }
  .container { padding: 0 28px; }

  .header__inner { justify-content: space-between; }
  .header__nav { display: flex; }
  .header__cta { display: block; }
  .header__trust { display: none; }

  .hero { padding: 40px 0 96px; }
  .hero__grid { grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }

  .trust-bar__grid { grid-template-columns: repeat(4, 1fr); gap: 16px; }

  .benefits__grid { grid-template-columns: 1fr 1fr; gap: 22px; }

  .where-use__grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }

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

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

  .guarantee__inner { flex-direction: row; text-align: left; gap: 36px; }

  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .mobile-cta { display: none; }
  body { padding-bottom: 0; }
}

/* =========================================================
   DESKTOP (≥ 1024px)
   ========================================================= */
@media (min-width: 1024px) {
  section { padding: 110px 0; }
  h1 { font-size: 3.4rem; }
  h2 { font-size: 2.4rem; }

  .benefits__grid { grid-template-columns: repeat(4, 1fr); }
  .where-use__grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}

/* =========================================================
   PÁGINAS LEGAIS (privacidade, termos, trocas)
   ========================================================= */
.policy {
  padding: 64px 0 96px;
  background:
    radial-gradient(50% 60% at 50% 0%, rgba(255,106,26,.12), transparent 60%),
    linear-gradient(180deg, #050505 0%, #0F0F0F 100%);
  min-height: calc(100vh - 200px);
}
.policy__inner { max-width: 820px; margin: 0 auto; }
.policy__head { text-align: center; margin-bottom: 48px; }
.policy__head .eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(255,106,26,.07);
  padding: 7px 16px;
  border-radius: 99px;
  margin-bottom: 14px;
  border: 1px solid rgba(255,106,26,.18);
}
.policy__head h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  background: linear-gradient(180deg, #FFFFFF 0%, #B8B8B8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 14px;
  text-shadow: 0 0 30px rgba(255,255,255,.1);
}
.policy__updated { color: #888888; font-size: 0.88rem; }
.policy__section {
  background: linear-gradient(180deg, rgba(28,28,28,.6) 0%, rgba(14,14,14,.6) 100%);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  padding: 28px 28px;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.policy__section h2 { font-size: 1.1rem; color: #FFFFFF; margin-bottom: 12px; font-weight: 700; }
.policy__section p { color: #C5C5C5; font-size: 0.95rem; line-height: 1.7; margin-bottom: 12px; }
.policy__section p:last-child { margin-bottom: 0; }
.policy__section ul, .policy__section ol { padding-left: 22px; margin-bottom: 12px; }
.policy__section ul { list-style: disc; }
.policy__section ol { list-style: decimal; }
.policy__section li { color: #C5C5C5; font-size: 0.95rem; line-height: 1.7; margin-bottom: 6px; }
.policy__section strong { color: #FFFFFF; font-weight: 600; }
.policy__section a { color: var(--blue); text-decoration: underline; text-decoration-color: rgba(255,138,74,.4); }
.policy__section a:hover { color: var(--blue-2); }

@media (min-width: 768px) {
  .policy { padding: 88px 0 120px; }
  .policy__section { padding: 32px 36px; }
  .policy__section h2 { font-size: 1.25rem; }
}

/* =========================================================
   UTILS
   ========================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
