/* ============================================================
   FONTES LOCAIS (Sora + Inter) — funciona offline, sem CDN          
   ============================================================ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("./fonts/inter-latin.woff2") format("woff2");
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./fonts/inter-latin.woff2") format("woff2");
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/inter-latin.woff2") format("woff2");
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/inter-latin.woff2") format("woff2");
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./fonts/sora-latin.woff2") format("woff2");
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./fonts/sora-latin.woff2") format("woff2");
}
@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("./fonts/sora-latin.woff2") format("woff2");
}

/* ============================================================
   VECTOR BLACK — Landing Page
   Visual system: deep black · premium red · metallic silver · gold accents
   Mobile-first · CSS-only motion · reduced-motion aware
   ============================================================ */

:root {
  --bg: #07070a;
  --bg-2: #0d0d13;
  --bg-3: #12121a;
  --card: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.09);
  --line-gold: rgba(222, 178, 90, 0.35);
  --text: #f6f7f9;
  --muted: #a9adb8;
  --red: #e11d2e;
  --red-deep: #7a0d16;
  --red-glow: rgba(225, 29, 46, 0.4);
  --silver: #cfd3da;
  --gold-1: #f8d57e;
  --gold-2: #d9a83e;
  --gold-3: #9c7418;
  --gold-ink: #221503;
  --wa: #25d366;
  --radius: 18px;
  --radius-lg: 26px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  --max: 1120px;
  --font-h: "Sora", "Inter", system-ui, sans-serif;
  --font-b: "Inter", system-ui, -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul, ol { list-style: none; }

section { scroll-margin-top: 84px; }

::selection { background: var(--red); color: #fff; }

.container {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}
.container-narrow { max-width: 820px; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--gold-2);
  color: var(--gold-ink);
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 700;
  transition: top 0.25s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 2px solid var(--gold-2);
  outline-offset: 3px;
  border-radius: 6px;
}

/* ============ Typography helpers ============ */
.eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 14px;
}

h1, h2, h3 { font-family: var(--font-h); line-height: 1.12; letter-spacing: -0.01em; }

h1 {
  font-size: clamp(2.1rem, 7.4vw, 4rem);
  font-weight: 800;
  margin-bottom: 18px;
}

h2 {
  font-size: clamp(1.7rem, 5.4vw, 2.7rem);
  font-weight: 800;
  margin-bottom: 14px;
}

.grad-red {
  background: linear-gradient(100deg, #ff5f4e 0%, var(--red) 45%, #ff8a6a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section { padding: clamp(64px, 11vw, 110px) 0; position: relative; }

.section-alt {
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(225, 29, 46, 0.06), transparent 55%),
    linear-gradient(180deg, var(--bg-2), var(--bg));
  border-block: 1px solid rgba(255, 255, 255, 0.045);
}

.section-head { max-width: 640px; margin: 0 auto clamp(36px, 6vw, 56px); text-align: center; }
.section-head p { color: var(--muted); }
.center { text-align: center; margin-top: 34px; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 7, 10, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 12px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  user-select: none;
}
.brand-vector {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.18rem;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, #fff 30%, #b9bec8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand-black {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.52em;
  color: var(--silver);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 3px;
}
.brand-black::before,
.brand-black::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(207, 211, 218, 0.6), transparent);
}

.nav-desktop { display: none; }

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 10px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-desktop a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--card);
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: grid;
  gap: 4px;
  padding: 10px 20px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(9, 9, 13, 0.97);
}
.nav-mobile a {
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text);
}
.nav-mobile a:hover { background: rgba(255, 255, 255, 0.05); }

