/* =========================================================
   TIAGO SOUZA — Personal Trainer
   Design System: "Editorial Atlético / Luxo Sombrio"
   Display: Anton · Corpo: Sora
   ========================================================= */

:root {
  /* Cores — paleta escura contida (todas verificadas em WCAG AA) */
  --bg:          #0E1519;   /* grafite base */
  --bg-alt:      #111C22;   /* banda alternada sutil */
  --surface:     #17242C;   /* cards */
  --surface-2:   #1E2E38;   /* elevado / destaque */
  --line:        rgba(244, 252, 251, 0.10);
  --line-strong: rgba(244, 252, 251, 0.18);

  --text:        #F4FCFB;   /* 17.7:1 sobre bg */
  --muted:       #9FB4BF;   /* 8.6:1 sobre bg */
  --accent:      #5289AD;   /* aço — 4.86:1 sobre bg */
  --accent-br:   #6BA3C6;   /* aço claro — 6.7:1 (links/destaques) */
  --ink:         #0B141A;   /* texto sobre fundos claros/accent */
  --whats:       #25D366;
  --whats-ink:   #07160D;

  /* Tipografia */
  --font-display: 'Anton', 'Arial Narrow', system-ui, sans-serif;
  --font-body: 'Sora', system-ui, sans-serif;

  --fs-h1: clamp(3rem, 9vw, 6rem);
  --fs-h2: clamp(2.1rem, 5vw, 3.6rem);
  --fs-h3: 1.3rem;
  --fs-body: 1rem;
  --fs-lead: clamp(1.05rem, 2vw, 1.22rem);
  --fs-small: 0.875rem;
  --fs-label: 0.72rem;
  --ls-label: 0.22em;

  /* Raio */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --radius-pill: 999px;

  /* Espaçamento */
  --space-section: clamp(72px, 11vw, 140px);
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 44px);

  /* Sombra (dark) */
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-elevated: 0 26px 64px rgba(0, 0, 0, 0.5);
  --glow-accent: 0 0 0 1px rgba(82, 137, 173, 0.55), 0 24px 60px rgba(82, 137, 173, 0.16);

  /* Movimento */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.98;
  letter-spacing: 0.01em;
  margin: 0 0 0.35em;
  color: var(--text);
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-family: var(--font-body); font-weight: 700; font-size: var(--fs-h3); line-height: 1.25; margin: 0 0 0.5em; color: var(--text); letter-spacing: -0.01em; }
p  { margin: 0 0 1rem; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--accent); color: var(--ink); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--space-section); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 600;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--accent-br);
  margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--accent); flex-shrink: 0; }

.section-head { max-width: 680px; margin: 0 auto clamp(48px, 7vw, 72px); text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-lead { font-size: var(--fs-lead); color: var(--muted); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--accent); color: var(--ink); font-weight: 600;
  padding: 12px 18px; border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 15px 30px; border-radius: var(--radius-pill);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), background 0.25s, color 0.25s, border-color 0.25s;
  min-height: 50px; white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid var(--accent-br); outline-offset: 3px; }
