:root {
  --ink: #071719;
  --ink-soft: #0e272b;
  --paper: #f5f1e8;
  --white: #fff;
  --muted: #6f6a60;
  --line: rgba(17, 17, 15, 0.13);
  --line-light: rgba(255, 255, 255, 0.1);
  --orange: #087b84;
  --orange-soft: #0b9aa2;
  --orange-dark: #0e272b;
  /* o teal de marca dá 4.46:1 sobre o papel e 3.65:1 sobre o ink — os dois abaixo
     do mínimo AA para texto pequeno. Blocos claros usam um tom mais fundo, blocos
     escuros herdam o soft; fundos e botões seguem com --orange puro. */
  --accent-text: #077179;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(13, 13, 11, 0.14);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  /* granulado tileável: tira o "chapado" dos blocos escuros sem pedir imagem */
  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23g)' opacity='.085'/%3E%3C/svg%3E");
  interpolate-size: allow-keywords;  /* libera transição de height:auto no FAQ */
}

* { box-sizing: border-box; }
html { scrollbar-color: rgba(8,123,132,.55) transparent; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Outfit, Arial, sans-serif;
  font-synthesis-weight: none;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
picture { display: contents; }
img { display: block; width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.06; letter-spacing: -0.035em; text-wrap: balance; }
h1 { max-width: 15ch; font-size: clamp(2.6rem, 5.4vw, 5.1rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(1.95rem, 3.6vw, 3.5rem); }
h3 { font-size: 1.2rem; }
p { color: var(--muted); text-wrap: pretty; }
::selection { color: #fff; background: var(--orange); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 6px; }
/* alvo de âncora recebe foco por JS: contornar a seção inteira só faria ruído */
main[tabindex="-1"]:focus-visible, section[tabindex="-1"]:focus-visible { outline: none; }
.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--ink);
  font-size: .85rem;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .3s var(--ease-out);
}
.skip-link:focus-visible { transform: none; }

.container { width: min(1180px, 100% - clamp(32px, 6vw, 88px)); margin-inline: auto; }
section { padding: clamp(64px, 7vw, 104px) 0; }
/* sem isto o header fixo cobre o topo da seção quando o JS de scroll não roda */
[id] { scroll-margin-top: 88px; }
.section-dark, .section-dark-soft {
  position: relative;
  color: var(--white);
  background-color: var(--ink);
  background-image: var(--grain);
}
.section-dark-soft { background-color: var(--ink-soft); }
.section-dark p, .section-dark-soft p { color: #b9b8b0; }
.header, .section-dark, .section-dark-soft, .pillars, .solution-panel, .footer { --accent-text: var(--orange-soft); }
.eyebrow, .mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: var(--accent-text);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 22px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: .55;
}
.eyebrow.orange { color: var(--accent-text); }
.mini-tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: dot-pulse 2.4s ease-out infinite;
}
.section-heading { max-width: 830px; margin-bottom: 54px; }
.section-heading p { max-width: 650px; font-size: 1.08rem; }
.section-intro p { max-width: 580px; }