/* ============ Buttons ============ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 999px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.3s ease, filter 0.25s ease;
  will-change: transform;
  min-height: 48px;
}
.btn:active { transform: scale(0.97); }

.btn-lg { padding: 17px 30px; font-size: 1rem; width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 0.82rem; min-height: 42px; }

.btn-gold {
  color: var(--gold-ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 40%),
    linear-gradient(115deg, var(--gold-1) 0%, var(--gold-2) 55%, var(--gold-3) 130%);
  box-shadow: 0 10px 30px rgba(217, 168, 62, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.btn-gold:hover {
  filter: brightness(1.07);
  box-shadow: 0 14px 42px rgba(217, 168, 62, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.14);
  transform: translateY(-2px);
}

.btn-ig {
  color: var(--text);
  background: linear-gradient(115deg, rgba(254, 218, 117, 0.14), rgba(221, 42, 123, 0.18), rgba(129, 52, 175, 0.18));
  border: 1px solid rgba(221, 42, 123, 0.45);
}
.btn-ig:hover { box-shadow: 0 10px 30px rgba(221, 42, 123, 0.22); transform: translateY(-2px); }

.ic { width: 20px; height: 20px; fill: currentColor; flex: none; }
.ic-wa { fill: var(--wa); }

.pulse { animation: pulse 2.8s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(217, 168, 62, 0.35), 0 0 0 0 rgba(217, 168, 62, 0.45); }
  50% { box-shadow: 0 10px 30px rgba(217, 168, 62, 0.5), 0 0 0 14px rgba(217, 168, 62, 0); }
}

/* ============ Hero ============ */
.hero {
  position: relative;
  padding: clamp(44px, 8vw, 90px) 0 clamp(50px, 8vw, 80px);
  overflow: hidden;
  background:
    radial-gradient(90% 60% at 50% -10%, rgba(225, 29, 46, 0.16), transparent 60%),
    radial-gradient(50% 40% at 85% 20%, rgba(217, 168, 62, 0.07), transparent 70%),
    linear-gradient(180deg, #0b0b11 0%, var(--bg) 100%);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.glow { position: absolute; border-radius: 50%; filter: blur(70px); }
.glow-red {
  width: 480px; height: 480px;
  background: radial-gradient(circle, var(--red-glow), transparent 65%);
  top: 6%; left: 50%;
  transform: translateX(-50%);
  animation: breathe 7s ease-in-out infinite;
}
.glow-gold {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(248, 213, 126, 0.16), transparent 65%);
  bottom: 4%; right: -8%;
  animation: breathe 9s ease-in-out infinite reverse;
}
@keyframes breathe {
  0%, 100% { opacity: 0.75; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.12); }
}
.glow-gold { animation-name: breathe2; }
@keyframes breathe2 {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.15); }
}

.particle {
  position: absolute;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-1), rgba(248, 213, 126, 0));
  opacity: 0.7;
  animation: drift 9s ease-in-out infinite;
}
.p1 { top: 18%; left: 12%; animation-delay: 0s; }
.p2 { top: 30%; left: 78%; animation-delay: 1.4s; }
.p3 { top: 58%; left: 8%; animation-delay: 2.6s; width: 4px; height: 4px; }
.p4 { top: 68%; left: 88%; animation-delay: 3.4s; }
.p5 { top: 12%; left: 55%; animation-delay: 4.4s; width: 3px; height: 3px; }
.p6 { top: 82%; left: 32%; animation-delay: 5.2s; width: 4px; height: 4px; }
@keyframes drift {
  0%, 100% { transform: translateY(0); opacity: 0.35; }
  50% { transform: translateY(-26px); opacity: 0.85; }
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 34px;
  align-items: center;
}

.hero-sub { color: var(--muted); font-size: 1.06rem; max-width: 46ch; }
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 26px;
}
.hero-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--silver);
  background: var(--card);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.hero-chips .ic { width: 16px; height: 16px; fill: none; stroke: var(--gold-2); color: var(--gold-2); }
.hero-chips li:first-child .ic { fill: var(--gold-2); stroke: none; }

.hero-ctas { display: grid; gap: 12px; max-width: 480px; }

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted);
  transition: color 0.2s ease;
}
.ig-link:hover { color: var(--gold-1); }
.ig-link .ic { width: 17px; height: 17px; fill: var(--gold-2); }

/* Hero visual */
.hero-visual {
  position: relative;
  width: min(78vw, 380px);
  margin-inline: auto;
  perspective: 900px;
}

