/* =========================================
   BOLSA MILAS — Sales Page
   Dark cinematic athletic premium
   ========================================= */

:root {
  /* Backgrounds — true black w/ subtle warm depth */
  --bg: oklch(0.13 0.003 180);
  --bg-deep: oklch(0.07 0.003 180);
  --bg-surface: oklch(0.17 0.004 180);
  --bg-elev: oklch(0.21 0.005 180);

  /* Lines */
  --line: oklch(0.26 0.006 180);
  --line-strong: oklch(0.34 0.008 180);

  /* Text — warm off-white */
  --fg: oklch(0.98 0.005 180);
  --fg-soft: oklch(0.84 0.008 180);
  --fg-muted: oklch(0.62 0.01 180);
  --fg-dim: oklch(0.46 0.01 180);

  /* Accent — Milas teal (#6caea2) refined */
  --accent: #6caea2;
  --accent-bright: #8cc7bc;
  --accent-deep: #4a8a7e;
  --accent-glow: rgba(108, 174, 162, 0.4);
  --accent-soft: rgba(108, 174, 162, 0.1);

  /* CTA — conversion green (kept punchy on purpose) */
  --cta: oklch(0.78 0.21 145);
  --cta-bright: oklch(0.84 0.22 145);
  --cta-deep: oklch(0.62 0.2 145);
  --cta-glow: oklch(0.78 0.21 145 / 0.45);
  --cta-soft: oklch(0.78 0.21 145 / 0.12);

  /* Warning — burnt amber */
  --danger: oklch(0.72 0.19 35);
  --danger-soft: oklch(0.72 0.19 35 / 0.12);

  /* Gold — bonus accent */
  --gold: oklch(0.86 0.12 90);

  /* Type */
  --font-display: "Archivo Black", "Bebas Neue", sans-serif;
  --font-body: "Plus Jakarta Sans", -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", monospace;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  padding-bottom: 80px;
  overflow-x: hidden;
}

/* Grain overlay for depth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: 0.4;
  mix-blend-mode: overlay;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* =========================================
   LAYOUT
   ========================================= */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.wrap-tight {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

section {
  position: relative;
  z-index: 2;
}

/* =========================================
   TYPE
   ========================================= */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.02em;
}

.h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.025em;
}

.h2 {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.015em;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--fg-soft);
  line-height: 1.55;
  font-weight: 400;
  max-width: 60ch;
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

.text-muted {
  color: var(--fg-muted);
}

.text-accent {
  color: var(--accent);
}

mark {
  background: linear-gradient(180deg, transparent 60%, var(--accent-soft) 60%);
  color: var(--accent);
  padding: 0 4px;
}

/* =========================================
   TOPBAR — live urgency strip
   ========================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: var(--bg-deep);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--fg-muted);
}

.topbar-item strong {
  color: var(--fg);
  font-weight: 600;
}

.topbar-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
  animation: pulse-dot 1.6s var(--ease-in-out) infinite;
}

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

.topbar-item .countdown {
  color: var(--danger);
  font-weight: 700;
}

@media (max-width: 720px) {
  .topbar-inner { gap: 14px; padding: 8px 16px; font-size: 0.68rem; }
  .topbar-item.hide-mobile { display: none; }
}

/* =========================================
   NAV
   ========================================= */
.nav {
  position: relative;
  z-index: 60;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-deep);
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.brand-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-left: 2px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg);
  border: 1px solid var(--line-strong);
  padding: 10px 16px;
  border-radius: 999px;
  transition: all 0.3s var(--ease-out);
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.nav-cta::after {
  content: "→";
  transition: transform 0.3s var(--ease-out);
}

.nav-cta:hover::after { transform: translateX(3px); }

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  padding: 80px 0 60px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
  }
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero h1 {
  margin-bottom: 28px;
}

.hero h1 .line {
  display: block;
}

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
}

