/* =========================================================
   Leonardo Lima — Psicólogo Clínico
   Estilo único, sem framework. Paleta "Serene Balance".
   Breakpoints: md >= 768px, lg >= 1024px, sm >= 640px
   ========================================================= */

:root {
  --background: #fbf9f6;
  --foreground: #1b1c1a;
  --primary: #58632d;          /* sage-deep / oliva */
  --primary-foreground: #ffffff;
  --sage: #96a265;
  --sage-soft: #c0cd8c;
  --surface: #fbf9f6;
  --surface-low: #f5f3f0;
  --surface-mid: #f0edea;
  --muted-foreground: #46483c;
  --border: #c7c7b8;

  /* tint suave de sage para seções alternadas */
  --sage-tint: #eef1e8;

  /* faixa de alerta */
  --alert-red: #d8351c;

  /* bases rgb para transparências */
  --sage-rgb: 150 162 101;
  --sage-deep-rgb: 88 99 45;
  --fg-rgb: 27 28 26;
  --white-rgb: 255 255 255;

  --radius: 0.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-serif: "Newsreader", ui-serif, Georgia, serif;

  /* altura aproximada do topo fixo (faixa + header) p/ âncoras */
  --topbar-h: 116px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--topbar-h);
  background: var(--background);
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 500; }
ul { margin: 0; padding: 0; list-style: none; }

::selection {
  background-color: rgb(var(--sage-rgb) / 0.30);
  color: var(--primary);
}

/* ---------- Ícones (sprite) ---------- */
.icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}
.icon--sm { width: 0.875rem; height: 0.875rem; }
.icon--4  { width: 1rem;     height: 1rem; }
.icon--5  { width: 1.25rem;  height: 1.25rem; }
.icon--6  { width: 1.5rem;   height: 1.5rem; }
.icon--8  { width: 2rem;     height: 2rem; }
.icon--16 { width: 4rem;     height: 4rem; }

/* ---------- Containers ---------- */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
.container--7xl { max-width: 80rem; }
.container--6xl { max-width: 72rem; }
.container--4xl { max-width: 56rem; }
@media (min-width: 768px) {
  .container { padding-inline: 3rem; }
}

/* ---------- Seções ---------- */
.section { padding-block: 5rem; }
.section--tight { padding-block: 5rem; }
@media (min-width: 768px) {
  .section { padding-block: 7rem; }
  .section--tight { padding-block: 6rem; }
}

.bg-background  { background: var(--background); }
.bg-surface-low { background: var(--surface-low); }
.bg-sage-soft   { background: var(--sage-tint); }

.section--dark {
  background: var(--primary);
  color: var(--primary-foreground);
}

.text-center { text-align: center; }
.mt-14 { margin-top: 3.5rem; }

/* =========================================================
   TOPO FIXO — faixa de alerta + header (rolam juntos)
   ========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* Faixa de alerta */
.announce {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.5rem 1.25rem;
  background: var(--alert-red);
  color: #fff;
  text-align: center;
  transition: background-color 0.6s var(--ease);
}
.announce__text {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  line-height: 1.3;
}
.announce__dot {
  width: 7px;
  height: 7px;
  border-radius: 9999px;
  background: currentColor;
  flex: none;
}
/* ao rolar: oliva (suaviza, não briga com o layout) */
.topbar.is-scrolled .announce {
  background: var(--primary);
}
@media (min-width: 768px) {
  .announce__text { font-size: 0.72rem; letter-spacing: 0.2em; }
}

/* Header */
.site-header {
  position: relative;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition: background-color 0.5s var(--ease), border-color 0.5s var(--ease),
              box-shadow 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.topbar.is-scrolled .site-header {
  background: rgb(251 249 246 / 0.95);
  border-bottom-color: rgb(var(--sage-rgb) / 0.15);
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  max-width: 80rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
}
.brand { transition: opacity 0.3s ease; }
.brand:hover { opacity: 0.85; }
.brand__logo { height: 2.25rem; width: auto; }

.nav { display: none; }
.nav__link {
  position: relative;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted-foreground);
  transition: color 0.3s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  height: 1px;
  width: 0;
  transform: translateX(-50%);
  background: var(--primary);
  transition: width 0.3s ease;
}
.nav__link:hover { color: var(--primary); }
.nav__link:hover::after { width: 100%; }
.nav__cta { display: none; }

