/* =========================================================
   ROBERTA RODRIGUES — PSICÓLOGA
   Design System — Acolhedor · Editorial · Sofisticado
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --c-bg:      #FBF7F1;
  --c-bg-alt:  #F2EAD9;
  --c-card:    #FFFFFF;
  --c-dark:    #2C3227;
  --c-mid:     #726F63;
  --c-border:  #E5DBC8;

  --c-sage:      #5C6E4F;
  --c-sage-dark: #43502F;
  --c-terracotta: #B97452;

  --f-serif: 'Fraunces', 'Georgia', serif;
  --f-sans:  'Inter', system-ui, sans-serif;

  --nav-h:   72px;
  --max-w:   1200px;
  --pad:     clamp(1.5rem, 5vw, 4rem);
  --ease:    cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

section[id] { scroll-margin-top: var(--nav-h); }

body {
  font-family: var(--f-sans);
  background: var(--c-bg);
  color: var(--c-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img    { display: block; width: 100%; height: 100%; object-fit: cover; }
a      { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul     { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(251,247,241,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
  z-index: 200;
}

.header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-shrink: 0;
}

.logo__icon {
  width: 32px;
  height: auto;
  flex-shrink: 0;
}

.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo__name {
  font-family: var(--f-serif);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 500;
  color: var(--c-dark);
}

.logo__sub {
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-top: .2rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav__link {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-mid);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}

.nav__link:hover,
.nav__link.active {
  color: var(--c-sage-dark);
  border-bottom-color: var(--c-sage);
}

.nav__link--cta {
  background: var(--c-sage);
  color: #fff !important;
  padding: .6rem 1.2rem;
  border-bottom: none !important;
}
.nav__link--cta:hover { background: var(--c-sage-dark); }

.nav__social {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-left: .25rem;
}

.nav__social-link {
  color: var(--c-dark);
  opacity: .65;
  display: flex;
  align-items: center;
  transition: opacity .2s;
}
.nav__social-link:hover { opacity: 1; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-dark);
  transition: transform .3s var(--ease), opacity .3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 190;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.25rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease);
}

.nav-mobile.open { opacity: 1; pointer-events: all; }

.nav-mobile__link {
  font-family: var(--f-serif);
  font-size: clamp(1.8rem, 7vw, 2.6rem);
  font-weight: 400;
  color: var(--c-dark);
  transition: opacity .2s;
}
.nav-mobile__link:hover { opacity: .55; color: var(--c-sage); }

/* =========================================================
   MAIN / PAGE HEADER
   ========================================================= */
main { padding-top: var(--nav-h); }

.page-header {
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2rem, 5vw, 3rem);
}

.page-header__eyebrow {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 1.1rem;
}

.page-header__title {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--c-dark);
  max-width: 20ch;
}

.page-header__desc {
  margin-top: 1.4rem;
  font-size: .95rem;
  font-weight: 300;
  color: var(--c-mid);
  max-width: 56ch;
  line-height: 1.75;
}

/* Imagem de banner usada após o page-header (artigos, EMDR, TCC) */
.content-hero-img {
  aspect-ratio: 21/9;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
@media (max-width: 720px) {
  .content-hero-img { aspect-ratio: 4/3; }
}

/* =========================================================
   HERO (HOME)
   ========================================================= */
.hero {
  position: relative;
  padding: clamp(2.5rem, 7vw, 4.5rem) 0 clamp(3rem, 8vw, 5.5rem);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.hero__tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 1.25rem;
}

.hero__title {
  font-family: var(--f-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.9rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--c-dark);
  margin-bottom: 1.5rem;
}

.hero__sub {
  font-size: .95rem;
  font-weight: 300;
  color: var(--c-mid);
  max-width: 46ch;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
  position: relative;
}

.hero__img::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.05);
}

/* Toque orgânico só no hero da Home: canto superior direito bem arredondado */
.hero .hero__img,
.hero .hero__img::after {
  border-radius: 6px 64px 6px 6px;
}

