@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Cormorant Garamond";
  src: url("../fonts/cormorant-700.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-300.ttf") format("truetype");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-400.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-500.ttf") format("truetype");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Jost";
  src: url("../fonts/jost-600.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  --sage: #6f8d72;
  --sage-dark: #4f6b52;
  --cream: #faf6ef;
  --cream-alt: #f2ece1;
  --ink: #2b2b26;
  --ink-soft: #5c5c54;
  --gold: #b9925a;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 20px 40px -20px rgba(43, 43, 38, 0.25);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.1; }
h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); line-height: 1.15; }
h3 { font-size: 1.4rem; margin-bottom: 10px; }

p { margin: 0 0 16px; color: var(--ink-soft); }

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

.eyebrow, .section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin-bottom: 14px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(111, 141, 114, 0.6);
}
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  border-color: var(--sage);
  color: var(--sage-dark);
}
.btn-outline:hover { background: var(--sage); color: var(--white); transform: translateY(-2px); }

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(43, 43, 38, 0.08);
}

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

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
}
.logo span { color: var(--sage-dark); }

.nav {
  display: flex;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav a:hover { color: var(--sage-dark); }

.header-cta { white-space: nowrap; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
}

/* Hero */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 84vh;
  padding: 80px 0;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(111,141,114,0.18), transparent 55%);
  z-index: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-photo {
  position: absolute;
  inset: -10% 0;
  background: url("../images/hero.jpg") center 42% / cover no-repeat;
  transform-origin: center;
  animation: kenburns 24s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(250, 246, 239, 0.96) 0%,
      rgba(250, 246, 239, 0.82) 38%,
      rgba(250, 246, 239, 0.45) 68%,
      rgba(250, 246, 239, 0.15) 100%),
    linear-gradient(0deg, rgba(79, 107, 82, 0.10), rgba(79, 107, 82, 0.10));
}

@keyframes kenburns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.16) translate(-1.5%, -1%); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo { animation: none; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

/* Entrada animada do hero */
.js-anim .hero-inner > * {
  opacity: 0;
  transform: translateY(26px);
  animation: heroIn 0.9s cubic-bezier(0.2, 0.6, 0.2, 1) forwards;
}
.js-anim .hero-inner .eyebrow { animation-delay: 0.15s; }
.js-anim .hero-inner h1 { animation-delay: 0.3s; }
.js-anim .hero-inner .lead { animation-delay: 0.5s; }
.js-anim .hero-inner .hero-actions { animation-delay: 0.7s; }
.js-anim .hero-inner .hero-trust { animation-delay: 0.9s; }

@keyframes heroIn {
  to { opacity: 1; transform: none; }
}

/* Indicador "role a página" */
.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 26px;
  height: 42px;
  border: 2px solid rgba(79, 107, 82, 0.55);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  animation: cueFade 1s ease 1.2s both;
}
.scroll-cue span {
  width: 4px;
  height: 8px;
  margin-top: 7px;
  background: var(--sage-dark);
  border-radius: 2px;
  animation: scrollDot 1.7s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  60% { opacity: 1; transform: translateY(13px); }
  100% { opacity: 0; transform: translateY(13px); }
}
@keyframes cueFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .js-anim .hero-inner > * { opacity: 1; transform: none; animation: none; }
  .scroll-cue, .scroll-cue span { animation: none; }
}
.hero .lead {
  font-size: 1.15rem;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-image {
  margin: 60px auto 0;
  max-width: 1140px;
  height: 380px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cream-alt), #e3ddce);
  box-shadow: var(--shadow);
}

/* Sections generic */

section { padding: 90px 0; }
.section-lead { max-width: 620px; }
.section-cta { margin-top: 40px; text-align: center; }
.section-cta-note {
  max-width: 520px;
  margin: 0 auto 20px;
  color: var(--ink-soft);
}

.section-head { max-width: 640px; margin-bottom: 40px; }

/* O que é o Pilates */

.o-que-e-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.pilares {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pilares li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--sage);
}
.pilar-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.pilares h3 { margin: 6px 0 6px; }
.pilares p { margin: 0; font-size: 0.96rem; }

/* Jornada — passos */

.jornada { background: var(--white); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.step h3 { margin-bottom: 8px; }
.step p { margin: 0; font-size: 0.94rem; }

/* Benefícios — pra quem é */

.beneficios { background: var(--cream-alt); }
.beneficios-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.beneficios-image {
  height: 460px;
  border-radius: var(--radius);
  background: url("../images/para-quem-e.webp") center center / cover no-repeat, var(--cream-alt);
  box-shadow: var(--shadow);
}
.beneficios-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.beneficios-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 500;
}
.beneficios-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: inset 0 0 0 3px var(--cream-alt);
}