.hero-bottle {
  position: relative;
  z-index: 3;
  object-fit: contain;
  width: auto;
  max-width: 100%;
  max-height: min(64vh, 560px);
  margin-inline: auto;
  filter: drop-shadow(0 34px 50px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 46px rgba(225, 29, 46, 0.22));
  animation: floaty 6.5s ease-in-out infinite;
  transition: transform 0.3s ease-out;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0.2deg); }
  50% { transform: translateY(-16px) rotate(-0.6deg); }
}
.float-slow { animation: floaty 8s ease-in-out infinite; }

.hero-ring {
  position: absolute;
  z-index: 1;
  inset: 8% -6% 10%;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(225, 29, 46, 0.28), transparent 70%);
  filter: blur(28px);
}

.hero-shadow {
  position: absolute;
  left: 50%;
  bottom: -14px;
  width: 62%;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.75), transparent 70%);
  animation: shadowPulse 6.5s ease-in-out infinite;
}
@keyframes shadowPulse {
  0%, 100% { transform: translateX(-50%) scaleX(1); opacity: 0.9; }
  50% { transform: translateX(-50%) scaleX(0.82); opacity: 0.55; }
}

/* Floating capsules (CSS shapes) */
.capsule {
  position: absolute;
  z-index: 4;
  width: 46px;
  height: 19px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3c3c44 0%, #0c0c10 45%, #232329 100%);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.28), inset 0 -2px 4px rgba(0, 0, 0, 0.8), 0 8px 16px rgba(0, 0, 0, 0.55);
  opacity: 0.95;
}
.capsule::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 22%;
  right: 22%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
}
.c1 { top: 6%; left: -9%; transform: rotate(-24deg); animation: capFloat 7s ease-in-out infinite; }
.c2 { top: 38%; right: -13%; transform: rotate(18deg); animation: capFloat 8s ease-in-out 1s infinite; }
.c3 { bottom: 22%; left: -13%; transform: rotate(30deg) scale(0.85); animation: capFloat 9s ease-in-out 2s infinite; }
.c4 { top: 12%; right: -5%; transform: rotate(-38deg) scale(0.72); animation: capFloat 7.5s ease-in-out 3s infinite; }
@keyframes capFloat {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -14px; }
}

.hero-trust {
  margin-top: clamp(34px, 6vw, 54px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 500;
}
.hero-trust i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-2);
  opacity: 0.8;
}
.trust-gold {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--gold-1);
  padding: 4px 12px;
  border: 1px solid var(--line-gold);
  border-radius: 999px;
  background: rgba(248, 213, 126, 0.06);
}

/* ============ Benefits ============ */
.benefit-grid {
  display: grid;
  gap: 16px;
}

.card {
  position: relative;
  padding: 26px 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 60% at 50% -20%, rgba(225, 29, 46, 0.16), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-gold);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(222, 178, 90, 0.12);
}
.card:hover::before { opacity: 1; }

.card-ic {
  width: 52px;
  height: 52px;
  display: grid;
  place-content: center;
  border-radius: 15px;
  margin-bottom: 18px;
  background:
    linear-gradient(150deg, rgba(248, 213, 126, 0.18), rgba(156, 116, 24, 0.12)),
    rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-gold);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.card-ic svg { width: 24px; height: 24px; fill: var(--gold-1); }
.card:nth-child(2) .card-ic svg,
.card:nth-child(3) .card-ic svg,
.card:nth-child(4) .card-ic svg { fill: none; stroke: var(--gold-1); }
.card:nth-child(2) .card-ic svg circle:last-child { fill: var(--gold-1); stroke: none; }

.card h3 { font-size: 1.14rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.94rem; position: relative; }

/* ============ Fórmula ============ */
.formula-grid { display: grid; gap: 30px; align-items: start; }