/* Primário: botão claro sobre fundo escuro (contraste 17.9:1) */
.btn-primary { background: var(--text); color: var(--ink); box-shadow: 0 10px 26px rgba(0, 0, 0, 0.4); }
.btn-primary:hover { background: #fff; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0, 0, 0, 0.5); }
.btn-outline-light { background: rgba(244, 252, 251, 0.04); color: var(--text); border-color: var(--line-strong); }
.btn-outline-light:hover { background: rgba(244, 252, 251, 0.12); border-color: var(--text); transform: translateY(-3px); }
.btn-soft { background: rgba(82, 137, 173, 0.16); color: var(--accent-br); border-color: rgba(82, 137, 173, 0.28); }
.btn-soft:hover { background: rgba(82, 137, 173, 0.26); transform: translateY(-3px); }
.btn-whats { background: var(--whats); color: var(--whats-ink); box-shadow: 0 10px 26px rgba(37, 211, 102, 0.28); }
.btn-whats:hover { background: #2be173; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(37, 211, 102, 0.36); }
.btn-lg { padding: 18px 38px; font-size: 1.05rem; min-height: 56px; }
.btn-block { width: 100%; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 10px;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(14, 21, 25, 0.82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--line);
  padding-block: 9px;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { position: relative; display: inline-flex; align-items: center; width: 96px; height: 96px; transition: width 0.4s var(--ease), height 0.4s var(--ease); }
.brand-logo { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.site-header.scrolled .brand { width: 74px; height: 74px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-weight: 500; font-size: 0.94rem; color: var(--text); position: relative; transition: color 0.2s; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--accent); transition: width 0.3s var(--ease-out);
}
.nav-links a:not(.nav-cta):hover { color: var(--accent-br); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  background: var(--text); color: var(--ink) !important; padding: 10px 22px;
  border-radius: var(--radius-pill); font-weight: 600;
  transition: transform 0.25s var(--ease-out), background 0.25s;
}
.nav-cta:hover { background: var(--accent-br); transform: translateY(-2px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer; padding: 10px; border-radius: var(--radius-sm);
}
.nav-toggle span { height: 2px; width: 100%; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease-out), opacity 0.3s, background 0.3s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  padding-top: 140px; padding-bottom: 96px; overflow: hidden;
  background: var(--bg); color: var(--text);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: right center; background-repeat: no-repeat;
}
.hero-slide-1 { background-image: url("../img/hero-2.jpg"); }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(14,21,25,0.9) 0%, rgba(14,21,25,0.68) 30%, rgba(14,21,25,0.12) 64%, rgba(14,21,25,0.08) 100%),
    linear-gradient(0deg, rgba(14,21,25,0.55) 0%, rgba(14,21,25,0) 40%);
}

.hero-inner { position: relative; z-index: 3; }
.hero-copy { max-width: 680px; }
.hero-title { font-size: var(--fs-h1); line-height: 0.94; margin-bottom: 0.42em; }
.hero-title .accent { color: var(--accent-br); }
.hero-sub { font-family: var(--font-body); font-size: var(--fs-lead); color: rgba(244,252,251,0.86); max-width: 48ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 12px; }

.hero-stats { display: flex; gap: clamp(24px, 4vw, 52px); margin-top: 52px; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; position: relative; }
.hero-stats li + li { padding-left: clamp(24px, 4vw, 52px); }
.hero-stats li + li::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: var(--line-strong); }
.hero-stats strong { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.3rem, 4.5vw, 3.2rem); color: var(--text); font-variant-numeric: tabular-nums; line-height: 1; }
.hero-stats span { font-size: var(--fs-small); color: var(--muted); margin-top: 8px; line-height: 1.25; }

.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; width: 26px; height: 42px; border: 2px solid var(--line-strong); border-radius: var(--radius-pill); display: grid; justify-items: center; padding-top: 8px; }
.scroll-cue span { width: 4px; height: 8px; border-radius: 4px; background: var(--accent-br); animation: scrollDot 1.8s var(--ease) infinite; }

/* ---------- Trust ---------- */
.trust { background: var(--bg-alt); border-block: 1px solid var(--line); padding-block: 44px; }
.trust-inner { text-align: center; }
.trust-label { font-size: var(--fs-small); letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.trust-items { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(18px, 4vw, 52px); }
.trust-items li { font-family: var(--font-display); font-weight: 400; text-transform: uppercase; letter-spacing: 0.03em; font-size: clamp(1rem, 2vw, 1.25rem); color: var(--text); }
.trust-items li::before { content: "◆"; color: var(--accent); margin-right: 12px; font-size: 0.6em; vertical-align: middle; }

/* ---------- Grid 2 cols ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: center; }

/* ---------- Sobre ---------- */
.sobre-visual { position: relative; }
.frame-photo {
  position: relative; z-index: 2; aspect-ratio: 4/5; border-radius: var(--radius-lg);
  background: var(--surface); box-shadow: var(--shadow-elevated); overflow: hidden;
  border: 1px solid var(--line);
}
.frame-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.frame-accent { position: absolute; z-index: 1; inset: 26px -26px -26px 26px; border-radius: var(--radius-lg); border: 1.5px solid var(--accent); opacity: 0.5; }

.sobre-copy h2 { margin-bottom: 0.5em; }
.feature-list { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 34px; }
.feature-list li { display: flex; align-items: flex-start; gap: 13px; color: var(--text); font-weight: 400; }
.tick { flex-shrink: 0; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: rgba(82,137,173,0.2); color: var(--accent-br); font-size: 0.8rem; font-weight: 700; margin-top: 3px; }

/* ---------- Serviços ---------- */
.servicos { background: var(--bg-alt); }
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 30px); }
.plan-card {
  position: relative; background: var(--surface); border-radius: var(--radius-lg); padding: 36px 30px;
  box-shadow: var(--shadow-card); border: 1px solid var(--line);
  display: flex; flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}