.nav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border: none;
  border-radius: var(--radius);
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.nav__toggle:hover { background: var(--surface-low); }
.nav__toggle-close { display: none; }
.nav__toggle[aria-expanded="true"] .nav__toggle-open { display: none; }
.nav__toggle[aria-expanded="true"] .nav__toggle-close { display: inline-block; }

/* Menu mobile */
.mobile-menu {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  background: rgb(251 249 246 / 0.98);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}
.mobile-menu.is-open {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
  border-bottom: 1px solid rgb(var(--sage-rgb) / 0.15);
  box-shadow: 0 12px 24px -12px rgb(0 0 0 / 0.18);
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.5rem;
}
.mobile-menu__link {
  padding: 0.75rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--muted-foreground);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.mobile-menu__link:hover {
  background: rgb(var(--sage-rgb) / 0.12);
  color: var(--primary);
}
.mobile-menu__cta { margin-top: 0.75rem; justify-content: center; }

@media (min-width: 768px) {
  .site-header__inner { padding: 1.25rem 3rem; }
  .brand__logo { height: 2.5rem; }
  .nav { display: flex; align-items: center; gap: 2.25rem; }
  .nav__cta { display: inline-flex; }
  .nav__toggle { display: none; }
  .mobile-menu { display: none; }
}

/* =========================================================
   Botões
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.btn--whatsapp {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.625rem 1.25rem;
}
.btn--whatsapp:hover {
  transform: translateY(-2px);
  background: #4d5727;
  box-shadow: 0 8px 20px -8px rgb(var(--sage-deep-rgb) / 0.5);
}
.btn--ghost {
  border: 1px solid rgb(var(--sage-rgb) / 0.30);
  color: var(--primary);
  padding: 0.625rem 1.25rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.01em;
}
.btn--ghost:hover { background: rgb(var(--sage-rgb) / 0.12); }
.btn--lg {
  padding: 1rem 1.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.btn__arrow { transition: transform 0.3s ease; }
.btn--lg:hover .btn__arrow { transform: translateX(4px); }

/* pulso do botão WhatsApp do header */
.btn--pulse { animation: whatsapp-pulse 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
@keyframes whatsapp-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgb(var(--sage-deep-rgb) / 0.45), 0 1px 2px rgb(0 0 0 / 0.05); }
  50%      { box-shadow: 0 0 0 10px rgb(var(--sage-deep-rgb) / 0), 0 1px 2px rgb(0 0 0 / 0.05); }
}

/* =========================================================
   Tipografia compartilhada
   ========================================================= */
.eyebrow {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
}
.eyebrow--light { color: rgb(var(--white-rgb) / 0.75); }

.h2 {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.875rem;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.h2--light { color: var(--primary-foreground); }
@media (min-width: 768px) { .h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .h2 { font-size: 3rem; } }

.section-head {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}
.section-head--left { margin-inline: 0; text-align: left; max-width: 48rem; }
.section-head__lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

.lead { font-size: 1.125rem; line-height: 1.65; color: rgb(var(--fg-rgb) / 0.85); }
.serif-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--primary);
}

/* =========================================================
   Reveal on scroll
   ========================================================= */
/* O estado oculto só vale quando o JS está ativo (html.js).
   Sem JS, o conteúdo aparece normalmente — nunca fica em branco. */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   Grids
   ========================================================= */
.grid { display: grid; gap: 1rem; }
.grid--narrow { max-width: 56rem; margin-inline: auto; }
@media (min-width: 768px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .grid--5 { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}
@media (min-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid--5 { grid-template-columns: repeat(5, 1fr); }
}

/* círculo de ícone reutilizável */
.icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.75rem;
  width: 2.75rem;
  flex: none;
  border-radius: 9999px;
  background: var(--surface-low);
  box-shadow: inset 0 0 0 1px rgb(var(--sage-rgb) / 0.15);
  color: var(--primary);
  transition: transform 0.5s var(--ease);
}
.icon-circle--lg { height: 3rem; width: 3rem; }
.icon-circle--light {
  background: rgb(var(--white-rgb) / 0.15);
  box-shadow: inset 0 0 0 1px rgb(var(--white-rgb) / 0.2);
  color: var(--primary-foreground);
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; overflow: hidden; background: var(--surface-low); }
.hero__grid {
  display: grid;
  align-items: center;
  gap: 3rem;
  padding-block: 5rem;
}
@media (min-width: 768px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 4rem; padding-block: 7rem; }
}
@media (min-width: 1024px) { .hero__grid { padding-block: 8rem; } }