.hero__crp {
  margin-top: 1.75rem;
  font-size: .72rem;
  font-weight: 400;
  color: var(--c-mid);
  letter-spacing: .04em;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--f-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .95rem 1.85rem;
  border: 1px solid transparent;
  border-radius: 3px;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--sage {
  background: var(--c-sage);
  color: #fff;
  border-color: var(--c-sage);
}
.btn--sage:hover { background: var(--c-sage-dark); border-color: var(--c-sage-dark); }

.btn--dark {
  background: var(--c-dark);
  color: #fff;
  border-color: var(--c-dark);
}
.btn--dark:hover { background: #1c2016; }

.btn--outline {
  background: transparent;
  color: var(--c-dark);
  border-color: var(--c-dark);
}
.btn--outline:hover { background: var(--c-dark); color: #fff; }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn--outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn--ghost {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--c-sage-dark);
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-bottom: 1px solid var(--c-sage);
  padding-bottom: 2px;
  transition: gap .2s var(--ease), opacity .2s;
}
.btn--ghost:hover { gap: .8rem; opacity: .7; }

/* =========================================================
   SECTION LABELS & TITLES
   ========================================================= */
.section-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--f-serif);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -.01em;
  color: var(--c-dark);
}

.section-desc {
  font-size: .92rem;
  font-weight: 300;
  color: var(--c-mid);
  line-height: 1.8;
  max-width: 56ch;
}

.section-header {
  margin-bottom: 3rem;
}

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}
.section-header--center .section-desc { margin: 0 auto; }

/* =========================================================
   HOME — Resumo profissional
   ========================================================= */
.intro {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  border-top: 1px solid var(--c-border);
}

.intro__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.intro__text {
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--c-dark);
}

.intro__text strong { font-weight: 600; }

/* Foto + texto (usado em sobre.html) */
.sobre-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: start;
}
.sobre-grid .hero__img { aspect-ratio: 4/5; }

/* =========================================================
   HOME — Destaques (abordagens) / Cards genéricos
   ========================================================= */
.approach {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  background: var(--c-bg-alt);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.approach-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(44,50,39,.08);
}

.approach-card__tag {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: .9rem;
}

.approach-card__title {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--c-dark);
  margin-bottom: .85rem;
}

.approach-card__text {
  font-size: .88rem;
  font-weight: 300;
  color: var(--c-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* =========================================================
   Cards genéricos (3 colunas) — áreas de atuação, blog, etc
   Modificadores: .card-grid--2 (2 col) / .card-grid--4 (4 col)
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

/* Evita que uma palavra longa force uma coluna a ficar mais larga que as outras */
.card-grid > * { min-width: 0; }

.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* Formação (sobre.html): garante caixas do mesmo tamanho mesmo em linhas diferentes */
.card-grid--formacao .info-card { min-height: 300px; }
.card-grid--formacao .info-card__text { font-size: .8rem; }

/* =========================================================
   STEPS LIST — "Como funciona" (LP), lista vertical com ícone
   ========================================================= */
.steps-list {
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  border-radius: 16px;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
  margin-top: 2rem;
}

.steps-list__item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
}
.steps-list__item + .steps-list__item { border-top: 1px solid var(--c-border); }

.steps-list__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-card);
  color: var(--c-sage-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps-list__title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: .35rem;
}

.steps-list__text {
  font-size: .86rem;
  font-weight: 300;
  color: var(--c-mid);
  line-height: 1.65;
}

@media (max-width: 560px) {
  .steps-list__item { gap: 1rem; }
}

.info-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
}

.info-card__title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-dark);
  margin-bottom: .65rem;
}

.info-card__text {
  font-size: .84rem;
  font-weight: 300;
  color: var(--c-mid);
  line-height: 1.7;
}

/* Lista de chips — ex: "Como posso ajudar" da LP. Compacto, sem
   caixas grandes e quase vazias no mobile. */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .6rem;
  margin-top: 2rem;
}
.chip {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: .6rem 1.1rem;
  font-size: .84rem;
  font-weight: 500;
  color: var(--c-dark);
  line-height: 1.4;
}

/* =========================================================
   SOCIAL PROOF / INSTAGRAM
   ========================================================= */
.social-proof {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  text-align: center;
}

.social-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}

.social-proof__item {
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  background: var(--c-bg-alt);
}