.plan-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-elevated); border-color: var(--line-strong); }
.plan-card.featured { background: var(--surface-2); border: 1px solid rgba(82,137,173,0.5); box-shadow: var(--glow-accent); transform: scale(1.035); }
.plan-card.featured:hover { transform: scale(1.035) translateY(-8px); }
.plan-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--accent); color: var(--ink); font-size: var(--fs-label); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 16px; border-radius: var(--radius-pill); }
.plan-icon { display: grid; place-items: center; width: 56px; height: 56px; border-radius: var(--radius-md); background: rgba(82,137,173,0.16); color: var(--accent-br); margin-bottom: 22px; }
.plan-card h3 { margin-bottom: 10px; }
.plan-card > p { color: var(--muted); font-size: var(--fs-small); }
.plan-card ul { display: flex; flex-direction: column; gap: 11px; margin: 22px 0 30px; }
.plan-card ul li { font-size: var(--fs-small); color: var(--text); padding-left: 26px; position: relative; }
.plan-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-br); font-weight: 700; }
.plan-card .btn { margin-top: auto; }

/* ---------- Resultados (números) ---------- */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 30px); }
.result-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 32px; box-shadow: var(--shadow-card);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s;
}
.result-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-elevated); border-color: rgba(82,137,173,0.4); }
.result-metric { display: block; font-family: var(--font-display); font-weight: 400; font-size: clamp(3.2rem, 6vw, 4.6rem); line-height: 0.9; color: var(--accent-br); letter-spacing: -0.01em; }
.result-metric em { font-style: normal; font-size: 0.42em; color: var(--muted); margin-left: 4px; }
.result-desc { color: var(--muted); margin: 18px 0 22px; }
.result-card footer { display: flex; flex-direction: column; gap: 2px; padding-top: 18px; border-top: 1px solid var(--line); }
.result-card footer strong { font-weight: 600; color: var(--text); }
.result-card footer span { font-size: var(--fs-small); color: var(--accent-br); text-transform: uppercase; letter-spacing: 0.08em; }
.results-note { text-align: center; margin: 36px 0 0; font-size: var(--fs-small); color: var(--muted); opacity: 0.8; }

/* ---------- Processo ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 32px); }
.step { position: relative; padding: 32px 26px; background: var(--surface); border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-card); }
.step-num { font-family: var(--font-display); font-weight: 400; font-size: 2.8rem; color: var(--accent); opacity: 0.35; line-height: 1; display: block; margin-bottom: 14px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: var(--fs-small); color: var(--muted); margin: 0; }

/* ---------- Depoimentos ---------- */
.depoimentos { background: var(--bg-alt); }
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 30px); }
.quote { background: var(--surface); border-radius: var(--radius-lg); padding: 34px 30px; box-shadow: var(--shadow-card); margin: 0; display: flex; flex-direction: column; gap: 18px; border: 1px solid var(--line); }
.stars { color: #F2B33D; letter-spacing: 3px; font-size: 1.05rem; }
.quote p { font-size: 1.04rem; color: var(--text); line-height: 1.6; margin: 0; }
.quote footer { margin-top: auto; display: flex; align-items: center; gap: 14px; }
.avatar { flex-shrink: 0; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(150deg, var(--accent), var(--surface-2)); color: var(--text); font-family: var(--font-display); font-size: 1.2rem; border: 1px solid var(--line-strong); }
.quote .who { display: flex; flex-direction: column; }
.quote .who strong { font-weight: 600; color: var(--text); }
.quote .who span { font-size: var(--fs-small); color: var(--muted); }

/* ---------- Contato ---------- */
.contato { background: linear-gradient(180deg, var(--bg), #0A1216); }
.contato-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.contato-copy .section-lead { color: var(--muted); text-align: left; }
.contato-list { display: flex; flex-direction: column; gap: 13px; margin-top: 28px; }
.contato-list li { display: flex; align-items: center; gap: 13px; color: var(--text); }
.contato-list li span { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--accent); color: var(--ink); font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }

.contato-cta {
  background: var(--surface-2); border: 1px solid rgba(82,137,173,0.4); border-radius: var(--radius-xl);
  padding: clamp(30px, 4vw, 48px); box-shadow: var(--glow-accent); text-align: center;
}
.whats-badge { display: inline-grid; place-items: center; width: 70px; height: 70px; border-radius: 50%; background: rgba(37,211,102,0.14); color: var(--whats); margin-bottom: 20px; }
.contato-cta h3 { font-size: 1.5rem; color: var(--text); margin-bottom: 10px; }
.contato-cta > p { color: var(--muted); margin-bottom: 26px; max-width: 36ch; margin-inline: auto; }
.contato-cta .btn-whats { font-size: 1.06rem; min-height: 58px; }
.contato-alt { margin: 20px 0 0; font-size: var(--fs-small); color: var(--muted); }
.contato-alt a { color: var(--accent-br); font-weight: 600; }
.contato-alt a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer { background: #0A1216; border-top: 1px solid var(--line); color: var(--muted); padding-top: 60px; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr auto; gap: 44px; align-items: start; padding-bottom: 44px; }
.footer-logo { width: 140px; height: 140px; object-fit: contain; object-position: left center; }
.footer-brand p { margin-top: 14px; color: var(--muted); font-size: var(--fs-small); max-width: 34ch; }
.footer-nav { display: flex; flex-direction: column; gap: 12px; }
.footer-nav a { color: var(--muted); font-size: var(--fs-small); transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent-br); }
.footer-social { display: flex; gap: 12px; }
.social-btn { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: rgba(244,252,251,0.06); border: 1px solid var(--line); color: var(--text); transition: background 0.25s, transform 0.25s, color 0.25s, border-color 0.25s; }
.social-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--ink); transform: translateY(-3px); }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-block: 24px; border-top: 1px solid var(--line); font-size: var(--fs-small); color: var(--muted); opacity: 0.85; }
.footer-bottom p { margin: 0; }