.hero__content { max-width: 36rem; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
  padding: 0.375rem 1rem;
  border: 1px solid rgb(var(--sage-rgb) / 0.20);
  border-radius: 9999px;
  background: rgb(var(--sage-rgb) / 0.10);
  color: var(--primary);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--foreground);
  text-wrap: balance;
}
.hero__title em { font-style: italic; color: var(--primary); }
@media (min-width: 768px) { .hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.625rem; } }

.hero__lead {
  margin-top: 1.75rem;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted-foreground);
}
@media (min-width: 768px) { .hero__lead { font-size: 1.25rem; } }

.hero__sub { margin-top: 2rem; font-size: 1rem; color: rgb(var(--fg-rgb) / 0.8); }

.hero__actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero__actions { flex-direction: row; align-items: center; }
}

.hero__trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
  border-top: 1px solid rgb(var(--sage-rgb) / 0.15);
  padding-top: 1.5rem;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.01em;
  color: var(--muted-foreground);
}
.trust-item .icon { color: var(--sage); }

/* Animação decorativa de respiração */
.hero__visual { display: none; }
@media (min-width: 768px) { .hero__visual { display: block; } }
.breath {
  position: relative;
  margin-inline: auto;
  width: 100%;
  max-width: 28rem;
  aspect-ratio: 1 / 1;
}
.breath__ring, .breath__disc {
  position: absolute;
  border-radius: 9999px;
  transform-origin: center;
}
.breath__ring--1 { inset: 0;     border: 1px solid rgb(var(--sage-rgb) / 0.10); animation: breathe-1 7s ease-in-out infinite; }
.breath__ring--2 { inset: 1.5rem; border: 1px solid rgb(var(--sage-rgb) / 0.15); animation: breathe-2 7s ease-in-out infinite 0.6s; }
.breath__ring--3 { inset: 3rem;   border: 1px solid rgb(var(--sage-rgb) / 0.20); animation: breathe-3 7s ease-in-out infinite 1.2s; }
.breath__disc { inset: 4.5rem; background: rgb(var(--sage-rgb) / 0.18); }
.breath__leaf { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.breath__leaf-pad {
  display: inline-flex;
  padding: 2rem;
  border-radius: 9999px;
  background: var(--surface-low);
  color: rgb(var(--sage-deep-rgb) / 0.6);
  animation: leaf-enter 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
}
.breath__badge {
  position: absolute;
  bottom: -1rem;
  left: 50%;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--surface);
  box-shadow: 0 12px 30px -12px rgb(0 0 0 / 0.25), inset 0 0 0 1px rgb(var(--sage-rgb) / 0.1);
  animation: badge-rise 0.7s var(--ease) 0.9s both;
}
.breath__badge p {
  white-space: nowrap;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.875rem;
  color: var(--primary);
}