.formula-visual {
  position: relative;
  width: min(76vw, 360px);
  margin-inline: auto;
  text-align: center;
}
.formula-visual img {
  width: auto;
  max-width: 100%;
  max-height: min(60vh, 560px);
  margin-inline: auto;
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 36px rgba(225, 29, 46, 0.16));
}
.formula-visual figcaption {
  margin-top: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.ing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.ing-grid li {
  padding: 15px 16px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.ing-grid li:hover { transform: translateY(-3px); border-color: var(--line-gold); }
.ing-grid strong { display: block; font-size: 0.95rem; font-weight: 700; }
.ing-grid span { font-size: 0.84rem; color: var(--gold-1); font-weight: 600; }

.vd-note { margin-top: 12px; font-size: 0.78rem; color: var(--muted); }

.formula-actions { margin-top: 22px; display: grid; gap: 16px; }
.formula-actions .btn { width: 100%; }

.ing-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}
.ing-details summary {
  cursor: pointer;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--silver);
  list-style: none;
}
.ing-details summary::-webkit-details-marker { display: none; }
.ing-details summary::after {
  content: "+";
  float: right;
  color: var(--gold-2);
  font-size: 1.2rem;
  line-height: 1;
}
.ing-details[open] summary::after { content: "–"; }
.ing-details p { padding: 0 18px 16px; font-size: 0.86rem; color: var(--muted); }

.aviso {
  margin-top: clamp(34px, 6vw, 50px);
  display: flex;
  gap: 16px;
  padding: 22px 22px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(160deg, rgba(248, 213, 126, 0.07), rgba(156, 116, 24, 0.04)),
    var(--bg-2);
  border: 1px solid var(--line-gold);
}
.aviso-ic { width: 30px; height: 30px; flex: none; stroke: var(--gold-1); margin-top: 3px; }
.aviso h3 { font-size: 1.02rem; margin-bottom: 8px; color: var(--gold-1); }
.aviso ul { display: grid; gap: 6px; font-size: 0.9rem; color: var(--silver); }
.aviso li { padding-left: 16px; position: relative; }
.aviso li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-2);
}

/* ============ Galeria lifestyle ============ */
.gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(72vw, 300px);
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 4px 20px 22px;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}
.gallery::-webkit-scrollbar { height: 6px; }
.gallery::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 99px; margin-inline: 20px; }
.gallery::-webkit-scrollbar-thumb { background: linear-gradient(90deg, var(--red), var(--gold-2)); border-radius: 99px; }

.g-card {
  position: relative;
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 3.75;
  background: var(--bg-2);
  cursor: zoom-in;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.g-card:hover { transform: translateY(-6px); border-color: var(--line-gold); }
.g-card img { width: 100%; height: 100%; object-fit: cover; }
.g-card-dark {
  background:
    radial-gradient(90% 70% at 50% 22%, rgba(225, 29, 46, 0.13), transparent 62%),
    linear-gradient(180deg, #070709, #030304);
}
.g-card img[data-fit="contain"] {
  object-fit: contain;
  padding: 22px 22px 66px;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.55));
}
.g-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 42px 16px 16px;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 8, 0.88));
}
.g-card figcaption span {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold-ink);
  background: linear-gradient(115deg, var(--gold-1), var(--gold-2));
  box-shadow: 0 6px 18px rgba(217, 168, 62, 0.35);
}

/* ============ Depoimentos ============ */
.badge-edit {
  display: inline-block;
  margin-top: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--gold-1) !important;
  background: rgba(248, 213, 126, 0.07);
  border: 1px dashed var(--line-gold);
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(84vw, 340px);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  padding: 6px 4px 18px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.t-card {
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)), var(--bg-2);
  border: 1px solid var(--line);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.t-card:hover { border-color: var(--line-gold); transform: translateY(-4px); }

.t-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.t-avatar {
  width: 46px; height: 46px;
  flex: none;
  display: grid;
  place-content: center;
  border-radius: 50%;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-ink);
  background: linear-gradient(140deg, var(--gold-1), var(--gold-3));
  box-shadow: 0 0 0 2px rgba(248, 213, 126, 0.25), 0 8px 18px rgba(0, 0, 0, 0.4);
}
.t-head strong { display: block; font-size: 0.96rem; }
.t-head small { color: var(--muted); font-size: 0.78rem; }
.t-tag {
  margin-left: auto;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-1);
  border: 1px dashed var(--line-gold);
}