/* =========================================================
   ANIMAÇÕES — "movimento que sussurra"
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-reveal-delay="1"] { transition-delay: 0.09s; }
.reveal[data-reveal-delay="2"] { transition-delay: 0.18s; }
.reveal[data-reveal-delay="3"] { transition-delay: 0.27s; }
.reveal[data-reveal-delay="4"] { transition-delay: 0.36s; }
/* Imagem: revela com wipe lateral em vez de subir */
.reveal-img { transform: none; clip-path: inset(0 14% 0 0); transition: opacity 0.9s var(--ease-out), clip-path 1.15s var(--ease-out); }
.reveal-img.is-visible { clip-path: inset(0 0 0 0); }

@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-4px); } 40% { opacity: 1; } 80%,100% { opacity: 0; transform: translateY(10px); } }

/* =========================================================
   RESPONSIVO — mobile projetado, não reduzido
   ========================================================= */
@media (max-width: 960px) {
  .grid-2 { grid-template-columns: 1fr; }
  .sobre-visual { max-width: 440px; margin-inline: auto; }
  .contato-inner { grid-template-columns: 1fr; }
  .contato-copy { text-align: center; }
  .contato-copy .eyebrow { justify-content: center; }
  .contato-copy .section-lead { text-align: center; }
  .contato-list { display: inline-flex; text-align: left; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Menu mobile */
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(82%, 330px); flex-direction: column;
    align-items: flex-start; justify-content: flex-start; gap: 6px; padding: 104px 34px 40px;
    background: var(--surface); border-left: 1px solid var(--line); box-shadow: var(--shadow-elevated);
    transform: translateX(100%); transition: transform 0.4s var(--ease-out); z-index: 90;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 13px 0; font-size: 1.15rem; }
  .nav-links a:not(.nav-cta)::after { display: none; }
  .nav-cta { text-align: center; margin-top: 14px; }
  .nav-toggle { display: flex; z-index: 100; }
  .brand { width: 72px; height: 72px; }
  .site-header.scrolled .brand { width: 60px; height: 60px; }

  /* Hero repensado para retrato: conteúdo ancorado embaixo, foto no topo */
  .hero { min-height: 94svh; align-items: flex-end; padding-top: 120px; padding-bottom: 64px; }
  .hero-slide { background-position: 72% center; }
  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(14,21,25,0.97) 0%, rgba(14,21,25,0.82) 32%, rgba(14,21,25,0.2) 70%, rgba(14,21,25,0.35) 100%);
  }
  .hero-title { font-size: clamp(2.9rem, 13vw, 4.2rem); }
  .hero-sub { font-size: 1.05rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { margin-top: 38px; padding-top: 24px; border-top: 1px solid var(--line); gap: 0; display: grid; grid-template-columns: repeat(3, 1fr); }
  .hero-stats li + li { padding-left: 16px; }
  .hero-stats strong { font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .hero-stats span { font-size: 0.78rem; }

  .cards-3, .quotes, .results-grid { grid-template-columns: 1fr; }
  .plan-card.featured { transform: none; }
  .plan-card.featured:hover { transform: translateY(-8px); }
  .body-lock { overflow: hidden; }
}

@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* ---------- Acessibilidade: movimento reduzido ---------- */
@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; }
  .reveal { opacity: 1; transform: none; }
  .reveal-img { clip-path: none; }
}
