/* =============================================================
   FLAME HOME — v2 · MOBILE FIRST
   Base = celular (até ~760px). Media queries só ADICIONAM
   camadas para tablet (min-width: 760px) e desktop (1080px).
   ============================================================= */

/* ---------- tokens ---------- */
:root {
  --ink: #16232F;
  --ink-soft: #435264;
  --ink-faint: #8695A3;
  --paper: #FAF9F5;
  --paper-alt: #F1EDE5;
  --line: #DCD5C8;
  --flame: #E7A25C;
  --flame-soft: #F3D9B8;

  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --gutter: 20px;
  --section-pad: 72px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --ctabar-h: 76px; /* altura reservada para o CTA flutuante mobile */
}

* { box-sizing: border-box; }
img, video { object-position: center center; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  /* espaço para o CTA flutuante nunca cobrir o rodapé */
  padding-bottom: calc(var(--ctabar-h) + var(--safe-bottom));
}

img, video { max-width: 100%; display: block; }
a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--flame); }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.01em;
  text-wrap: pretty;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
  margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 20px; height: 1px; background: var(--flame); }

.section-head { max-width: 640px; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(28px, 7.5vw, 46px); }
.section-head p { margin-top: 14px; color: var(--ink-soft); font-size: 16px; max-width: 52ch; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-alt { background: var(--paper-alt); }

/* ---------- botões (alvo mínimo 48px) ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 15px;
  letter-spacing: 0.02em;
  font-weight: 600;
  border: 1px solid var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: #0E1822; color: var(--paper); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.btn-light { background: transparent; border-color: rgba(250,249,245,0.6); color: #FAF9F5; }
.btn-light:hover { background: rgba(250,249,245,0.14); color: #FAF9F5; }
.btn-block { width: 100%; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   BARRA DE ANÚNCIOS
   ============================================================= */
.announce-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  height: 34px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.announce-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.announce-item {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.announce-item b { color: var(--flame-soft); font-weight: 400; padding: 0 14px; }
.announce-item strong { color: var(--flame-soft); }
@media (prefers-reduced-motion: reduce) {
  .announce-track { animation: none; }
}

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: fixed;
  top: 34px; left: 0; right: 0;
  z-index: 60;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 60px;
}
.site-header.is-scrolled {
  background: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
/* Com o menu aberto, NÃO usar backdrop-filter: ele transforma o header
   em containing block e prende o .main-nav (position: fixed) dentro dos
   60px do header. Fundo sólido resolve o mesmo efeito visual. */
.site-header.menu-open {
  background: var(--paper);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: inline-flex; align-items: center; }
.brand img { height: 34px; width: auto; }

.header-actions { display: flex; align-items: center; gap: 8px; }
.header-link {
  display: none; /* mobile: vive dentro do menu */
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  background: none;
  border: 0;
  padding: 10px 12px;
}
.header-link:hover { color: var(--ink); }

.menu-toggle {
  width: 48px; height: 48px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: 0;
  -webkit-tap-highlight-color: transparent;
}
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s; }

/* Header sobre o hero: fonte branca. Volta ao escuro quando a
   página rola (fundo claro) ou o menu mobile abre. */
.site-header:not(.is-scrolled):not(.menu-open) .header-link { color: rgba(250,249,245,0.85); }
.site-header:not(.is-scrolled):not(.menu-open) .header-link:hover { color: #FAF9F5; }
.site-header:not(.is-scrolled):not(.menu-open) .menu-toggle span { background: #FAF9F5; }
.brand-logo { height: 40px; width: auto; display: block; }
.site-header:not(.is-scrolled):not(.menu-open) .brand-logo { height: 64px; }
.brand-logo-dark { display: none; }
.site-header.is-scrolled .brand-logo-light, .site-header.menu-open .brand-logo-light { display: none; }
.site-header.is-scrolled .brand-logo-dark, .site-header.menu-open .brand-logo-dark { display: block; }
@media (min-width: 760px) {
  .site-header:not(.is-scrolled):not(.menu-open) .main-nav a { color: rgba(250,249,245,0.85); }
  .site-header:not(.is-scrolled):not(.menu-open) .main-nav a:hover { color: #FAF9F5; }
}
.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* menu mobile: folha em tela cheia */
.main-nav {
  position: fixed;
  inset: 94px 0 0 0;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 28px var(--gutter) 40px;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  z-index: 55;
  overflow-y: auto;
}
.main-nav.nav-open { opacity: 1; transform: none; pointer-events: auto; }
.main-nav a {
  font-family: var(--font-display);
  font-size: 26px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.main-nav .nav-utility {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.main-nav .nav-utility button,
.main-nav .nav-utility a {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: none;
  padding: 14px 18px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--ink);
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #FAF9F5;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img, .hero-media video { width: 100%; height: 100%; object-fit: cover; }
.hero-media .hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.hero-media .hero-slide.is-active { opacity: 1; }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,22,30,0.30) 0%, rgba(14,22,30,0.10) 40%, rgba(14,22,30,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) 76px;
}
.hero .eyebrow { color: rgba(250,249,245,0.75); }
.hero .eyebrow::before { background: var(--flame); }
.hero-title { font-size: clamp(27px, 6.5vw, 52px); color: #FAF9F5; max-width: 18ch; }
.hero-title em { font-style: italic; color: var(--flame-soft); }
.hero-sub { margin: 18px 0 0; font-size: 16px; color: rgba(250,249,245,0.85); max-width: 44ch; }
.hero-cta { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.hero-cta .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.hero-scroll { display: none; }

/* ---------- marquee ---------- */
.marquee { overflow: hidden; border-bottom: 1px solid var(--line); background: var(--paper); padding: 14px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink); white-space: nowrap; padding-right: 18px; }
.marquee-track b { color: var(--flame); font-weight: 400; padding: 0 8px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =============================================================
   BENEFÍCIOS
   ============================================================= */
.benefits { padding: var(--section-pad) 0; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.benefit-card { padding: 16px 2px; border-bottom: 1px solid var(--line); }
.benefit-icon { color: var(--flame); flex: 0 0 auto; }
.benefit-card h3 { display: flex; align-items: center; gap: 8px; font-size: 17px; margin: 0 0 4px; }
.benefit-card p { margin: 0; color: var(--ink-soft); font-size: 13.5px; }

/* =============================================================
   COMO FUNCIONA
   ============================================================= */
.steps { padding: var(--section-pad) 0; }
.steps-layout { display: flex; flex-direction: column; gap: 24px; }
.steps-media { border-radius: var(--radius-lg); overflow: hidden; }
.steps-media img, .steps-media video { width: 100%; height: auto; object-fit: cover; aspect-ratio: 16/9; display: block; }
/* Vídeo decorativo: nenhum toque pode abrir o player nativo */
.steps-media video { pointer-events: none; }
.steps-list { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.step-item { display: flex; gap: 10px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.step-item:last-child { border-bottom: 0; }
.step-index { font-family: var(--font-display); font-style: italic; color: var(--flame); font-size: 15px; min-width: 22px; padding-top: 2px; }
.step-body h4 { font-size: 15.5px; margin-bottom: 3px; }
.step-body p { margin: 0; color: var(--ink-soft); font-size: 13px; }

/* =============================================================
   PAVIO / REUTILIZAÇÃO
   ============================================================= */
.wick { padding: var(--section-pad) 0; }
.wick-layout { display: flex; flex-direction: column; gap: 28px; }
.wick-media { border-radius: var(--radius-lg); overflow: hidden; }
.wick-media img { width: 100%; object-fit: cover; aspect-ratio: 1/1; }
.wick h2 { font-size: clamp(28px, 7.5vw, 42px); }
.wick p, .wick li { color: var(--ink-soft); font-size: 15px; }

/* =============================================================
   GALERIA
   ============================================================= */
.gallery { padding: var(--section-pad) 0; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gallery-item { border-radius: var(--radius-md); overflow: hidden; cursor: pointer; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; transition: transform 0.6s var(--ease); }
.gallery-item:hover img { transform: scale(1.04); }

/* ---------- carrossel da galeria ---------- */
.gallery-carousel { overflow: hidden; border-radius: var(--radius-md); }
.carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.7s var(--ease);
  will-change: transform;
}
.carousel-item {
  flex: 0 0 calc((100% - 12px) / 2);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.carousel-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; display: block; transition: transform 0.6s var(--ease); }
.carousel-item:hover img { transform: scale(1.04); }
.carousel-dots { display: flex; justify-content: center; gap: 6px; margin-top: 16px; }
.carousel-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  border: 0; padding: 0;
  background: var(--line);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.carousel-dots button.active { background: var(--ink); transform: scale(1.25); }

/* =============================================================
   AMBIENTES
   ============================================================= */
.ambientes { position: relative; min-height: 78svh; display: flex; align-items: flex-end; overflow: hidden; }
.ambientes-media { position: absolute; inset: 0; }
.ambientes-media img { width: 100%; height: 100%; object-fit: cover; }
.ambientes-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,22,30,0) 30%, rgba(14,22,30,0.75) 100%); }
.ambientes-content { position: relative; z-index: 2; padding: 0; color: #FAF9F5; max-width: 620px; }
.ambientes-layout { position: relative; z-index: 2; width: 100%; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 32px; padding: 56px var(--gutter); }
.ambientes-offer { background: rgba(14,22,30,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); color: #FAF9F5; width: 100%; max-width: 380px; }
.ambientes-offer .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.ambientes-content .eyebrow { color: rgba(250,249,245,0.7); }
.ambientes-content h2 { color: #FAF9F5; font-size: clamp(30px, 8vw, 48px); }
.ambientes-content p { color: rgba(250,249,245,0.85); font-size: 16px; margin-top: 14px; }

/* =============================================================
   ESCOLHA DA COR / COMPRA
   ============================================================= */
.chooser { padding: var(--section-pad) 0; }
.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  background: var(--paper-alt);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px;
  margin-bottom: 26px;
}
.tab-btn {
  min-height: 48px;
  border-radius: 100px;
  border: 0;
  background: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
  padding: 8px 10px;
}
.tab-btn .tab-price { display: block; font-weight: 500; font-size: 12px; color: var(--ink-faint); }
.tab-btn { position: relative; }
.tab-badge {
  position: absolute;
  top: -9px;
  right: 10px;
  background: var(--flame, #C46E37);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  animation: badge-bounce 0.7s ease-in-out infinite;
  transform-origin: center bottom;
}
@keyframes badge-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@media (prefers-reduced-motion: reduce) {
  .tab-badge { animation: none; }
}
.tab-btn.active { background: var(--ink); color: var(--paper); }
.tab-btn.active .tab-price { color: rgba(250,249,245,0.7); }

.chooser-layout { display: flex; flex-direction: column; gap: 26px; }

.product-stage { position: static; background: var(--paper); padding-bottom: 8px; }
.product-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--paper-alt);
  aspect-ratio: 1/1;
  display: flex;
}
.product-frame img { width: 100%; height: 100%; object-fit: cover; }
.product-frame { position: relative; }
.stage-disclaimer {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  background: rgba(14, 22, 30, 0.75);
  color: #FAF9F5;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 12px;
  line-height: 1.35;
  text-align: center;
  pointer-events: none;
  backdrop-filter: blur(4px);
}
.stage-photo {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s var(--ease);
}
.stage-photo.active { opacity: 1; }
.product-frame.dual .half { width: 50%; overflow: hidden; }
.product-frame.dual .half img { height: 100%; }
.product-meta { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 4px 0; }
.current-color { font-family: var(--font-display); font-style: italic; font-size: 18px; }
.current-price { font-size: 20px; font-weight: 700; }
.price-compare { font-size: 14px; font-weight: 400; color: var(--ink-faint); margin-right: 4px; }
.current-installments { font-size: 14px; font-weight: 600; color: var(--ink); text-align: right; }

.pack-group { margin-bottom: 18px; }
.pack-group-label { display: block; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; margin-bottom: 10px; }

/* swatches: alvos de toque generosos — grade de 2 colunas no mobile */
.swatches { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.swatch { width: 100%; justify-content: flex-start; }
@media (min-width: 760px) {
  .swatches { display: flex; flex-wrap: wrap; }
  .swatch { width: auto; }
}
.swatches.locked .swatch { opacity: 0.4; cursor: not-allowed; }
.pack-hint { width: 100%; font-size: 13px; color: #C2410C; font-weight: 600; }
.swatch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px 8px 9px;
  border-radius: 100px;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.swatch-dot { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(22,35,47,0.14); flex: none; }
.swatch-name { font-size: 13.5px; font-weight: 600; color: var(--ink-soft); }
.swatch.selected { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.swatch.selected .swatch-name { color: var(--ink); }

/* lista de variações: uma por linha, com botão de compra direto */
.swatches.variant-list { flex-direction: column; gap: 10px; }
.variant-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 10px 10px 10px 16px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.variant-row .variant-name { flex: 1; font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.variant-row.selected { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.variant-row.selected .variant-name { color: var(--ink); }
.variant-buy {
  flex: none;
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  min-height: 40px;
  background: var(--ink, #16232F);
  color: #FAF9F5;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.variant-buy:hover { opacity: 0.88; }

.chooser-copy > p { color: var(--ink-soft); font-size: 15px; }
.chooser-copy ul { padding-left: 18px; color: var(--ink-soft); font-size: 15px; margin: 14px 0 0; }
.chooser-copy li { margin-bottom: 8px; }
.stock-note { margin-top: 16px; font-size: 14px; font-weight: 700; color: #C2410C; display: flex; align-items: center; gap: 8px; }
.stock-note::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: #C2410C; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* =============================================================
   UPSELLS — Complete sua experiência
   ============================================================= */
.upsells { padding: var(--section-pad) 0; }
.upsell-carousel { --per-view: 2; --track-gap: 12px; overflow: hidden; }
.upsell-track { display: flex; gap: var(--track-gap); transition: transform 0.6s var(--ease); }
.upsell-track .upsell-card {
  flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--track-gap)) / var(--per-view));
  grid-template-columns: 1fr;
  align-items: start;
}
.upsell-track .upsell-media { aspect-ratio: 16/10; }
.upsell-track .upsell-body h3 { font-size: 16px; }
.upsell-track .upsell-body p {
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.upsell-track .upsell-body p.expanded { -webkit-line-clamp: unset; }
.upsell-more {
  background: none;
  border: 0;
  padding: 0;
  margin: 2px 0 10px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--flame, #C46E37);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.upsell-track .upsell-add { min-height: 38px; padding: 6px 16px; }
.upsell-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  background: var(--flame, #C46E37);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 100px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  animation: badge-bounce 0.7s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .upsell-badge { animation: none; }
}
.upsell-card {
  position: relative;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  background: var(--paper);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.upsell-card.added { border-color: var(--ink); box-shadow: 0 0 0 1px var(--ink); }
.upsell-media { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 1/1; background: var(--paper-alt); }
.upsell-media img { width: 100%; height: 100%; object-fit: cover; }
/* Capim limão: desce o enquadramento para não cortar a tampa */
.upsell-card[data-upsell-id="essencia-capim-limao"] .upsell-media img { object-position: center 25%; }
.upsell-body h3 { font-size: 18px; }
.upsell-body p { margin: 4px 0 10px; font-size: 13.5px; color: var(--ink-soft); }
.upsell-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.upsell-price { font-weight: 700; font-size: 16px; }
.upsell-compare { font-weight: 400; font-size: 13px; color: var(--ink-faint); margin-right: 4px; }
.upsell-add {
  min-height: 44px;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--ink);
  background: none;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
  -webkit-tap-highlight-color: transparent;
}
.upsell-card.added .upsell-add { background: var(--ink); color: var(--paper); }

/* resumo do pedido / carrinho */
.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  color: var(--ink);
  -webkit-tap-highlight-color: transparent;
}
.site-header:not(.is-scrolled):not(.menu-open) .cart-btn { color: #FAF9F5; }
.cart-count {
  position: absolute;
  top: 4px; right: 2px;
  min-width: 16px; height: 16px;
  border-radius: 8px;
  background: #C2410C;
  color: #FAF9F5;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
.cart-drawer {
  position: fixed;
  inset: 0;
  background: rgba(22, 35, 47, 0.4);
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.cart-drawer.open { opacity: 1; pointer-events: auto; }
.cart-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw);
  background: var(--paper);
  padding: 26px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  box-shadow: -12px 0 40px rgba(22, 35, 47, 0.15);
}
.cart-drawer.open .cart-panel { transform: none; }
.cart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.cart-head h3 { font-size: 22px; }
.cart-close {
  width: 40px; height: 40px;
  border: 0;
  background: none;
  font-size: 28px;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
}
.cart-close:hover { color: var(--ink); }
.order-summary {
  margin-top: 28px;
  border: 1px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  background: var(--paper);
}
.order-summary h3 { font-size: 20px; margin-bottom: 12px; }
.order-lines { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.order-line { display: flex; justify-content: space-between; align-items: center; gap: 10px; font-size: 14px; color: var(--ink-soft); }
.order-line span { flex: 1; }
.order-line strong { color: var(--ink); font-weight: 600; white-space: nowrap; }
.qty-ctrl { display: flex; align-items: center; gap: 6px; flex: 0 0 auto; }
.qty-ctrl .qty-val { flex: 0 0 auto; min-width: 18px; text-align: center; font-weight: 700; color: var(--ink); font-size: 13.5px; }
.qty-btn {
  width: 26px; height: 26px;
  border: 1px solid var(--line); border-radius: 50%;
  background: none; color: var(--ink);
  font-size: 15px; line-height: 1; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.qty-btn:hover { border-color: var(--ink); }
.order-remove {
  width: 26px; height: 26px;
  flex: 0 0 26px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: none;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.order-remove:hover { color: #C2410C; border-color: #C2410C; }
.cart-empty { font-size: 14px; color: var(--ink-faint); padding: 18px 0; }
.order-total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--line); padding-top: 14px; margin-bottom: 16px; }
.order-total[hidden] { display: none; }
.order-discount { margin-bottom: 0; }
.order-discount .value { font-size: 16px; font-weight: 700; color: #3F7A52; }
.cart-coupon { display: flex; gap: 8px; margin: 0 0 4px; }
.cart-coupon input { flex: 1; min-width: 0; min-height: 44px; padding: 0 14px; border: 1px solid var(--line); border-radius: 10px; font: inherit; font-size: 14px; background: var(--paper); color: var(--ink); }
.cart-coupon input:focus { outline: none; border-color: var(--ink); }
.cart-coupon input:disabled { background: var(--paper-alt); color: var(--ink-faint); }
.cart-coupon button { min-height: 44px; padding: 0 18px; border: 1px solid var(--ink); border-radius: 10px; background: none; font: inherit; font-size: 13.5px; font-weight: 700; color: var(--ink); cursor: pointer; }
.cart-coupon button:disabled { border-color: #3F7A52; color: #3F7A52; cursor: default; }
.coupon-msg { margin: 4px 2px 12px; font-size: 12.5px; min-height: 1em; }
.coupon-msg.ok { color: #3F7A52; font-weight: 600; }
.coupon-msg.err { color: #C2410C; font-weight: 600; }
.order-total .label { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; }
.order-total .value { font-size: 26px; font-weight: 700; }
.order-note { font-size: 12.5px; color: var(--ink-faint); margin-top: 10px; text-align: center; }

/* oferta de upsell no carrinho */
.cart-upsell-offer { border: 1px solid var(--line); border-radius: 12px; padding: 14px; margin-bottom: 14px; background: var(--paper-alt); }
.cuo-head { margin: 0 0 10px; font-size: 13.5px; font-weight: 700; color: var(--ink); }
.cuo-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid var(--line); }
.cuo-row img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; flex: 0 0 auto; }
.cuo-info { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.cuo-name { font-size: 13px; font-weight: 600; color: var(--ink); }
.cuo-badge { display: inline-block; background: var(--flame, #C46E37); color: #fff; font-size: 9px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 2px 7px; border-radius: 100px; line-height: 1.2; vertical-align: 1px; margin-left: 4px; white-space: nowrap; }
.cuo-price { font-size: 12.5px; color: var(--ink-soft); }
.cuo-price s { color: var(--ink-faint); margin-right: 4px; }
.cuo-add { flex: 0 0 auto; min-height: 34px; padding: 4px 14px; border-radius: 100px; border: 1px solid var(--ink); background: var(--ink); color: var(--paper); font: inherit; font-size: 12.5px; font-weight: 600; cursor: pointer; }
.cuo-add:hover { opacity: 0.85; }
.cuo-skip { display: block; width: 100%; margin-top: 10px; background: none; border: 0; padding: 6px 0 0; font: inherit; font-size: 12.5px; font-weight: 600; color: var(--ink-faint); text-decoration: underline; text-underline-offset: 2px; cursor: pointer; }
.cuo-skip:hover { color: var(--ink); }

/* =============================================================
   COMPARAÇÃO
   ============================================================= */
.comparison { padding: var(--section-pad) 0; }
.comparison-table { border-radius: var(--radius-lg); background: var(--paper-alt); border: 1px solid var(--line); margin-top: 14px; }
.comparison-row { display: grid; grid-template-columns: 1.25fr 1fr 1fr; }
.comparison-row:not(.head):not(:last-child) .comparison-cell.label,
.comparison-row:not(.head):not(:last-child) .comparison-cell.other { border-bottom: 1px solid var(--line); }
.comparison-cell { padding: 18px 12px; font-size: 13.5px; display: flex; align-items: center; justify-content: center; text-align: center; gap: 8px; }
.comparison-cell.brand { background: var(--ink); color: var(--paper); font-weight: 700; }
.comparison-row.head { display: grid; }
.comparison-row.head .comparison-cell { font-weight: 700; font-size: 12.5px; letter-spacing: 0.04em; padding: 14px 10px; }
.comparison-row.head .comparison-cell.brand { border-radius: 14px 14px 0 0; margin-top: -14px; font-family: var(--font-display, inherit); font-size: 15px; letter-spacing: 0; }
.comparison-logo { width: 92px; max-width: 80%; height: auto; display: block; }
.comparison-row:last-child .comparison-cell.brand { border-radius: 0 0 14px 14px; margin-bottom: -1px; }
.comparison-cell.label { font-weight: 600; color: var(--ink); }
.comparison-cell.yes { padding-bottom: 2px; }
.comparison-cell.no { color: var(--ink-soft); }
.comparison-cell.brand .check { color: var(--paper); font-weight: 700; font-size: 17px; }
.check { color: #3F7A52; font-weight: 600; }
.cross { color: var(--ink); font-weight: 600; }

/* =============================================================
   DEPOIMENTOS
   ============================================================= */
.testimonials { padding: var(--section-pad) 0; }
.testimonials-carousel { --per-view: 1; --track-gap: 12px; overflow: hidden; }
.testimonials-track { display: flex; gap: var(--track-gap); transition: transform 0.6s var(--ease); }
.testimonials-track .testimonial-card {
  flex: 0 0 calc((100% - (var(--per-view) - 1) * var(--track-gap)) / var(--per-view));
  display: flex; flex-direction: column;
}
.testimonials-track .testimonial-card p { flex: 1; }
.testimonial-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px 22px; background: var(--paper); }
.stars { color: var(--flame); letter-spacing: 3px; margin-bottom: 12px; font-size: 14px; }
.testimonial-card p { margin: 0 0 18px; font-size: 15px; color: var(--ink-soft); }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--paper-alt); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--ink-soft); }
.testimonial-name { font-weight: 600; font-size: 14px; display: flex; align-items: center; gap: 5px; }
.verified-badge { width: 15px; height: 15px; flex: 0 0 auto; }
.testimonial-meta { font-size: 12px; color: var(--ink-faint); }

/* =============================================================
   FAQ
   ============================================================= */
.faq { padding: var(--section-pad) 0; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  background: none;
  border: 0;
  text-align: left;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--ink);
  min-height: 56px;
}
.faq-icon { position: relative; width: 14px; height: 14px; flex: none; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--ink); transition: transform 0.3s var(--ease); }
.faq-icon::before { top: 6px; left: 0; width: 14px; height: 2px; }
.faq-icon::after { top: 0; left: 6px; width: 2px; height: 14px; }
.faq-item.open .faq-icon::after { transform: scaleY(0); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer p { margin: 0 0 18px; color: var(--ink-soft); font-size: 15px; max-width: 60ch; }

/* =============================================================
   CTA FINAL
   ============================================================= */
.final-cta { padding: var(--section-pad) 0; text-align: center; background: var(--ink); color: var(--paper); }
.final-cta h2 { color: var(--paper); font-size: clamp(30px, 8vw, 54px); max-width: 18ch; margin: 0 auto; }
.final-cta h2 em { font-style: italic; color: var(--flame-soft); }
.final-cta p { color: rgba(250,249,245,0.75); max-width: 50ch; margin: 16px auto 28px; font-size: 15.5px; }
.final-cta .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { border-top: 1px solid var(--line); padding: 48px 0 32px; background: var(--paper); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }
.footer-brand img { height: 72px; width: auto; margin-bottom: 14px; }
.footer-brand p { color: var(--ink-soft); font-size: 14px; max-width: 34ch; margin: 0; }
.footer-col h5 { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin: 0 0 12px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.footer-col a, .footer-col button {
  font-size: 14.5px; color: var(--ink-soft);
  background: none; border: 0; padding: 6px 0; text-align: left;
  display: inline-block;
}
.footer-col a:hover, .footer-col button:hover { color: var(--ink); }
.footer-bottom { margin-top: 36px; padding-top: 20px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 6px; font-size: 12.5px; color: var(--ink-faint); }

/* =============================================================
   CTA FLUTUANTE
   ============================================================= */
.floating-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 70;
  background: rgba(250, 249, 245, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  padding: 10px var(--gutter) calc(10px + var(--safe-bottom));
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateY(0);
  transition: transform 0.35s var(--ease);
}
.floating-cta.hidden { transform: translateY(110%); }
.floating-cta .fc-info { display: flex; flex-direction: column; min-width: 0; }
.floating-cta .fc-label { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; white-space: normal; line-height: 1.35; }
.floating-cta .fc-price { font-size: 18px; font-weight: 700; line-height: 1.2; }
.floating-cta .btn { flex: 1; min-height: 54px; }

/* =============================================================
   MODAIS (Rastrear pedido / Suporte)
   ============================================================= */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(14, 22, 30, 0.55);
  z-index: 90;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--paper);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  width: 100%;
  max-width: 560px;
  max-height: 86svh;
  overflow-y: auto;
  padding: 26px var(--gutter) calc(30px + var(--safe-bottom));
  transform: translateY(24px);
  transition: transform 0.35s var(--ease);
}
.modal-backdrop.open .modal { transform: none; }
.modal-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 14px; margin-bottom: 6px; }
.modal-head h3 { font-size: 24px; }
.modal-close {
  width: 44px; height: 44px; flex: none;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  font-size: 20px;
  line-height: 1;
  color: var(--ink);
}
.modal p.modal-sub { color: var(--ink-soft); font-size: 14.5px; margin: 0 0 20px; }

.field-label { display: block; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 600; margin-bottom: 8px; }
.field-row { display: flex; gap: 8px; }
.field-row input {
  flex: 1;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 0 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
}
.field-row input:focus { outline: 2px solid var(--ink); outline-offset: -1px; }
.tracking-result { margin-top: 14px; font-size: 14px; color: var(--ink-soft); background: var(--paper-alt); border-radius: var(--radius-md); padding: 14px 16px; display: none; }
.tracking-result.show { display: block; }

.support-list { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.support-item {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  min-height: 60px;
}
.support-item:hover { border-color: var(--ink); color: var(--ink); }
.support-item .s-label { font-weight: 600; font-size: 15px; }
.support-item .s-detail { font-size: 13px; color: var(--ink-faint); display: block; }
.support-item .s-arrow { color: var(--ink-faint); font-size: 18px; }
.support-hours { margin-top: 20px; font-size: 13.5px; color: var(--ink-soft); background: var(--paper-alt); border-radius: var(--radius-md); padding: 14px 16px; }

/* =============================================================
   LIGHTBOX
   ============================================================= */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(14,22,30,0.92);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox img { max-width: 100%; max-height: 86svh; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute; top: 18px; right: 18px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(250,249,245,0.4);
  background: none;
  color: #FAF9F5;
  font-size: 22px;
}

/* =============================================================
   TABLET  ≥ 760px
   ============================================================= */
@media (min-width: 760px) {
  :root { --gutter: 40px; --section-pad: 104px; }

  .header-link { display: inline-block; }
  .brand img { height: 38px; }
  .site-header .container { height: 72px; }

  .main-nav {
    position: static;
    inset: auto;
    background: none;
    flex-direction: row;
    align-items: center;
    gap: 26px;
    padding: 0;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    overflow: visible;
  }
  .main-nav a { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--ink-soft); border-bottom: 0; padding: 8px 0; }
  .main-nav a:hover { color: var(--ink); }
  .main-nav .nav-utility { display: none; }
  .menu-toggle { display: none; }

  .hero { align-items: center; }
  .hero-content { padding-bottom: 0; }
  .hero-sub { font-size: 18px; }
  .hero-cta { flex-direction: row; }
  .hero-scroll {
    display: flex; position: absolute; bottom: 34px; left: var(--gutter);
    z-index: 2; align-items: center; gap: 12px;
    font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(250,249,245,0.7);
  }
  .hero-scroll .line { width: 44px; height: 1px; background: rgba(250,249,245,0.5); }

  .benefits-grid { grid-template-columns: 1fr 1fr; column-gap: 32px; }
  .benefit-card { padding: 20px 2px; }
  .benefit-card h3 { font-size: 18px; }
  .benefit-card p { font-size: 14px; }

  .steps-layout { gap: 32px; }
  .steps-media video, .steps-media img { aspect-ratio: 21/9; }
  .steps-list { grid-template-columns: repeat(4, 1fr); column-gap: 28px; max-width: 1040px; margin: 0 auto; }
  .step-item { display: block; padding: 18px 0; border-bottom: 0; }
  .step-index { font-size: 17px; display: block; margin-bottom: 6px; }
  .step-body h4 { font-size: 17px; margin-bottom: 4px; }
  .step-body p { font-size: 13.5px; }

  .wick-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

  .gallery-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }

  .carousel-track { gap: 14px; }
  .carousel-item { flex: 0 0 calc((100% - 42px) / 4); }

  .chooser-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
  .product-stage { position: sticky; top: 96px; z-index: 1; }
  .tabs { max-width: 520px; }
  .tab-btn { font-size: 14px; }

  .upsell-carousel { --per-view: 4; --track-gap: 16px; }
  .upsell-card { grid-template-columns: 1fr; align-items: start; padding: 16px; }
  .order-summary { max-width: 560px; margin-left: auto; margin-right: auto; padding: 30px; }

  .comparison-table { max-width: 860px; margin: 14px auto 0; }
  .comparison-cell { padding: 20px 24px; font-size: 14.5px; }
  .comparison-row.head .comparison-cell.brand { font-size: 17px; }

  .testimonials-carousel { --per-view: 3; --track-gap: 16px; }

  .faq-list { max-width: 760px; }
  .faq-question { font-size: 20px; padding: 22px 0; }

  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }

  /* CTA flutuante vira pílula discreta no canto */
  body { padding-bottom: 0; }
  .floating-cta {
    left: auto; right: 28px; bottom: 28px;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 8px 8px 8px 22px;
    box-shadow: 0 12px 40px rgba(14,22,30,0.16);
    max-width: 380px;
  }
  .floating-cta .btn { flex: none; min-height: 48px; padding: 10px 26px; }

  .modal-backdrop { align-items: center; padding: 24px; }
  .modal { border-radius: var(--radius-lg); padding: 34px 36px 38px; }
}

/* =============================================================
   DESKTOP  ≥ 1080px
   ============================================================= */
@media (min-width: 1080px) {
  :root { --section-pad: 140px; }
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-sub { font-size: 19px; }
  .section-head p { font-size: 17px; }
}

/* =============================================================
   OFERTA / BANNER ESCURO (kit 9 cores em destaque)
   ============================================================= */
.offer { position: relative; border-radius: var(--radius-lg); overflow: hidden; background: var(--ink); color: var(--paper); margin: 0 var(--gutter); max-width: 1280px; }
.offer-media { position: absolute; inset: 0; opacity: 0.28; }
.offer-media img { width: 100%; height: 100%; object-fit: cover; }
.offer-inner { position: relative; z-index: 2; padding: 44px 26px; display: flex; flex-direction: column; gap: 30px; }
.offer h2 { color: var(--paper); font-size: clamp(26px, 6.5vw, 40px); margin: 6px 0 14px; }
.offer p { color: rgba(250,249,245,0.8); font-size: 15px; margin: 0; max-width: 48ch; }
.offer-list { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.offer-list li { display: flex; gap: 10px; font-size: 14.5px; color: rgba(250,249,245,0.85); }
.offer-list li::before { content: "—"; color: var(--flame); }
.offer-card { background: rgba(250,249,245,0.06); border: 1px solid rgba(250,249,245,0.18); border-radius: var(--radius-lg); padding: 26px 24px; display: flex; flex-direction: column; gap: 12px; }
.offer-price-row { display: flex; align-items: baseline; gap: 14px; }
.offer-price { font-size: 34px; font-weight: 700; }
.offer-timer { font-size: 12.5px; color: rgba(250,249,245,0.55); }
.offer .btn-primary { background: var(--paper); color: var(--ink); border-color: var(--paper); }

@media (min-width: 760px) {
  .offer { margin: 0 auto; width: calc(100% - var(--gutter) * 2); }
  .offer-inner { grid-template-columns: 1.2fr 1fr; display: grid; align-items: center; gap: 56px; padding: 64px 60px; }
}