/* =========================================================
   CONTATO PAGE
   ========================================================= */
.contato-section {
  padding: clamp(3rem, 7vw, 5rem) 0 clamp(4rem, 8vw, 6rem);
}

.contato-info__title {
  font-family: var(--f-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  margin-bottom: 1.75rem;
  line-height: 1.25;
}

.contato-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 600;
  color: #fff;
  background: var(--c-sage);
  border-radius: 3px;
  padding: .9rem 1.5rem;
  margin-bottom: 2.5rem;
  transition: background .2s;
}
.contato-whatsapp:hover { background: var(--c-sage-dark); }

.ci-item { margin-bottom: 1.5rem; }

.ci-item__label {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: .35rem;
}

.ci-item__value {
  font-size: .9rem;
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.65;
}

.ci-item__value a:hover { opacity: .6; }

/* =========================================================
   FAQ ACCORDION
   ========================================================= */
.faq-list { margin-top: 1rem; }

.faq-item {
  border-bottom: 1px solid var(--c-border);
}

.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-dark);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--c-sage);
  transition: transform .25s var(--ease);
}
.faq-item__icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-item__icon::after  { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }

.faq-item.open .faq-item__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.faq-item__a-inner {
  padding-bottom: 1.5rem;
  font-size: .88rem;
  font-weight: 300;
  color: var(--c-mid);
  line-height: 1.8;
  max-width: 68ch;
}

/* =========================================================
   CHECKLIST (bloco de identificação)
   ========================================================= */
.checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  margin: 2.5rem 0;
}

.checklist--single { grid-template-columns: 1fr; margin: 1.75rem 0 0; }

/* Bloco de identificação (LP) — foto full-bleed de um lado, conteúdo do outro */
.lp-split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-top: 1px solid var(--c-border);
}

.lp-split-block__img {
  overflow: hidden;
}
.lp-split-block__img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.lp-split-block__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 6vw, 4.5rem);
}

.lp-split-block__cta { margin-top: 2rem; }

@media (max-width: 900px) {
  .lp-split-block { grid-template-columns: 1fr; min-height: 0; }
  .lp-split-block__img { order: 2; border-radius: 16px; margin: 0 clamp(1.5rem, 5vw, 2rem) clamp(2.5rem, 6vw, 3rem); aspect-ratio: 4/3; }
  .lp-split-block__content { order: 1; text-align: center; padding: clamp(2.5rem, 8vw, 3.5rem) clamp(1.5rem, 5vw, 2rem) 0; }
  .lp-split-block__content .checklist--single { text-align: left; max-width: 420px; margin-left: auto; margin-right: auto; }
  .lp-split-block__cta { text-align: center; }
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .92rem;
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.5;
}

.checklist__item::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-sage);
  color: #fff;
  font-size: .68rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: .1rem;
}

/* =========================================================
   BLOG
   ========================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.blog-card { display: block; }

.blog-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--c-bg-alt);
  margin-bottom: 1.1rem;
}
.blog-card__img img { transition: transform .5s var(--ease-out); }
.blog-card:hover .blog-card__img img { transform: scale(1.04); }

.blog-card__tag {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: .6rem;
}

.blog-card__title {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--c-dark);
  line-height: 1.3;
  margin-bottom: .5rem;
}

.blog-card__excerpt {
  font-size: .84rem;
  font-weight: 300;
  color: var(--c-mid);
  line-height: 1.7;
}

.article {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.article__body {
  max-width: 68ch;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--c-dark);
}

.article__body h2 {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 500;
  margin: 2rem 0 1rem;
}

.article__body p { margin-bottom: 1.25rem; }
.article__body ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; }
.article__body li { margin-bottom: .5rem; }

/* =========================================================
   GLASS CTA (full-width, antes do footer)
   ========================================================= */
.glass-cta {
  position: relative;
  background: var(--c-dark);
  padding: clamp(3.5rem, 9vw, 6rem) 0;
  text-align: center;
}

.glass-cta__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}

.glass-cta__title {
  font-family: var(--f-serif);
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  max-width: 20ch;
  margin: 0 auto 1.25rem;
}