.hero p.lead {
  margin-bottom: 36px;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero p.lead strong {
  color: var(--fg);
  font-weight: 600;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 1px;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  padding-top: 24px;
  max-width: 520px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 12px;
}

.hero-stat + .hero-stat {
  border-left: 1px solid var(--line);
  padding-left: 16px;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.hero-stat-value .stars {
  color: var(--accent);
  letter-spacing: -0.05em;
}

/* Hero visual stage */
.hero-stage {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, oklch(0.22 0.008 180), var(--bg-deep) 70%);
  border: 1px solid var(--line);
  isolation: isolate;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 55%, var(--accent-soft), transparent 55%);
  z-index: 1;
}

/* Magnetic field SVG layer */
.magnetic-field {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.magnetic-field circle {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1;
  opacity: 0.25;
  transform-origin: 50% 55%;
  animation: pulse-field 4s var(--ease-in-out) infinite;
}

.magnetic-field circle:nth-child(1) { animation-delay: 0s; }
.magnetic-field circle:nth-child(2) { animation-delay: 0.5s; }
.magnetic-field circle:nth-child(3) { animation-delay: 1s; }
.magnetic-field circle:nth-child(4) { animation-delay: 1.5s; }
.magnetic-field circle:nth-child(5) { animation-delay: 2s; }

@keyframes pulse-field {
  0% { transform: scale(0.4); opacity: 0; stroke-width: 1.5; }
  20% { opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; stroke-width: 0.4; }
}

.hero-stage-product {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8%;
}

.hero-stage-product img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  animation: float-product 6s var(--ease-in-out) infinite;
}

@keyframes float-product {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

/* Floating badges around hero */
.hero-tag {
  position: absolute;
  z-index: 4;
  background: rgba(20, 22, 26, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fg);
  animation: tag-float 5s var(--ease-in-out) infinite;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-glow);
}

.hero-tag.tag-1 { top: 12%; left: -2%; animation-delay: 0s; }
.hero-tag.tag-2 { top: 38%; right: -4%; animation-delay: 1.5s; }
.hero-tag.tag-3 { bottom: 16%; left: 4%; animation-delay: 3s; }

@keyframes tag-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-corner {
  position: absolute;
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 14px;
}

.hero-corner.tl { top: 0; left: 0; border-left: 1px solid var(--line); border-top: 1px solid var(--line); }
.hero-corner.tr { top: 0; right: 0; text-align: right; }
.hero-corner.bl { bottom: 0; left: 0; }
.hero-corner.br { bottom: 0; right: 0; text-align: right; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* =========================================
   CTA BUTTON — premium
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 18px 28px;
  border-radius: 8px;
  transition: all 0.3s var(--ease-out);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--cta);
  color: #062b16;
  box-shadow: 0 0 0 0 var(--cta-glow), 0 14px 30px -10px var(--cta-glow);
  border: 1px solid var(--cta-bright);
}

.btn-primary:hover {
  background: var(--cta-bright);
  transform: translateY(-2px);
  box-shadow: 0 0 0 6px var(--cta-soft), 0 20px 40px -10px var(--cta-glow);
}

.btn-primary::after {
  content: "→";
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform 0.3s var(--ease-out);
}

.btn-primary:hover::after { transform: translateX(4px); }

.btn-pulse {
  animation: btn-pulse 2.4s var(--ease-in-out) infinite;
}

@keyframes btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--cta-glow), 0 14px 30px -10px var(--cta-glow); }
  50% { box-shadow: 0 0 0 8px transparent, 0 14px 30px -10px var(--cta-glow); }
}

.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--fg);
}

.btn-big {
  padding: 22px 36px;
  font-size: 1.05rem;
  width: 100%;
  max-width: 520px;
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.btn-undertext {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* =========================================
   TRUST BADGES
   ========================================= */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.trust-row span::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
}

/* =========================================
   MARQUEE — featured in / influencers
   ========================================= */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 20px 0;
  overflow: hidden;
  position: relative;
}