.header {
  position: sticky;
  z-index: 50;
  top: 0;
  color: #fff;
  background-color: var(--ink);
  background-image:
    radial-gradient(72% 440px at 78% calc(100% + 64px), rgba(8,123,132,.16), transparent 62%),
    var(--grain);
  box-shadow: none;
  transform: translateZ(0);
  transition: box-shadow .28s ease;
}
.header.scrolled { box-shadow: inset 0 -1px rgba(255,255,255,.12), 0 12px 32px rgba(0,0,0,.32); }
.header-inner { display: flex; height: 80px; align-items: center; gap: 28px; transition: height .28s var(--ease-out); }
.header.scrolled .header-inner { height: 66px; }
/* barra de progresso puro CSS: sem timeline suportada ela só fica invisível */
.scroll-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), #5fd2d7);
  transform: scaleX(0);
  transform-origin: 0 50%;
}
@supports (animation-timeline: scroll()) {
  .scroll-progress { animation: progress linear both; animation-timeline: scroll(root block); }
}
.brand { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.brand-symbol {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #0b9aa2, var(--orange) 55%, var(--orange-dark));
  box-shadow: 0 8px 22px rgba(8,123,132,.32), inset 0 1px 0 rgba(255,255,255,.35);
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: -.02em;
  transition: transform .28s var(--ease-out);
}
.header.scrolled .brand-symbol { transform: scale(.92); }
.brand:hover .brand-symbol { transform: rotate(-6deg) scale(1.05); }
.brand-text { display: grid; line-height: 1.1; }
.brand-text small { margin-bottom: 3px; color: #a5a49a; font-size: .62rem; letter-spacing: .06em; }
.brand-text strong { font-size: .95rem; letter-spacing: -.01em; }
.nav { display: flex; gap: 26px; color: #d7d6cf; font-size: .83rem; }
.nav a { position: relative; padding: 4px 0; transition: color .25s ease; }
.nav a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: 100% 50%;
  transition: transform .35s var(--ease-out);
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); transform-origin: 0 50%; }
.mobile-nav a.active { color: var(--accent-text); }
.nav-cta {
  padding: 12px 19px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 10px 24px rgba(8,123,132,.28);
  font-size: .8rem;
  font-weight: 800;
  transition: transform .3s var(--ease-out), background .3s ease, box-shadow .3s ease;
}
.nav-cta:hover { background: var(--orange-dark); box-shadow: 0 14px 30px rgba(8,123,132,.4); transform: translateY(-2px); }
.menu-btn, .mobile-nav { display: none; }

/* o brilho laranja sangra para fora da coluna: prende aqui */
.hero { overflow: hidden; padding-top: clamp(56px, 7vw, 96px); }
.hero::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(72% 55% at 78% 8%, rgba(8,123,132,.16), transparent 62%);
  content: "";
  pointer-events: none;
}
.hero > .container { position: relative; }
.hero-grid, .about-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(44px, 5vw, 80px); }
.hero h1 { margin-bottom: 28px; }
.hero h1 em { position: relative; color: var(--accent-text); font-style: normal; }
.hero-lead { max-width: 690px; font-size: clamp(1.1rem, 2vw, 1.35rem); color: #cfcec6; }
.hero-lead strong { color: #fff; }
.hero-support { max-width: 640px; font-size: .95rem; }
.hero-bullets { display: grid; gap: 10px; padding: 0; margin: 26px 0 0; list-style: none; }
.hero-bullets li { display: grid; grid-template-columns: 20px 1fr; gap: 10px; color: #cfcec6; font-size: .93rem; }
.hero-bullets li::before { color: var(--accent-text); content: "✓"; font-weight: 900; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 14px; }

/* microcopy de reforço logo abaixo de cada CTA */
.cta-note { display: block; color: #98978f; font-size: .8rem; }
.section-dark .cta-note, .section-dark-soft .cta-note { color: #a9a89f; }
.section-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 18px; margin-top: 34px; }
.section-cta.center { justify-content: center; margin-top: 46px; text-align: center; }
.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  color: var(--accent-text);
  font-size: .9rem;
  font-weight: 800;
  border-bottom: 1px solid rgba(8,123,132,.35);
  padding-bottom: 3px;
  transition: gap .3s var(--ease-out), border-color .3s ease;
}
.text-cta:hover { gap: 14px; border-color: var(--orange); }
.btn {
  position: relative;
  display: inline-flex;
  overflow: hidden;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .01em;
  transition: transform .25s var(--ease-out), background .25s ease, box-shadow .35s ease, border-color .25s ease;
}
/* varredura de brilho no hover: pseudo em vez de gradiente animado */
.btn::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 38%, rgba(255,255,255,.32) 50%, transparent 62%);
  content: "";
  transform: translateX(-130%);
  transition: transform .75s var(--ease-out);
}
.btn:hover::after { transform: translateX(130%); }
.btn > * { position: relative; z-index: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, #087b84, var(--orange) 55%, var(--orange-dark));
  box-shadow: 0 16px 38px rgba(8,123,132,.3), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn-primary:hover { box-shadow: 0 22px 48px rgba(8,123,132,.42), inset 0 1px 0 rgba(255,255,255,.28); }
.btn-ghost { border-color: rgba(255,255,255,.22); color: #fff; }
.btn-ghost:hover { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.07); }
.btn.full { width: 100%; }
.hero-audience { display: flex; align-items: center; gap: 10px; margin: 26px 0 0; color: #a9a89f; font-size: .83rem; }
.hero-audience::before { flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); content: ""; }
.hero-media { position: relative; isolation: isolate; }
/* o gradiente radial já entrega a borda suave: filter: blur() aqui repintava
   uma camada gigante a cada frame do parallax e derrubava o fps */
.hero-media::before {
  position: absolute;
  z-index: -1;
  inset: -12% -10% -6%;
  border-radius: 50%;
  background: radial-gradient(52% 46% at 50% 45%, rgba(8,123,132,.4), rgba(8,123,132,.14) 55%, transparent 78%);
  content: "";
}

/* sem moldura: a foto se dissolve no fundo pela máscara, então nada de
   borda, raio ou sombra — qualquer um deles redesenharia o retângulo */
.portrait-frame, .about-photo {
  position: relative;
  overflow: hidden;  /* a foto é ampliada p/ o parallax: sem isso ela vaza da máscara */
  margin: 0;
  aspect-ratio: 4 / 5;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  /* Curva de opacidade em vários estágios: mantém o centro nítido e dissolve
     a foto gradualmente, sem denunciar o retângulo nas laterais ou nos cantos. */
  -webkit-mask-image:
    linear-gradient(to right,
      transparent 0%, rgba(0,0,0,.06) 3%, rgba(0,0,0,.22) 7%, rgba(0,0,0,.5) 12%,
      rgba(0,0,0,.8) 17%, rgba(0,0,0,.96) 23%, #000 29%, #000 71%,
      rgba(0,0,0,.96) 77%, rgba(0,0,0,.8) 83%, rgba(0,0,0,.5) 88%,
      rgba(0,0,0,.22) 93%, rgba(0,0,0,.06) 97%, transparent 100%),
    linear-gradient(to bottom,
      transparent 0%, rgba(0,0,0,.06) 3%, rgba(0,0,0,.2) 7%, rgba(0,0,0,.48) 12%,
      rgba(0,0,0,.78) 17%, rgba(0,0,0,.95) 22%, #000 27%, #000 65%,
      rgba(0,0,0,.96) 71%, rgba(0,0,0,.82) 78%, rgba(0,0,0,.56) 85%,
      rgba(0,0,0,.28) 91%, rgba(0,0,0,.08) 96%, transparent 100%);
  mask-image:
    linear-gradient(to right,
      transparent 0%, rgba(0,0,0,.06) 3%, rgba(0,0,0,.22) 7%, rgba(0,0,0,.5) 12%,
      rgba(0,0,0,.8) 17%, rgba(0,0,0,.96) 23%, #000 29%, #000 71%,
      rgba(0,0,0,.96) 77%, rgba(0,0,0,.8) 83%, rgba(0,0,0,.5) 88%,
      rgba(0,0,0,.22) 93%, rgba(0,0,0,.06) 97%, transparent 100%),
    linear-gradient(to bottom,
      transparent 0%, rgba(0,0,0,.06) 3%, rgba(0,0,0,.2) 7%, rgba(0,0,0,.48) 12%,
      rgba(0,0,0,.78) 17%, rgba(0,0,0,.95) 22%, #000 27%, #000 65%,
      rgba(0,0,0,.96) 71%, rgba(0,0,0,.82) 78%, rgba(0,0,0,.56) 85%,
      rgba(0,0,0,.28) 91%, rgba(0,0,0,.08) 96%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}
.portrait-frame img, .about-photo img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  transform: scale(1.12);
}
/* parallax nativo por scroll timeline; sem suporte, a foto só fica estática */
@supports (animation-timeline: view()) {
  .portrait-frame img, .about-photo img {
    animation: photo-drift linear both;
    animation-timeline: view();
    animation-range: entry 0% exit 100%;
  }
}

.floating-card {
  position: absolute;
  z-index: 3;
  display: grid;
  padding: 15px 19px;
  border: 1px solid rgba(17,17,15,.06);
  border-radius: 16px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow);
  /* sem backdrop-filter: o fundo é 96% opaco (o blur nem aparecia) e o card
     flutua em loop — recompor o backdrop a cada frame travava a hero inteira */
}
.floating-card strong { font-size: 1rem; letter-spacing: -.02em; }
.floating-card span { color: var(--muted); font-size: .68rem; letter-spacing: .02em; }
.card-one { top: 8%; left: clamp(-34px, -2.4vw, -14px); animation: floaty 6s ease-in-out infinite; }
.card-two { right: clamp(-28px, -2vw, -12px); bottom: 8%; animation: floaty 7s ease-in-out -2.5s infinite; }

.pillars { padding: 0; background-color: var(--ink); background-image: var(--grain); }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.pillar { position: relative; min-height: 280px; padding: 48px; color: #fff; border: 1px solid var(--line-light); }
.pillar p { color: #a5a49a; font-size: .92rem; }
.pillar h2 { margin-bottom: 14px; font-size: 1.45rem; }
.pillar-orange { color: #fff; background: linear-gradient(160deg, #087b84, var(--orange) 55%, var(--orange-dark)); }
.pillar-orange p { color: #fff; }  /* 84% de branco sobre o teal dava 3.2:1 */
.icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
  place-items: center;
  border-radius: 14px;
  color: var(--accent-text);
  background: rgba(8,123,132,.12);
  transition: transform .4s var(--ease-out), background .4s ease;
}
.icon svg { width: 22px; height: 22px; }
.pillar-orange .icon { color: #fff; background: rgba(255,255,255,.18); }
.pillar:hover .icon { transform: translateY(-4px) rotate(-4deg); }

.problem-grid, .faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(48px, 7vw, 100px); }
.problem-list { border-top: 1px solid var(--line); }
.problem-item { display: grid; grid-template-columns: 60px 1fr; gap: 15px; padding: 26px 0; border-bottom: 1px solid var(--line); }
.problem-item span { color: var(--accent-text); font-weight: 800; font-variant-numeric: tabular-nums; }
.problem-item p { margin: 0; }

.solution-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  margin-top: clamp(48px, 6vw, 76px);
  padding: clamp(32px, 5vw, 60px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  color: #fff;
  background-color: var(--ink-soft);
  background-image: radial-gradient(circle at 90% 10%, rgba(8,123,132,.2), transparent 42%), var(--grain);
  box-shadow: 0 28px 70px -48px rgba(7,23,25,.78);
}
.solution-copy h2 { max-width: 13ch; }
.solution-copy p { max-width: 62ch; margin-bottom: 0; color: #b9b8b0; }
.solution-action .check-grid { margin-top: 0; }

.about-photo img { object-position: 55% 26%; }
.check-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px; }
.check-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.03);
  font-size: .85rem;
  font-weight: 700;
  transition: border-color .3s ease, background .3s ease, transform .3s var(--ease-out);
}
.check-grid span::before { color: var(--accent-text); content: "✓"; font-weight: 900; }
.check-grid span:hover { border-color: rgba(8,123,132,.5); background: rgba(8,123,132,.07); transform: translateY(-3px); }

.routine-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.routine-card {
  position: relative;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.55);
}
.routine-card b { color: var(--accent-text); font-variant-numeric: tabular-nums; }
.routine-card h3 { margin-bottom: 10px; font-size: 1.1rem; }
.routine-card p { margin-bottom: 0; font-size: .88rem; }

.daily-routine { background: #fff; }
.routine-card b { display: block; margin-bottom: 44px; font-size: 1.8rem; letter-spacing: -.03em; }

/* a linha vive em cada passo, não no container: com 2 fileiras a de baixo some */
.path-timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0 20px; }
.path-step { position: relative; padding: 40px 0 0; border-top: 1px solid var(--line); transition: border-color .35s ease; }
.path-step::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transition: transform .35s var(--ease-out), box-shadow .35s ease;
}
.path-step:hover { border-color: rgba(8,123,132,.5); }
.path-step:hover::before { box-shadow: 0 0 0 6px rgba(8,123,132,.16); transform: scale(1.25); }
.path-step span { color: var(--accent-text); font-size: .75rem; font-weight: 800; font-variant-numeric: tabular-nums; }
.path-step h3 { margin: 6px 0 10px; }
.path-step p { font-size: .84rem; }
.path-step small { display: block; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font-size: .76rem; line-height: 1.45; }
.path-step small strong { display: block; margin-bottom: 3px; color: var(--accent-text); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.about { background: #fff; }
.about-stats { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 40px; }
.about-stats span { display: grid; padding: 16px 22px; border: 1px solid var(--line); border-radius: 14px; }
.about-stats strong { font-size: 1.15rem; letter-spacing: -.02em; }
.about-stats small { color: var(--muted); font-size: .76rem; }

.final-cta { text-align: center; }
.final-cta-inner { max-width: 760px; margin-inline: auto; }
.final-cta h2 { margin-bottom: 18px; }
.final-cta p { margin-bottom: 28px; font-size: 1.05rem; }
.final-cta .btn { margin-bottom: 14px; }
.final-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 0; margin: 0 0 32px; list-style: none; text-align: left; }
.final-steps li { display: grid; grid-template-columns: 28px 1fr; gap: 10px; align-items: start; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.14); }
.final-steps b { color: var(--orange-soft); font-size: .72rem; font-variant-numeric: tabular-nums; }
.final-steps span { color: #cfcec6; font-size: .82rem; line-height: 1.35; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  cursor: pointer;
  font-weight: 800;
  list-style: none;  /* troca o triângulo padrão pelo + que gira abaixo */
  transition: color .25s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  display: grid;
  flex: none;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-text);
  content: "+";
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 0;
  transition: transform .35s var(--ease-out), border-color .3s ease, background .3s ease;
}
.faq-list summary:hover::after { border-color: rgba(8,123,132,.5); background: rgba(8,123,132,.08); }
.faq-list details[open] summary::after { border-color: rgba(8,123,132,.5); background: rgba(8,123,132,.08); transform: rotate(135deg); }
.faq-list summary:hover { color: var(--accent-text); }
.faq-list details p { max-width: 68ch; padding-bottom: 24px; margin: 0; }
/* abertura animada nativa; navegador sem ::details-content ignora e abre seco */
.faq-list details::details-content {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height .4s var(--ease-out), opacity .3s ease, content-visibility .4s allow-discrete;
  content-visibility: hidden;
}
.faq-list details[open]::details-content { height: auto; opacity: 1; content-visibility: visible; }