.glass-cta__sub {
  font-size: .9rem;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 46ch;
  margin: 0 auto 2rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--c-bg-alt);
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2rem);
}

.footer .container {
  border-top: 3px solid var(--c-sage);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer__brand-name {
  font-family: var(--f-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--c-dark);
  margin-bottom: .6rem;
}

.footer__brand-desc {
  font-size: .82rem;
  font-weight: 300;
  color: var(--c-mid);
  line-height: 1.7;
  max-width: 32ch;
}

.footer__col-label {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-sage);
  margin-bottom: .85rem;
}

.footer__col-line {
  font-size: .85rem;
  font-weight: 300;
  color: var(--c-dark);
  line-height: 1.8;
  display: block;
  transition: opacity .2s;
}
.footer__col-line:hover { opacity: .6; }

.footer__social-row {
  display: flex;
  gap: 1rem;
  margin-top: .25rem;
}

.footer__social-link {
  color: var(--c-dark);
  opacity: .65;
  transition: opacity .2s;
  display: flex;
  align-items: center;
}
.footer__social-link:hover { opacity: 1; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copy,
.footer__credits {
  font-size: .72rem;
  font-weight: 300;
  color: var(--c-mid);
}
.footer__credits { letter-spacing: .06em; text-transform: uppercase; }

/* =========================================================
   FADE-UP + STAGGER
   ========================================================= */
.fade-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: calc(var(--stagger, 0) * 90ms);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   ENTRADA SUAVE (títulos hero / page-header)
   ========================================================= */
@keyframes soft-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__title, .lp-hero__title, .page-header__title {
  animation: soft-in .7s ease-out .05s both;
}
.hero__tag, .hero__sub, .hero__actions, .hero__crp,
.page-header__eyebrow, .page-header__desc,
.lp-hero__sub {
  animation: soft-in .7s ease-out .15s both;
}

/* Imagem do hero: fade suave ao entrar */
@keyframes img-reveal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.hero__img img, .lp-hero__photo-badge img { animation: img-reveal .8s ease-out both; }

/* Sublinhado animado nos links ghost */
.btn--ghost { position: relative; }

/* Respeita usuários com preferência por menos movimento */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   ELEMENTOS DE QUEBRA — respiro visual entre seções
   ========================================================= */

/* Três traços coloridos, centralizados — divisor leve entre seções */
.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .6rem;
  padding: clamp(1.5rem, 4vw, 2.5rem) 0;
}
.section-divider span {
  display: block;
  height: 3px;
  border-radius: 2px;
}
.section-divider span:nth-child(1) { width: 32px; background: var(--c-sage); }
.section-divider span:nth-child(2) { width: 64px; background: var(--c-terracotta); }
.section-divider span:nth-child(3) { width: 20px; background: var(--c-border); }

/* Textura de pontos — aplicada como acento discreto em um canto da seção */
.dot-texture { position: relative; overflow: hidden; }
.dot-texture::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(var(--c-sage) 1.5px, transparent 1.5px);
  background-size: 20px 20px;
  opacity: .14;
  pointer-events: none;
}
.dot-texture--left::before { right: auto; left: 0; top: auto; bottom: 0; }

@media (max-width: 720px) {
  .dot-texture::before { width: 120px; height: 120px; background-size: 16px 16px; }
}

/* =========================================================
   TESTIMONIALS (prova social — usado na landing page)
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 8px;
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(44,50,39,.08);
}

.testimonial-card__stars {
  color: var(--c-terracotta);
  font-size: .85rem;
  letter-spacing: .15em;
  margin-bottom: 1rem;
}

.testimonial-card__tag {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-terracotta);
  margin-bottom: .9rem;
}

.testimonial-card__quote {
  font-family: var(--f-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--c-dark);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.testimonial-card__author {
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-sage-dark);
}

.testimonial-card__meta {
  font-size: .72rem;
  font-weight: 300;
  color: var(--c-mid);
  margin-top: .15rem;
}

.testimonial-disclaimer {
  font-size: .74rem;
  font-weight: 300;
  color: var(--c-mid);
  text-align: center;
  margin-top: 2rem;
  font-style: italic;
}

/* =========================================================
   OBRIGADO PAGE
   ========================================================= */