.marquee-label {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fg-dim);
  text-align: center;
  margin-bottom: 14px;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--fg-dim);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.3s;
}

.marquee-item:hover { color: var(--fg); }

.marquee-item .dot {
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

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

/* =========================================
   SECTION FRAME
   ========================================= */
.section {
  padding: 100px 0;
  position: relative;
}

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

.section-header {
  margin-bottom: 60px;
  max-width: 760px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header .eyebrow {
  margin-bottom: 18px;
}

.section-header h2 {
  margin-bottom: 18px;
}

.section-header p {
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  color: var(--fg-soft);
  line-height: 1.6;
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .section-header { margin-bottom: 40px; }
}

/* =========================================
   PAIN CARDS
   ========================================= */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 720px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); }
}

.pain-card {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}

.pain-card:hover {
  transform: translateY(-4px);
  border-color: var(--danger);
}

.pain-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--danger), transparent);
}

.pain-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--danger);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.pain-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.pain-card p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =========================================
   ANATOMY — product breakdown
   ========================================= */
.anatomy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .anatomy-grid { grid-template-columns: 1fr 1fr; gap: 60px; }
}

.anatomy-stage {
  position: relative;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, var(--bg-surface), var(--bg-deep) 70%);
  border-radius: 18px;
  border: 1px solid var(--line);
  overflow: hidden;
}

.anatomy-stage img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10%;
}

.anatomy-spec {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.anatomy-spec li {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  cursor: pointer;
  transition: background 0.3s;
}

.anatomy-spec li:hover {
  background: linear-gradient(90deg, var(--accent-soft), transparent);
}

.anatomy-spec li:first-child { border-top: 1px solid var(--line); }

.anatomy-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 3px;
}

.anatomy-spec h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-transform: uppercase;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.anatomy-spec p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* =========================================
   HOW IT WORKS — 3 steps
   ========================================= */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  counter-reset: step;
}

@media (min-width: 800px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  color: var(--accent);
  line-height: 0.9;
  letter-spacing: -0.04em;
  position: absolute;
  top: 18px;
  right: 22px;
  opacity: 0.15;
}

.step-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  position: relative;
  z-index: 2;
}

.step-icon-wrap svg { width: 28px; height: 28px; }

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* =========================================
   LIFESTYLE GRID
   ========================================= */
.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 720px) {
  .lifestyle-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
  }
}

.lifestyle-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out);
}

.lifestyle-card:hover { transform: translateY(-4px); }

.lifestyle-card img,
.lifestyle-card .placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lifestyle-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.85));
  z-index: 1;
}

.lifestyle-meta {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 2;
}

.lifestyle-meta .num {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.lifestyle-meta h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
  color: #fff;
}

/* =========================================
   SPECS — technical sheet
   ========================================= */
.specs-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .specs-wrap { grid-template-columns: 1fr 1.1fr; gap: 80px; }
}

.specs-visual {
  position: relative;
  aspect-ratio: 1;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

.specs-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8%;
}

.specs-visual .corner {
  position: absolute;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-dim);
}

.specs-visual .corner.tl { top: 0; left: 0; }
.specs-visual .corner.br { bottom: 0; right: 0; }

.specs-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.spec-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.spec-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.spec-value {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--fg);
  text-align: right;
  letter-spacing: -0.01em;
}

.spec-value .unit {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-left: 4px;
}

/* =========================================
   CARROSSEL produto
   ========================================= */
.carousel {
  position: relative;
}

.carousel-track-wrap {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--bg-surface);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s var(--ease-out);
}

.carousel-slide {
  min-width: 100%;
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img,
.carousel-slide .placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20, 22, 26, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line-strong);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: all 0.3s;
}

.carousel-nav:hover {
  background: var(--accent);
  color: var(--bg-deep);
  border-color: var(--accent);
}

.carousel-nav.prev { left: 16px; }
.carousel-nav.next { right: 16px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 22px;
}