/* folga extra embaixo: o botão fixo do WhatsApp cobriria os links do rodapé */
.footer { padding: 40px 0 104px; color: #fff; background: #071719; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; }
.footer p { margin: 0; color: #8f8e87; font-size: .8rem; }
.footer strong { color: #d9d8d1; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 0 22px; align-items: center; color: #8f8e87; font-size: .8rem; }
/* o padding é o alvo de toque: sem ele o link fica com 20px de altura */
.footer-nav a { padding: 8px 0; transition: color .25s ease; }
.footer-nav a:hover { color: var(--accent-text); }
/* botão com rótulo: o ícone sozinho converte menos que o convite escrito */
.whatsapp-float {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  color: #fff;
  /* verde WhatsApp em tom mais fundo: o original deixava o rótulo em 2.7:1 */
  background: linear-gradient(150deg, #0f8547, #0c7a3e 55%, #0a6634);
  box-shadow: 0 14px 34px rgba(0,0,0,.28);
  font-size: .85rem;
  font-weight: 800;
  animation: pulse-ring 2.8s ease-out infinite;
  transition: transform .3s var(--ease-out), opacity .3s ease;
}
/* no hero ela cobria o CTA primario (390x844); volta assim que ele sai da tela */
.whatsapp-float.is-hidden { opacity: 0; pointer-events: none; transform: translateY(130%); }
.whatsapp-float svg { flex: none; width: 24px; height: 24px; }
.whatsapp-float:hover { transform: translateY(-2px) scale(1.03); }

/* sem filter: blur() no reveal — borrar um bloco inteiro repinta a cada frame,
   o que fazia o fade parecer lento e travado mesmo em máquina boa */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
}
.motion-ready .reveal { opacity: 0; transform: translate3d(0, 22px, 0); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

@keyframes progress { to { transform: scaleX(1); } }
@keyframes photo-drift {
  from { transform: scale(1.12) translate3d(0, -3%, 0); }
  to { transform: scale(1.12) translate3d(0, 3%, 0); }
}
@keyframes floaty {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -16px, 0); }
}
@keyframes dot-pulse {
  0% { box-shadow: 0 0 0 0 rgba(8,123,132,.6); }
  70% { box-shadow: 0 0 0 10px rgba(8,123,132,0); }
  100% { box-shadow: 0 0 0 0 rgba(8,123,132,0); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 14px 34px rgba(0,0,0,.28), 0 0 0 0 rgba(32,182,90,.5); }
  70% { box-shadow: 0 14px 34px rgba(0,0,0,.28), 0 0 0 16px rgba(32,182,90,0); }
  100% { box-shadow: 0 14px 34px rgba(0,0,0,.28), 0 0 0 0 rgba(32,182,90,0); }
}

/* o que incomoda de verdade é o movimento que nunca para: só os loops respeitam
   o ajuste do sistema. Reveals, parallax e scroll suave seguem para todos. */
@media (prefers-reduced-motion: reduce) {
  .floating-card, .whatsapp-float, .mini-tag span { animation: none; }
}

/* estes cards também são .reveal: a transição precisa cobrir os dois estados */
.routine-card, .pillar {
  transition: opacity .45s var(--ease-out), transform .42s var(--ease-out), border-color .35s ease, background .35s ease, box-shadow .35s ease;
}
.routine-card:hover { border-color: rgba(8,123,132,.45); background: #fff; box-shadow: 0 24px 50px -30px rgba(17,17,15,.4); transform: translateY(-6px); }
.pillar:hover { background: rgba(255,255,255,.045); }
.pillar-orange:hover { background: linear-gradient(160deg, var(--orange), var(--orange-dark)); }
.floating-card { transition: transform .3s var(--ease-out), box-shadow .3s ease; }
.problem-item { transition: color .3s ease, transform .4s var(--ease-out), border-color .3s ease; }
.problem-item:hover { border-color: rgba(8,123,132,.4); transform: translateX(6px); }
.about-stats span { transition: border-color .3s ease, transform .3s var(--ease-out); }
.about-stats span:hover { border-color: rgba(8,123,132,.45); transform: translateY(-3px); }

/* faixa em que 4/5 colunas ficam ilegíveis, mas 2 ainda cabem */
@media (max-width: 1080px) {
  .problem-grid, .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .solution-panel { grid-template-columns: 1fr; }
  .pillars-grid, .routine-grid { grid-template-columns: 1fr 1fr; }
  .pillar-orange { grid-column: 1 / -1; }  /* senão sobra meia célula vazia */
  .path-timeline { grid-template-columns: repeat(3, 1fr); gap: 34px 20px; }
}

@media (max-width: 900px) {
  .hero-grid, .about-grid { grid-template-columns: 1fr; }
  .hero-media, .about-photo { width: min(480px, 100%); margin-inline: auto; }
  .desktop-nav, .nav-cta { display: none; }
  .menu-btn { display: grid; width: 44px; height: 44px; place-content: center; gap: 4px; border: 0; border-radius: 50%; background: rgba(255,255,255,.09); cursor: pointer; transition: background .3s ease; }
  .menu-btn:hover { background: rgba(255,255,255,.16); }
  .menu-btn span { display: block; width: 18px; height: 2px; background: #fff; transition: transform .35s var(--ease-out), opacity .2s ease; }
  .menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .mobile-nav.open { display: grid; padding: 10px 20px 24px; gap: 4px; border-top: 1px solid var(--line-light); font-weight: 600; }
  .mobile-nav a { padding: 9px 0; }  /* 26px de alvo vira 44px sem mudar o ritmo da lista */
}

@media (max-width: 640px) {
  .hero-actions .btn, .section-cta .btn, .final-cta .btn { width: 100%; }
  .section-cta { margin-top: 30px; }
  .pillars-grid, .routine-grid, .check-grid, .final-steps { grid-template-columns: 1fr; }
  .solution-panel { padding: 28px 22px; }
  .pillar { min-height: auto; padding: 32px 26px; }
  .icon { margin-bottom: 22px; }
  .routine-card b { margin-bottom: 18px; }
  /* sobre a foto os cards cobrem o rosto: viram uma linha abaixo dela */
  .hero-media { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .portrait-frame { grid-column: 1 / -1; }
  .floating-card { position: static; padding: 13px 15px; animation: none; }
  .path-timeline { grid-template-columns: 1fr; gap: 24px; }
  .path-step { padding: 0 0 0 30px; border-top: 0; border-left: 1px solid var(--line); }
  .path-step::before { top: 4px; left: -6px; }
  .about-stats { gap: 10px; }
  .footer-inner { display: grid; }
  /* no celular vira barra de largura total: alvo maior, CTA sempre visível */
  .whatsapp-float { right: 14px; bottom: 14px; left: 14px; justify-content: center; padding: 17px 20px; }
}