/* FAQ */

.faq-list {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 4px 28px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--sage-dark);
  font-size: 1.5rem;
  font-family: var(--font-body);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 20px; }

.servicos { background: var(--white); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
}
.card-icon {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

/* Historia */

.historia-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.historia-image {
  margin: 0;
}
.historia-photo {
  position: relative;
  height: 540px;
  border-radius: var(--radius);
  background: linear-gradient(180deg,
    #eef2e8 0%,
    #eef2e8 72%,
    #d3ddc9 86%,
    #b9cbad 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.historia-photo img {
  height: 94%;
  width: auto;
  max-width: 96%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.03) brightness(1.02);
}
.historia-image figcaption {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--sage-dark);
}

/* Contato */

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
.contato-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contato-label {
  display: block;
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
  margin-bottom: 4px;
}
.contato-list a:hover { color: var(--sage-dark); }
.agendamento-note {
  font-size: 0.92rem;
  font-style: italic;
}
.contato-map {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* Footer */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 32px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 0.85rem;
}
.footer-inner p { margin: 0; color: inherit; }
.footer-inner a:hover { color: var(--white); }
.footer-mark {
  width: 26px;
  height: 26px;
  color: var(--sage);
  opacity: 0.9;
}

/* WhatsApp float */

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--sage);
  color: var(--white);
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 14px 28px -10px rgba(43,43,38,0.4);
  transition: background 0.2s ease, transform 0.2s ease;
}
.whatsapp-float:hover { background: var(--sage-dark); transform: translateY(-2px); }
.wf-icon {
  width: 19px;
  height: 19px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Hero trust strip */

.hero-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 0;
  margin: 34px 0 0;
}
.hero-trust li {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.3;
}
.hero-trust strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--sage-dark);
}

/* Diferenciais */

.diferenciais { background: linear-gradient(180deg, #eef2e8, #e5ecdf); }
.dif-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.dif-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--sage);
}
.dif-item h3 { margin-bottom: 10px; }
.dif-item p { margin: 0; font-size: 0.95rem; }

/* Depoimentos */

.depoimentos { background: var(--white); }
/* Galeria de prova social */
.prova-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 52px;
}
.pg-item {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pg-feature {
  grid-column: span 2;
  grid-row: span 2;
}
.pg-wide { grid-column: span 2; }
.pg-feature figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px 22px 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.25rem;
  background: linear-gradient(0deg, rgba(43, 43, 38, 0.72), transparent);
}

.depo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.depo-card {
  margin: 0;
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.depo-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.depo-card blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
}
.depo-card figcaption { color: var(--ink-soft); }
.depo-card figcaption strong {
  display: block;
  color: var(--sage-dark);
  font-size: 1rem;
}
.depo-card figcaption span { font-size: 0.85rem; }

/* Números */

.numeros {
  background: linear-gradient(135deg, var(--sage-dark), #3f5742);
  color: var(--white);
}
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.4rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.num-item p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

/* Nota de serviços */

.servicos-nota {
  text-align: center;
  max-width: 660px;
  margin: 44px auto 0;
  color: var(--ink-soft);
}
.servicos-nota strong { color: var(--sage-dark); }

/* Marca — folha Pono (assinatura visual recorrente) */

.logo-mark, .mantra-leaf, .footer-mark, .invest-watermark {
  flex-shrink: 0;
}
.leaf-stem {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.3;
  stroke-linecap: round;
  opacity: 0.7;
}
.leaf-a { fill: currentColor; }
.leaf-b { fill: currentColor; opacity: 0.62; }

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 26px;
  height: 26px;
  color: var(--sage);
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--ink);
}
.logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-top: 3px;
}

/* Faixa "pono" — âncora de marca */

.mantra {
  background: var(--cream-alt);
  padding: 40px 0;
  border-top: 1px solid rgba(43, 43, 38, 0.06);
  border-bottom: 1px solid rgba(43, 43, 38, 0.06);
}
.mantra-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  text-align: center;
}
.mantra-leaf { width: 30px; height: 30px; color: var(--sage); }
.mantra-word {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  font-style: italic;
  color: var(--sage-dark);
  margin: 0;
  line-height: 1;
}
.mantra-meaning {
  margin: 0;
  max-width: 480px;
  font-size: 0.98rem;
  color: var(--ink-soft);
  text-align: left;
}
.mantra-meaning strong { color: var(--ink); font-weight: 500; }

/* Preço no hero */

.hero-price {
  margin: 20px 0 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  max-width: 470px;
}

/* Notas discretas que conduzem ao CTA */