.carousel-dot {
  width: 28px;
  height: 3px;
  background: var(--line-strong);
  border-radius: 0;
  cursor: pointer;
  transition: background 0.3s;
  border: none;
}

.carousel-dot.active {
  background: var(--accent);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 800px) {
  .testimonials {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.testimonial {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial.featured {
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-surface));
  border-color: var(--accent-deep);
  position: relative;
}

.testimonial.featured::before {
  content: "TOP REVIEW";
  position: absolute;
  top: -10px;
  left: 24px;
  background: var(--accent);
  color: var(--bg-deep);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
}

.t-stars {
  color: var(--accent);
  letter-spacing: 3px;
  font-size: 0.92rem;
}

.t-text {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--fg-soft);
  flex: 1;
}

.t-text::before { content: "\201C"; color: var(--accent); margin-right: 2px; }
.t-text::after { content: "\201D"; color: var(--accent); margin-left: 2px; }

.t-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.t-photos img,
.t-photos .placeholder {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}

.t-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.t-author strong {
  display: block;
  font-size: 0.92rem;
  color: var(--fg);
}

.t-author .verified {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* =========================================
   BONUS / KIT REVEAL
   ========================================= */
.bonus-wrap {
  background: linear-gradient(180deg, var(--bg-elev), var(--bg-surface));
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.bonus-wrap::before {
  content: "";
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(60px);
}

.bonus-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.bonus-header h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  max-width: 480px;
}

.bonus-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-deep);
  border-radius: 999px;
}

.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 2;
}

.bonus-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.bonus-row:last-of-type { border-bottom: none; }

.bonus-row.total {
  margin-top: 12px;
  padding-top: 24px;
  border-top: 2px solid var(--line-strong);
  border-bottom: none;
}

.bonus-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.8rem;
}

.bonus-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.bonus-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--fg-muted);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 2px;
}

.bonus-price {
  font-family: var(--font-mono);
  font-size: 0.92rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.bonus-row.free .bonus-price {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.bonus-total-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.05rem;
}

.bonus-total-value {
  text-align: right;
}

.bonus-total-old {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.bonus-total-new {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

/* =========================================
   PRICING / OFFER
   ========================================= */
.offer-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 960px) {
  .offer-wrap { grid-template-columns: 1fr 1.1fr; gap: 60px; }
}

.pricing-card {
  background: var(--bg-deep);
  border: 1px solid var(--cta-deep);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px var(--cta-glow);
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cta), transparent);
}

.price-flag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cta);
  padding: 6px 12px;
  border: 1px solid var(--cta-deep);
  background: var(--cta-soft);
  border-radius: 999px;
  margin-bottom: 22px;
}

.price-old {
  font-family: var(--font-mono);
  font-size: 1rem;
  color: var(--fg-muted);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-main .currency {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--fg-soft);
}

.price-main .value {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 10vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--fg);
}

.price-main .cents {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--fg-soft);
}

.price-installments {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  margin-bottom: 32px;
}

.price-installments strong {
  color: var(--fg);
  font-weight: 700;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
}

.pay-pill {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.scarcity-bar {
  margin-top: 28px;
  padding: 16px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.scarcity-bar-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scarcity-bar-label .left { color: var(--fg-muted); }
.scarcity-bar-label .right {
  color: var(--danger);
  font-weight: 700;
}

.scarcity-track {
  height: 6px;
  background: var(--bg-deep);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.scarcity-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--danger), var(--accent));
  border-radius: 3px;
  width: 76%;
  position: relative;
  animation: scarcity-pulse 2s var(--ease-in-out) infinite;
}

@keyframes scarcity-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.offer-side h2 { margin-bottom: 18px; }

.offer-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.offer-checks li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  font-size: 0.96rem;
  color: var(--fg-soft);
  line-height: 1.5;
}

.offer-checks li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cta);
  color: #062b16;
  border-radius: 50%;
  font-weight: 900;
  font-size: 0.78rem;
}