@keyframes breathe-1 { 0%,100% { transform: scale(1); opacity: 0.55; } 50% { transform: scale(1.06); opacity: 0.25; } }
@keyframes breathe-2 { 0%,100% { transform: scale(1); opacity: 0.65; } 50% { transform: scale(1.05); opacity: 0.30; } }
@keyframes breathe-3 { 0%,100% { transform: scale(1); opacity: 0.80; } 50% { transform: scale(1.04); opacity: 0.40; } }
@keyframes leaf-enter {
  0%   { opacity: 0; transform: scale(0.6) rotate(-15deg); }
  70%  { opacity: 1; transform: scale(1.08) rotate(3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes badge-rise {
  0%   { opacity: 0; transform: translateX(-50%) translateY(12px); }
  100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* =========================================================
   DOBRA 2 — Sintomas
   ========================================================= */
.feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid rgb(var(--sage-rgb) / 0.15);
  border-radius: 0.75rem;
  background: var(--surface-low);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}
.feature:hover {
  transform: translateY(-2px);
  border-color: rgb(var(--sage-rgb) / 0.30);
  box-shadow: 0 12px 24px -16px rgb(0 0 0 / 0.2);
}
.feature:hover .icon-circle { transform: scale(1.1); }
.feature p { padding-top: 0.25rem; font-size: 1rem; line-height: 1.6; color: rgb(var(--fg-rgb) / 0.9); }
.feature .icon-circle { background: rgb(var(--sage-rgb) / 0.14); }

.pullquote {
  max-width: 48rem;
  margin: 3.5rem auto 0;
  padding: 2rem;
  border-radius: 1rem;
  background: rgb(var(--sage-rgb) / 0.12);
  box-shadow: inset 0 0 0 1px rgb(var(--sage-rgb) / 0.15);
  text-align: center;
}
.pullquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--primary);
  text-wrap: pretty;
}
@media (min-width: 768px) { .pullquote p { font-size: 1.5rem; } }

/* =========================================================
   DOBRA 3 — Split
   ========================================================= */
.split { display: grid; gap: 3rem; }
@media (min-width: 768px) { .split { grid-template-columns: 2fr 3fr; } }
.split__sticky { position: static; }
@media (min-width: 768px) { .split__sticky { position: sticky; top: calc(var(--topbar-h) + 1rem); } }

.tick-list {
  border-left: 2px solid rgb(var(--sage-rgb) / 0.30);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.tick-list li { font-size: 1rem; line-height: 1.6; color: rgb(var(--fg-rgb) / 0.85); }
.split__body { display: flex; flex-direction: column; gap: 1.5rem; }

/* =========================================================
   DOBRA 4 — Passos
   ========================================================= */
.step {
  height: 100%;
  padding: 1.75rem;
  border-radius: 0.75rem;
  background: var(--surface-low);
  box-shadow: inset 0 0 0 1px rgb(var(--sage-rgb) / 0.15);
  transition: transform 0.3s var(--ease), background-color 0.3s ease, box-shadow 0.3s ease;
}
.step:hover {
  transform: translateY(-4px);
  background: var(--surface);
  box-shadow: 0 18px 36px -20px rgb(0 0 0 / 0.25), inset 0 0 0 1px rgb(var(--sage-rgb) / 0.25);
}
.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 1px 2px rgb(0 0 0 / 0.08);
  transition: transform 0.5s var(--ease);
}
.step:hover .step__num { transform: scale(1.1); }
.step p { margin-top: 1.25rem; font-size: 1rem; line-height: 1.6; color: rgb(var(--fg-rgb) / 0.9); }

.center-note {
  max-width: 42rem;
  margin: 3rem auto 0;
  text-align: center;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted-foreground);
}

/* =========================================================
   DOBRA 5 — Diferenciais (escuro)
   ========================================================= */
.card-dark {
  height: 100%;
  padding: 1.5rem;
  border: 1px solid rgb(var(--white-rgb) / 0.1);
  border-radius: 0.75rem;
  background: rgb(var(--white-rgb) / 0.05);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, background-color 0.3s ease;
}
.card-dark:hover {
  transform: translateY(-4px);
  border-color: rgb(var(--white-rgb) / 0.25);
  background: rgb(var(--white-rgb) / 0.1);
}
.card-dark:hover .icon-circle { transform: scale(1.1); }
.card-dark__title {
  margin-top: 1.25rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.35;
}

.quote-bar {
  max-width: 48rem;
  margin-top: 3.5rem;
  border-left: 2px solid rgb(var(--white-rgb) / 0.3);
  padding-left: 1.5rem;
}
.quote-bar p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.6;
  color: rgb(var(--white-rgb) / 0.95);
  text-wrap: pretty;
}
@media (min-width: 768px) { .quote-bar p { font-size: 1.5rem; } }

/* =========================================================
   SOBRE LEONARDO
   ========================================================= */