.thanks {
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.thanks__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-sage);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 1.8rem;
}

.thanks__title {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  margin-bottom: 1rem;
}

.thanks__desc {
  font-size: .95rem;
  font-weight: 300;
  color: var(--c-mid);
  max-width: 44ch;
  margin: 0 auto 2.25rem;
  line-height: 1.75;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .hero__inner            { grid-template-columns: 1fr; }
  .hero__img               { max-width: 320px; width: 100%; margin: 0 auto; order: -1; }
  .intro__inner            { grid-template-columns: 1fr; }
  .sobre-grid              { grid-template-columns: 1fr; }
  .sobre-grid .hero__img   { max-width: 280px; margin: 0 auto; }
  .intro__inner .hero__img { max-width: 280px; margin: 0 auto; }
  .approach-grid           { grid-template-columns: 1fr; }
  .card-grid,
  .card-grid--2,
  .card-grid--4            { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid        { grid-template-columns: 1fr; }
  .social-proof__grid      { grid-template-columns: repeat(2, 1fr); }
  .blog-grid               { grid-template-columns: repeat(2, 1fr); }
  .footer__grid            { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav        { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile { display: flex; }
  .card-grid,
  .card-grid--2,
  .card-grid--4 { grid-template-columns: 1fr; }
  .blog-grid  { grid-template-columns: 1fr; }
  .checklist  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .footer__grid   { grid-template-columns: 1fr; }
  .hero__actions  { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
}

/* =========================================================
   WA FLOAT
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.22);
  z-index: 8000;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 26px rgba(0,0,0,.3); }
.wa-float svg { fill: #fff; flex-shrink: 0; }

/* =========================================================
   LANDING PAGE (single page, ads)
   ========================================================= */
.lp-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(251,247,241,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
  z-index: 200;
  display: flex;
  align-items: center;
}

.lp-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.lp-hero {
  /* `main` já reserva --nav-h no padding-top; aqui é só o respiro extra */
  padding: 1.5rem 0;
}

.lp-hero__title {
  font-family: var(--f-serif);
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.16;
  color: var(--c-dark);
  margin-bottom: .85rem;
}

.lp-hero__sub {
  font-size: .88rem;
  font-weight: 300;
  color: var(--c-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* =========================================================
   LP HERO v2 — foto pequena + painel com imagem de fundo + form na dobra
   ========================================================= */
.lp-hero__grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  align-items: center;
}

.lp-hero__panel {
  background:
    linear-gradient(rgba(251,247,241,.92), rgba(251,247,241,.97)),
    url("../img/stock-hero-bg-flores.jpg") center / cover no-repeat;
  border-radius: 18px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Selo pequeno (foto + tag) — visível só no mobile, garante que o
   headline/CTA sejam a primeira coisa vista, não a foto. */
.lp-hero__badge-row {
  display: none;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1rem;
}

.lp-hero__photo-badge {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--c-card);
  box-shadow: 0 8px 22px rgba(44,50,39,.15);
}

/* Painel com a foto grande — só no desktop, tamanho contido pra não
   dominar a primeira dobra */
.lp-hero__photo-panel {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  max-width: 320px;
  margin-left: auto;
  box-shadow: 0 24px 56px rgba(44,50,39,.14);
}
.lp-hero__photo-panel img { width: 100%; height: 100%; object-fit: cover; }

.lp-hero__panel .hero__crp { margin-top: .25rem; }
.lp-hero__panel .hero__tag { margin-bottom: .6rem; }

@media (max-width: 960px) {
  .lp-hero__grid { grid-template-columns: 1fr; }
  .lp-hero__photo-panel { display: none; }
  .lp-hero__badge-row { display: flex; }
  .lp-hero__tag--desktop { display: none; }
}

.lp-section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  border-top: 1px solid var(--c-border);
}

.lp-section--alt { background: var(--c-bg-alt); }

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}

.trust-bar__item {
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-sage-dark);
  line-height: 1.4;
}

@media (max-width: 720px) {
  .trust-bar { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 641px) {
  .lp-nav [data-lp-link] { display: inline-flex !important; }
}