/* =========================================
   GUARANTEE BOX
   ========================================= */
.guarantee {
  background: var(--bg-deep);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 48px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media (max-width: 720px) {
  .guarantee { grid-template-columns: 1fr; padding: 32px; text-align: center; }
}

.guarantee-seal {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-soft), transparent);
  border: 2px dashed var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-family: var(--font-display);
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  flex-shrink: 0;
  animation: rotate-slow 30s linear infinite;
}

.guarantee-seal .big {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.guarantee-seal .small {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  margin-top: 4px;
}

@keyframes rotate-slow {
  to { transform: rotate(360deg); }
}

@media (max-width: 720px) {
  .guarantee-seal { margin: 0 auto; }
}

.guarantee-body h3 {
  margin-bottom: 14px;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

.guarantee-body p {
  color: var(--fg-soft);
  font-size: 0.98rem;
  line-height: 1.6;
}

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

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item[open] { border-color: var(--accent-deep); }

.faq-item summary {
  padding: 22px 26px;
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item-body {
  padding: 0 26px 22px;
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =========================================
   FINAL CTA
   ========================================= */
.final-cta {
  text-align: center;
  padding: 100px 0;
  background:
    radial-gradient(ellipse at 50% 100%, var(--accent-soft), transparent 60%),
    var(--bg-deep);
  border-top: 1px solid var(--line);
}

.final-cta h2 {
  margin-bottom: 20px;
  max-width: 800px;
  margin-inline: auto;
}

.final-cta p {
  font-size: 1.1rem;
  color: var(--fg-soft);
  max-width: 580px;
  margin: 0 auto 36px;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}

.footer-brand p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: var(--fg-soft);
  padding: 6px 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--fg-dim);
}

.footer-bottom a { color: var(--fg-muted); }

/* =========================================
   STICKY MOBILE CTA
   ========================================= */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 11, 14, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line-strong);
  padding: 12px 20px;
  z-index: 90;
  display: none;
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 600px;
  margin: 0 auto;
}

.sticky-cta-price {
  flex-shrink: 0;
}

.sticky-cta-price .strike {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-muted);
  text-decoration: line-through;
}

.sticky-cta-price .now {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--fg);
  letter-spacing: -0.02em;
  line-height: 1;
}

.sticky-cta .btn {
  flex: 1;
  padding: 14px 18px;
  font-size: 0.85rem;
}

@media (max-width: 800px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 88px; }
}

/* =========================================
   NOTIFICATION POPUP
   ========================================= */
.notification {
  position: fixed;
  bottom: 110px;
  left: 20px;
  background: rgba(20, 22, 26, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  padding: 14px 20px;
  border-radius: 10px;
  z-index: 88;
  transform: translateX(-130%);
  transition: transform 0.5s var(--ease-out);
  max-width: 320px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.8);
}

.notification.show { transform: translateX(0); }

.notification-icon {
  width: 24px;
  height: 24px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-right: 8px;
  vertical-align: middle;
}

.notification p {
  font-size: 0.88rem;
  color: var(--fg);
  margin: 0;
  line-height: 1.4;
}

.notification p .highlight {
  color: var(--accent);
  font-weight: 700;
}

.notification small {
  display: block;
  margin-top: 2px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}

@media (min-width: 800px) {
  .notification { bottom: 30px; }
}

/* =========================================
   PLACEHOLDER (when no image yet)
   ========================================= */
.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    repeating-linear-gradient(
      45deg,
      oklch(0.18 0.005 180),
      oklch(0.18 0.005 180) 10px,
      oklch(0.16 0.005 180) 10px,
      oklch(0.16 0.005 180) 20px
    );
  color: var(--fg-dim);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  padding: 20px;
  line-height: 1.5;
}

.placeholder span { display: block; }
.placeholder .label { color: var(--accent); margin-bottom: 6px; }

/* =========================================
   REVEAL ON SCROLL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   THANK YOU PAGE
   ========================================= */