.about { display: grid; align-items: center; gap: 3rem; }
@media (min-width: 768px) { .about { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.about__media { position: relative; }
.about__frame {
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 60px -30px rgb(88 99 45 / 0.35), inset 0 0 0 1px rgb(var(--sage-rgb) / 0.1);
}
.about__frame img { width: 100%; object-fit: cover; }
.about__crp {
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  display: none;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: var(--surface);
  box-shadow: 0 10px 24px -14px rgb(0 0 0 / 0.25), inset 0 0 0 1px rgb(var(--sage-rgb) / 0.15);
}
@media (min-width: 768px) { .about__crp { display: block; } }
.about__crp-label { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); }
.about__crp-num { font-size: 1.125rem; font-weight: 600; color: var(--primary); }

.about__role { margin-top: 0.5rem; font-size: 1rem; color: var(--muted-foreground); }
.about__paras { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.about__paras p { font-size: 1rem; line-height: 1.65; color: rgb(var(--fg-rgb) / 0.85); text-wrap: pretty; }
.about__badges { margin-top: 2rem; display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .about__badges { grid-template-columns: 1fr 1fr; } }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: rgb(var(--sage-rgb) / 0.12);
  box-shadow: inset 0 0 0 1px rgb(var(--sage-rgb) / 0.15);
  font-size: 0.875rem;
  color: rgb(var(--fg-rgb) / 0.85);
}
.pill .icon { color: var(--primary); }

/* =========================================================
   DOBRA 6 — Para quem é
   ========================================================= */
.check-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.75rem;
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgb(var(--sage-rgb) / 0.15);
  transition: box-shadow 0.3s ease;
}
.check-card:hover { box-shadow: inset 0 0 0 1px rgb(var(--sage-rgb) / 0.30), 0 8px 20px -16px rgb(0 0 0 / 0.2); }
.check-card__icon { margin-top: 0.125rem; color: var(--primary); }
.check-card p { font-size: 1rem; line-height: 1.6; color: rgb(var(--fg-rgb) / 0.9); }

/* =========================================================
   DOBRA 7 — Resultados
   ========================================================= */
.result {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.5rem;
  border: 1px solid rgb(var(--sage-rgb) / 0.15);
  border-radius: 0.75rem;
  background: var(--surface-low);
  transition: transform 0.3s var(--ease), border-color 0.3s ease, box-shadow 0.3s ease;
}
.result:hover {
  transform: translateY(-4px);
  border-color: rgb(var(--sage-rgb) / 0.30);
  box-shadow: 0 12px 24px -16px rgb(0 0 0 / 0.2);
}
.result .icon-circle { background: rgb(var(--sage-rgb) / 0.14); }
.result:hover .icon-circle { transform: scale(1.1) rotate(6deg); }
.result p { margin-top: 1.25rem; font-size: 0.9375rem; font-weight: 500; line-height: 1.35; color: var(--foreground); }

/* =========================================================
   DOBRA 8 — CTA
   ========================================================= */
.cta__lead {
  max-width: 42rem;
  margin: 1.5rem auto 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: rgb(var(--fg-rgb) / 0.85);
  text-wrap: pretty;
}
.cta__accent { margin-top: 1rem; font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; color: var(--primary); }
.cta__actions { margin-top: 2.5rem; display: flex; justify-content: center; }

/* =========================================================
   DOBRA 9 — Local
   ========================================================= */
.cards-local { gap: 2rem; }
.place-card {
  position: relative;
  display: block;
  height: 100%;
  padding: 2rem;
  border-radius: 1rem;
  background: var(--surface-low);
  box-shadow: inset 0 0 0 1px rgb(var(--sage-rgb) / 0.15);
  transition: transform 0.5s var(--ease), background-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
@media (min-width: 768px) { .place-card { padding: 2.5rem; } }
.place-card:hover {
  transform: translateY(-4px);
  background: var(--primary);
  box-shadow: 0 24px 50px -24px rgb(88 99 45 / 0.45);
}
.place-card .icon-circle { background: rgb(var(--sage-rgb) / 0.14); transition: transform 0.5s var(--ease), background-color 0.5s ease, color 0.5s ease; }
.place-card:hover .icon-circle { transform: scale(1.1); background: rgb(var(--white-rgb) / 0.15); color: var(--primary-foreground); }
.place-card__title {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--foreground);
  transition: color 0.5s ease;
}
.place-card__muted { margin-top: 0.75rem; font-size: 1rem; line-height: 1.6; color: var(--muted-foreground); transition: color 0.5s ease; }
.place-card__addr { margin-top: 0.5rem; font-size: 1rem; line-height: 1.6; color: rgb(var(--fg-rgb) / 0.85); transition: color 0.5s ease; }
.place-card__link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  opacity: 0;
  transition: opacity 0.5s ease, color 0.5s ease;
}
.place-card:hover .place-card__title,
.place-card:hover .place-card__muted,
.place-card:hover .place-card__addr,
.place-card:hover .place-card__link { color: var(--primary-foreground); }
.place-card:hover .place-card__link { opacity: 1; }