.stars { color: var(--gold-2); letter-spacing: 3px; font-size: 1.02rem; text-shadow: 0 0 14px rgba(217, 168, 62, 0.45); }
.t-card p { color: var(--silver); font-size: 0.94rem; }
.t-note { margin-top: auto; padding-top: 10px; font-size: 0.72rem; color: var(--muted); border-top: 1px dashed rgba(255, 255, 255, 0.08); }

.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 8px; }
.c-btn {
  width: 46px; height: 46px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--card);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.c-btn:hover { border-color: var(--line-gold); box-shadow: 0 0 22px rgba(217, 168, 62, 0.22); transform: scale(1.06); }
.c-btn svg { width: 20px; height: 20px; color: var(--gold-1); }
.c-dots { display: flex; gap: 8px; }
.c-dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  transition: background 0.25s ease, transform 0.25s ease;
}
.c-dots button[aria-selected="true"] { background: var(--gold-2); transform: scale(1.35); }

.t-disclaimer {
  margin-top: 26px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ============ Como usar ============ */
.steps {
  display: grid;
  gap: 16px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 28px 24px 24px;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.step:hover { transform: translateY(-5px); border-color: var(--line-gold); }
.step-num {
  display: inline-grid;
  place-content: center;
  width: 54px; height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--gold-ink);
  background: linear-gradient(140deg, var(--gold-1), var(--gold-3));
  box-shadow: 0 10px 26px rgba(217, 168, 62, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ============ FAQ ============ */
.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq details[open] { border-color: var(--line-gold); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.plus {
  position: relative;
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line-gold);
}
.plus::before, .plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold-1);
  transition: transform 0.25s ease;
}
.plus::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.plus::after { width: 2px; height: 10px; transform: translate(-50%, -50%); }
.faq details[open] .plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq details div { padding: 0 20px 18px; color: var(--muted); font-size: 0.92rem; }

/* ============ CTA final ============ */
.final { overflow: hidden; }
.final-bg { position: absolute; inset: 0; pointer-events: none; }
.final-bg .glow-red { top: 20%; width: 560px; height: 560px; }
.final {
  background:
    radial-gradient(80% 60% at 50% 110%, rgba(225, 29, 46, 0.14), transparent 60%),
    linear-gradient(180deg, var(--bg), #0b0b12);
  border-top: 1px solid rgba(255, 255, 255, 0.045);
}
.final-grid {
  position: relative;
  display: grid;
  gap: 30px;
  align-items: center;
}
.final-visual {
  position: relative;
  width: min(84vw, 400px);
  margin-inline: auto;
}
.final-visual img {
  object-fit: contain;
  width: 100%;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 42px rgba(225, 29, 46, 0.18));
}
.final-copy p { color: var(--muted); margin-bottom: 4px; }
.final-copy .hero-ctas { margin-top: 26px; }

/* ============ Footer ============ */
.site-footer {
  background: #060609;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: clamp(44px, 7vw, 64px) 0 90px;
}
.footer-grid {
  display: grid;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid h4 {
  font-family: var(--font-h);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 12px;
}
.footer-grid h4.mt { margin-top: 22px; }
.footer-grid nav a,
.footer-contact,
.link-btn {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: left;
  transition: color 0.2s ease;
}
.footer-grid nav a:hover,
.footer-contact:hover,
.link-btn:hover { color: var(--text); }
.footer-tag { color: var(--muted); font-size: 0.86rem; margin: 14px 0 16px; max-width: 34ch; }
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold-1);
  border: 1px solid var(--line-gold);
  background: rgba(248, 213, 126, 0.05);
}
.footer-legal { padding-top: 24px; display: grid; gap: 12px; }
.footer-legal p { font-size: 0.76rem; color: #71757f; line-height: 1.7; }

/* ============ Flutuantes ============ */
.floaters {
  position: fixed;
  right: 14px;
  bottom: 82px;
  z-index: 90;
  display: grid;
  gap: 12px;
}
.fab {
  width: 54px; height: 54px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.22s ease, box-shadow 0.3s ease;
}
.fab svg { width: 26px; height: 26px; }
.fab:hover { transform: translateY(-3px) scale(1.05); }
.fab-wa { background: linear-gradient(140deg, #2fe071, #17a94c); box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35); }
.fab-wa svg { fill: #fff; }
.fab-ig { background: linear-gradient(140deg, #feda75, #dd2a7b 55%, #8134af); }
.fab-ig svg { fill: #fff; }

.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(7, 7, 10, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  transform: translateY(110%);
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta .btn { width: 100%; }

/* ============ Lightbox / legal ============ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(4, 4, 7, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeIn 0.25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox figure {
  max-width: min(92vw, 640px);
  max-height: 86vh;
  display: grid;
  gap: 14px;
  justify-items: center;
}
.lightbox img {
  object-fit: contain;
  max-height: 78vh;
  border-radius: 16px;
  box-shadow: var(--shadow);
  animation: zoomIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
@keyframes zoomIn { from { transform: scale(0.9); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox figcaption { font-size: 0.84rem; color: var(--muted); text-align: center; }

.lb-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px; height: 48px;
  display: grid;
  place-content: center;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.25s ease;
}
.lb-close:hover { transform: rotate(90deg); border-color: var(--line-gold); }
.lb-close svg { width: 20px; height: 20px; }

.legal-box {
  width: min(92vw, 640px);
  max-height: 80vh;
  overflow-y: auto;
  padding: 30px 28px;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  border: 1px solid var(--line-gold);
  box-shadow: var(--shadow);
  animation: zoomIn 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.legal-box h3 { margin-bottom: 14px; color: var(--gold-1); }
.legal-box p { font-size: 0.88rem; color: var(--muted); margin-bottom: 12px; }
.legal-note { margin-top: 18px; padding-top: 14px; border-top: 1px dashed var(--line); font-size: 0.76rem !important; }

/* ============ Reveal on scroll ============ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 0.84, 0.24, 1);
}
.reveal.visible { opacity: 1; transform: none; }

/* ============ Breakpoints ============ */
@media (min-width: 640px) {
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .hero-ctas { grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn-gold { grid-column: 1 / -1; }
  .gallery { grid-auto-columns: min(38vw, 320px); }
  .carousel-track { grid-auto-columns: min(48vw, 360px); }
}

@media (min-width: 900px) {
    .nav-desktop { display: flex; align-items: center; gap: 2px; }
  .menu-toggle { display: none; }
  .nav-mobile { display: none !important; }

  .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; }
  .hero { padding-top: clamp(60px, 8vw, 100px); }
  .hero-visual { width: min(34vw, 400px); }

  .benefit-grid { grid-template-columns: repeat(4, 1fr); }
  .formula-grid { grid-template-columns: 0.9fr 1.1fr; gap: 48px; }
  .final-grid { grid-template-columns: 0.85fr 1.15fr; gap: 48px; }
  .final-visual { order: 2; width: min(32vw, 460px); }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }

  .gallery { grid-auto-columns: 300px; padding-inline: max(20px, calc((100vw - var(--max)) / 2)); }
  .carousel-track { grid-auto-columns: 380px; padding-inline: 4px; }
  .carousel .carousel-track { scrollbar-width: thin; }
  .carousel-track::-webkit-scrollbar { display: block; height: 6px; }
  .carousel-track::-webkit-scrollbar-thumb { background: linear-gradient(90deg, var(--red), var(--gold-2)); border-radius: 99px; }

  .sticky-cta { display: none; }
  .floaters { bottom: 22px; right: 22px; }
  .site-footer { padding-bottom: 40px; }
}

@media (min-width: 1200px) {
  .gallery { grid-auto-columns: 320px; }
}

/* ============ Motion preferences ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