.thank-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.thank-hero::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent-soft), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}

.thank-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 900px) {
  .thank-hero-grid { grid-template-columns: 1.1fr 1fr; gap: 80px; }
}

.success-circle {
  width: 88px;
  height: 88px;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  position: relative;
  animation: pop-in 0.6s var(--ease-out) backwards;
}

.success-circle::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  opacity: 0;
  animation: ring-out 1.4s var(--ease-out) 0.4s infinite;
}

@keyframes pop-in {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes ring-out {
  0% { transform: scale(0.9); opacity: 0.6; }
  100% { transform: scale(1.4); opacity: 0; }
}

.success-circle svg {
  width: 44px;
  height: 44px;
  color: var(--accent);
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
  animation: draw-check 0.7s var(--ease-out) 0.5s forwards;
}

@keyframes draw-check {
  to { stroke-dashoffset: 0; }
}

.thank-hero h1 {
  margin-bottom: 20px;
}

.thank-hero h1 .accent {
  color: var(--accent);
}

.thank-hero .lead {
  margin-bottom: 32px;
  font-size: 1.15rem;
}

.order-card {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
}

.order-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}

.order-row .label { color: var(--fg-muted); text-transform: uppercase; }
.order-row .val { color: var(--fg); }
.order-row.total {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 0.92rem;
}
.order-row.total .val { color: var(--accent); font-size: 1.1rem; }

/* Tracking timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 60px 0;
}

.timeline-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}

.timeline-item:last-child { border-bottom: none; }

.timeline-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  color: var(--fg-muted);
  position: relative;
  z-index: 2;
}

.timeline-item.active .timeline-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg-deep);
  box-shadow: 0 0 0 6px var(--accent-soft);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 60px;
  bottom: -20px;
  width: 2px;
  background: var(--line);
  z-index: 1;
}

.timeline-item:last-child::before { display: none; }

.timeline-item.active::before {
  background: linear-gradient(180deg, var(--accent), var(--line));
}

.timeline-content h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}

.timeline-content p {
  font-size: 0.92rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.timeline-content .stamp {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px 8px;
  background: var(--accent-soft);
  border-radius: 4px;
}

/* Community CTA cards */
.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

@media (min-width: 760px) {
  .community-grid { grid-template-columns: 1fr 1fr; }
}

.community-card {
  background: var(--bg-surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.community-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.community-card::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.4s;
}

.community-card:hover::before { opacity: 1; }

.community-card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--accent-soft);
  border: 1px solid var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.community-card-icon svg { width: 22px; height: 22px; }

.community-card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.community-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.community-card p {
  font-size: 0.94rem;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 22px;
}

.community-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}

.community-card-cta::after {
  content: "→";
  transition: transform 0.3s;
}

.community-card:hover .community-card-cta::after { transform: translateX(4px); }

/* =========================================
   HIDE TOOLS on mobile
   ========================================= */
@media (max-width: 720px) {
  .hide-on-mobile { display: none !important; }
}

/* =========================================
   MOBILE NAV — ocultar no mobile
   ========================================= */
@media (max-width: 800px) {
  .nav { display: none; }
}

/* =========================================
   RESPONSIVIDADE GERAL — mobile
   ========================================= */
@media (max-width: 600px) {
  .hero { padding: 48px 0 40px; }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }

  .hero-stat-value {
    font-size: 1.1rem;
  }

  .hero-stat-label {
    font-size: 0.58rem;
  }

  .hero-tag {
    font-size: 0.6rem;
    padding: 7px 10px;
  }

  .hero-tag.tag-2 { right: -2%; }

  .kit-list li {
    grid-template-columns: 36px 1fr auto;
    gap: 10px;
  }

  .kit-list .kit-name {
    font-size: 0.85rem;
  }

  .pricing-card {
    padding: 28px 20px;
  }

  .bonus-wrap { padding: 32px 20px; }

  .section { padding: 56px 0; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