/* =========================================================
   DOBRA 10 — Urgência + Garantia
   ========================================================= */
.split-even { display: grid; gap: 2.5rem; }
@media (min-width: 768px) { .split-even { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.quote-mark { color: var(--sage); }
.urgency__title {
  margin-top: 1rem;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--foreground);
  text-wrap: balance;
}
@media (min-width: 768px) { .urgency__title { font-size: 1.875rem; } }
.urgency__note { margin-top: 1.5rem; font-size: 1rem; line-height: 1.6; color: var(--muted-foreground); }

.guarantee {
  padding: 2rem;
  border: 1px solid rgb(var(--sage-rgb) / 0.2);
  border-radius: 1rem;
  background: var(--surface);
}
@media (min-width: 768px) { .guarantee { padding: 2.5rem; } }
.guarantee__head { display: flex; align-items: center; gap: 0.75rem; color: var(--primary); }
.guarantee__head span { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; }
.guarantee__body { margin-top: 1.25rem; font-size: 1rem; line-height: 1.6; color: rgb(var(--fg-rgb) / 0.9); text-wrap: pretty; }
.guarantee__meta {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.25rem;
  border-top: 1px solid rgb(var(--sage-rgb) / 0.15);
  padding-top: 1.25rem;
}
.guarantee__meta span { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-foreground); }
.guarantee__meta .icon { color: var(--sage); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { border-top: 1px solid rgb(var(--sage-rgb) / 0.1); background: var(--surface-low); }
.footer__grid { display: grid; gap: 2.5rem; padding-block: 3.5rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: repeat(3, 1fr); padding-block: 4rem; } }

.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.footer__logo { height: 2.25rem; width: auto; margin-left: -0.25rem; }
.footer__about { max-width: 20rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }
.footer__crp { font-size: 0.6875rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage); }

.footer__col { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__title { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); }
.footer__link { width: fit-content; font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.3s ease; }
.footer__link span { position: relative; }
.footer__link span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1px;
  width: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}
.footer__link:hover { color: var(--primary); }
.footer__link:hover span::after { width: 100%; }

.footer__contact { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.3s ease; }
.footer__contact--top { align-items: flex-start; }
.footer__contact-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 2rem;
  width: 2rem;
  flex: none;
  border-radius: 9999px;
  background: rgb(var(--sage-rgb) / 0.16);
  color: var(--primary);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.footer__contact--top .footer__contact-ico { margin-top: 0.125rem; }
.footer__contact:hover { color: var(--primary); }
.footer__contact:hover .footer__contact-ico { transform: scale(1.1); background: var(--primary); color: var(--primary-foreground); }
.footer__addr { line-height: 1.4; }
.footer__maps { display: block; font-size: 0.6875rem; color: var(--sage); }

.footer__bar { border-top: 1px solid rgb(var(--sage-rgb) / 0.1); }
.footer__bar-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-block: 1.5rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) { .footer__bar-inner { flex-direction: row; } }
.footer__legal { display: flex; gap: 1.5rem; }
.footer__legal a { transition: color 0.3s ease; }
.footer__legal a:hover { color: var(--primary); }

/* =========================================================
   Botão flutuante WhatsApp
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-radius: 9999px;
  background: var(--primary);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 14px 30px -10px rgb(88 99 45 / 0.5), inset 0 0 0 1px rgb(var(--white-rgb) / 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.wa-float:hover { transform: translateY(-4px); background: #4d5727; box-shadow: 0 20px 40px -12px rgb(88 99 45 / 0.55); }
.wa-float__text { display: none; }
@media (min-width: 640px) { .wa-float__text { display: inline; } }

/* =========================================================
   Movimento reduzido
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn--pulse,
  .breath__ring--1, .breath__ring--2, .breath__ring--3,
  .breath__leaf-pad, .breath__badge { animation: none !important; }
  * { transition-duration: 0.01ms !important; }
}