.hero-price a,
.cta-note a,
.section-cta-note a,
.faq-item a {
  color: var(--sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(79, 107, 82, 0.35);
  transition: text-decoration-color 0.2s ease;
}
.hero-price a:hover,
.cta-note a:hover,
.section-cta-note a:hover,
.faq-item a:hover { text-decoration-color: var(--sage-dark); }

.cta-note {
  margin: 14px 0 0;
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.section-cta-note { font-size: 0.95rem; }

/* Investimento */

.section-sub {
  margin: 4px 0 0;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.investimento { background: var(--cream-alt); }

.invest-inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: start;
}

.invest-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(111, 141, 114, 0.28);
  border-radius: var(--radius);
  padding: 40px 36px 34px;
  box-shadow: var(--shadow);
}
.invest-watermark {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 130px;
  height: 130px;
  color: var(--sage);
  opacity: 0.07;
  pointer-events: none;
}
.invest-tag {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--sage-dark);
  margin: 0 0 10px;
}
.invest-price {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 4.6rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 0.95;
  margin: 0;
}
.invest-currency {
  font-size: 0.4em;
  vertical-align: 0.55em;
  margin-right: 6px;
  color: var(--sage-dark);
}
.invest-price-note {
  margin: 10px 0 26px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.invest-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
  border-top: 1px solid rgba(43, 43, 38, 0.08);
  padding-top: 26px;
}
.invest-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.45;
}
.invest-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 7px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(42deg);
}
.btn-block { display: flex; width: 100%; }
.invest-micro {
  margin: 14px 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
}

.invest-text h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.invest-text h3 + p { margin-bottom: 26px; }
.invest-points {
  list-style: none;
  padding: 22px 0 0;
  margin: 4px 0 0;
  border-top: 1px solid rgba(43, 43, 38, 0.1);
  display: grid;
  gap: 10px;
}
.invest-points li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.invest-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--sage);
}

/* Micro-interações (hover) */

.card, .step, .dif-item, .depo-card, .pilares li {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover, .step:hover, .dif-item:hover, .depo-card:hover, .pilares li:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 52px -26px rgba(43, 43, 38, 0.4);
}
.pg-item img { transition: transform 0.6s ease; }
.pg-item:hover img { transform: scale(1.05); }
.btn { will-change: transform; }

/* Reveal on scroll */

.js-anim .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
  will-change: opacity, transform;
}
.js-anim .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Responsive */

@media (max-width: 900px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid rgba(43, 43, 38, 0.08);
  }
  .nav.nav-open { display: flex; }
  .nav a { padding: 12px 0; width: 100%; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .cards-grid { grid-template-columns: 1fr; }
  .o-que-e-inner { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .beneficios-inner { grid-template-columns: 1fr; gap: 40px; }
  .beneficios-image { order: -1; height: 320px; }
  .historia-inner { grid-template-columns: 1fr; }
  .historia-image { order: -1; }
  .historia-photo { height: 460px; max-width: 420px; margin: 0 auto; }
  .contato-inner { grid-template-columns: 1fr; }
  .contato-map { min-height: 260px; }
  .dif-grid { grid-template-columns: 1fr 1fr; }
  .depo-grid { grid-template-columns: 1fr; }
  .invest-inner { grid-template-columns: 1fr; gap: 44px; }
  .mantra-meaning { text-align: center; }
  .prova-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .hero { min-height: 78vh; }
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(250, 246, 239, 0.90) 0%,
        rgba(250, 246, 239, 0.80) 55%,
        rgba(250, 246, 239, 0.60) 100%);
  }
}

@media (max-width: 480px) {
  .header-inner { padding: 14px 20px; }
  section { padding: 64px 0; }
  .hero { padding: 48px 0; min-height: 74vh; }
  .steps-grid { grid-template-columns: 1fr; }
  .beneficios-list { grid-template-columns: 1fr; }
  .dif-grid { grid-template-columns: 1fr; }
  .hero-trust { gap: 22px; }
  .prova-gallery { grid-auto-rows: 130px; }
  .numeros-grid { gap: 24px 16px; }
  .scroll-cue { display: none; }

  /* Touch-friendly: CTAs ocupam a largura no celular */
  .hero-actions { width: 100%; }
  .hero-actions .btn { width: 100%; }
  .btn { padding: 15px 26px; }

  /* Respiro melhor no texto do hero */
  .hero .lead { font-size: 1.08rem; }
  .historia-photo { height: 420px; }

  /* CTA fixo vira barra de largura total — principal via de conversão no celular */
  .whatsapp-float {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 12px 18px;
  }
  body { padding-bottom: 92px; }

  .mantra { padding: 32px 0; }
  .mantra-word { font-size: 1.8rem; }
  .invest-card { padding: 32px 24px 28px; }
  .invest-list { gap: 10px; }
}
