/* Estilos da landing. Extraidos do HTML para as paginas do site compartilharem
   um arquivo so -- duplicar 600 linhas de CSS por pagina significa, mais cedo
   ou mais tarde, duas paginas com aparencias diferentes.
   O ?v= do link e trocado por server/static.js a cada boot, senao uma correcao
   levaria um dia para chegar em quem ja tinha o arquivo em cache. */

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

:root {
  /* Paleta herdada da identidade atual (variáveis globais do Elementor do site
     em WordPress). Os defaults do Elementor — #6EC1E4, #61CE70 — ficaram de
     fora de propósito: não são escolha de marca. */
  --sage:       #3F7562;
  --sage-deep:  #2C5344;
  --sage-soft:  #6E9B8B;
  --terracota:  #D4955B;
  --terracota-d:#B87A42;
  --bege:       #ECCBA0;
  --creme:      #F7EAD9;

  --ink:        #2C2A26;
  --ink-70:     rgba(44, 42, 38, .72);
  --ink-50:     rgba(44, 42, 38, .52);
  --paper:      #FFFDFA;
  --white:      #FFFFFF;

  --line:       #E9E0D3;
  --line-dark:  rgba(255, 255, 255, .16);
  --inv-75:     rgba(255, 255, 255, .78);
  --inv-50:     rgba(255, 255, 255, .55);

  --wrap: 1180px;
  --r-sm: 10px;
  --r:    18px;
  --r-lg: 28px;
  --shadow:    0 2px 4px rgba(44,42,38,.04), 0 14px 32px rgba(44,42,38,.08);
  --shadow-lg: 0 4px 10px rgba(44,42,38,.06), 0 28px 64px rgba(44,42,38,.14);
}

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: Manrope, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .font-display {
  font-family: Marcellus, Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.14;
  margin: 0;
}
h1 { font-size: clamp(2.3rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h3 { font-size: 1.22rem; line-height: 1.32; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 92px 0; }
@media (max-width: 760px) { .section { padding: 64px 0; } }

.eyebrow {
  font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: var(--terracota-d); margin: 0 0 14px;
}
.eyebrow.on-dark { color: var(--bege); }
.lede-lg { font-size: 1.12rem; color: var(--ink-70); max-width: 62ch; }
.on-dark .lede-lg, .lede-lg.on-dark { color: var(--inv-75); }

/* ------------------------------------------------------------------ botões */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: Manrope, sans-serif; font-size: .98rem; font-weight: 700;
  padding: 15px 28px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; transition: transform .16s, box-shadow .16s, background .16s;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--terracota); color: #fff; box-shadow: 0 8px 22px rgba(212,149,91,.34); }
.btn-primary:hover { background: var(--terracota-d); }
.btn-ghost { background: transparent; color: var(--sage); border-color: rgba(63,117,98,.34); }
.btn-ghost:hover { background: rgba(63,117,98,.07); }
.btn-ghost.on-dark { color: #fff; border-color: var(--line-dark); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,.1); }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: .96rem; color: var(--sage);
  text-decoration: none; border-bottom: 1.5px solid rgba(63,117,98,.3); padding-bottom: 2px;
}
.link-arrow:hover { border-bottom-color: var(--sage); }
.link-arrow.on-dark { color: var(--bege); border-bottom-color: rgba(236,203,160,.4); }

/* --------------------------------------------------------------------- nav */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,253,250,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-in { display: flex; align-items: center; gap: 28px; height: 80px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; margin-right: auto; }
.brand img { height: 55px; width: auto; }
.footer .brand img { height: 50px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { font-size: .93rem; font-weight: 600; color: var(--ink-70); text-decoration: none; }
.nav-links a:hover { color: var(--sage); }
.nav .btn { padding: 11px 22px; font-size: .9rem; }
@media (max-width: 940px) { .nav-links { display: none; } }
@media (max-width: 520px) { .nav .btn { display: none; } }

/* ------------------------------------------------------------------ S1 hero */
.hero { background: linear-gradient(180deg, var(--creme) 0%, var(--paper) 88%); padding: 76px 0 96px; }
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 64px; align-items: center; }
.hero h1 { margin-bottom: 20px; }
.hero p.hero-sub { font-size: 1.14rem; color: var(--ink-70); max-width: 52ch; margin-bottom: 30px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 34px; }
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .84rem; font-weight: 600; color: var(--sage);
  background: rgba(63,117,98,.09); border-radius: 999px; padding: 8px 16px;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--terracota); }

.hero-media { position: relative; }
/* As artes do hero e do "quem sou eu" chegam prontas do design: já trazem o
   fundo, o recorte em arco e a folhagem. Nada de moldura por CSS por cima —
   seria uma borda em volta de uma borda. */
.hero-art, .sobre-art { width: 100%; height: auto; border-radius: var(--r-lg); }
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero { padding-bottom: 72px; }
  .hero-media { max-width: 460px; margin: 0 auto; }
}

/* --------------------------------------------------------------- S2 sobre */
.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 62px; align-items: start; }
.quote-card {
  margin-top: 22px; background: var(--sage); color: #fff; border-radius: var(--r);
  padding: 26px 26px 28px; font-family: Marcellus, serif; font-size: 1.12rem; line-height: 1.45;
}
.quote-card::before { content: "”"; display: block; font-size: 3rem; line-height: .55; color: var(--bege); margin-bottom: 10px; }
.sign { font-size: .95rem; font-weight: 700; color: var(--sage); margin: 0 0 20px; }
.seals { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.seal {
  font-size: .83rem; font-weight: 700; color: var(--ink-70);
  border: 1px solid var(--line); background: var(--white);
  border-radius: 999px; padding: 8px 16px;
}
.bullets { list-style: none; margin: 14px 0 28px; padding: 0; display: grid; gap: 12px; }
.bullets li { display: flex; gap: 12px; align-items: flex-start; font-size: 1.02rem; color: var(--ink-70); }
.bullets svg { flex: 0 0 auto; margin-top: 4px; color: var(--sage); }
@media (max-width: 940px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

/* -------------------------------------------------------------- S3 sinais */
.sinais { background: var(--white); }
.head-center { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.head-center .lede-lg { margin: 16px auto 0; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 940px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-3 { grid-template-columns: 1fr; } }

.num-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 30px 26px 28px; position: relative; transition: transform .18s, box-shadow .18s;
}
.num-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.num-card .n {
  font-family: Marcellus, serif; font-size: 2.4rem; line-height: 1;
  color: var(--bege); margin-bottom: 14px;
}
.num-card h3 { margin-bottom: 9px; }
.num-card p { font-size: .97rem; color: var(--ink-70); }

/* --------------------------------------------------------------- S4 temas */
.temas { background: var(--sage); color: #fff; }
.temas h2, .temas h3 { color: #fff; }
.temas-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 48px; }
.temas-head .lede-lg { color: var(--inv-75); }
.tema-card {
  background: rgba(255,255,255,.07); border: 1px solid var(--line-dark);
  border-radius: var(--r); overflow: hidden; display: flex; flex-direction: column;
  transition: background .18s, transform .18s;
}
.tema-card:hover { background: rgba(255,255,255,.11); transform: translateY(-3px); }
.tema-media { aspect-ratio: 16 / 9; background: var(--sage-deep); position: relative; overflow: hidden; }
.tema-media img { width: 100%; height: 100%; object-fit: cover; }
.tema-media.is-placeholder img { display: none; }
.tema-media.is-placeholder::after {
  content: "foto"; position: absolute; inset: 0; display: grid; place-items: center;
  font-family: Marcellus, serif; letter-spacing: .2em; text-transform: uppercase;
  font-size: .78rem; color: rgba(255,255,255,.3);
  background: repeating-linear-gradient(135deg, var(--sage-deep) 0 14px, #26483B 14px 28px);
}
.tema-body { padding: 24px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.tema-body p { font-size: .96rem; color: var(--inv-75); flex: 1; }
@media (max-width: 760px) { .temas-head { flex-direction: column; align-items: flex-start; gap: 18px; } }

/* ------------------------------------------------------------ S5 processo */
.proc-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 58px; align-items: start; }
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { display: grid; grid-template-columns: 58px 1fr; gap: 20px; padding-bottom: 34px; position: relative; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: ""; position: absolute; left: 28px; top: 58px; bottom: 6px; width: 1.5px;
  background: linear-gradient(180deg, var(--bege), rgba(236,203,160,0));
}
.timeline li:last-child::before { display: none; }
.tl-n {
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: var(--creme); color: var(--sage); font-family: Marcellus, serif; font-size: 1.2rem;
  border: 1px solid var(--bege);
}
.timeline h3 { margin-bottom: 7px; }
.timeline p { font-size: .99rem; color: var(--ink-70); }

.why-box {
  background: var(--creme); border: 1px solid var(--bege); border-radius: var(--r-lg);
  padding: 34px 32px;
}
.why-box h3 { font-size: 1.35rem; margin-bottom: 20px; }
.why-list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 14px; }
.why-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; color: var(--ink-70); }
.why-list svg { flex: 0 0 auto; margin-top: 4px; color: var(--sage); }

.depo {
  margin-top: 26px; background: var(--white); border: 1px dashed var(--terracota);
  border-radius: var(--r); padding: 24px 26px;
}
.depo-flag {
  display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--terracota-d); background: rgba(212,149,91,.14);
  border-radius: 999px; padding: 5px 12px; margin-bottom: 14px;
}
.depo blockquote { margin: 0; font-family: Marcellus, serif; font-size: 1.08rem; line-height: 1.5; color: var(--ink-70); }
.depo cite { display: block; margin-top: 12px; font-style: normal; font-size: .9rem; font-weight: 700; color: var(--ink-50); }
@media (max-width: 940px) { .proc-grid { grid-template-columns: 1fr; gap: 40px; } }

/* -------------------------------------------------------------------- FAQ */
.faq { background: var(--white); }
.acc-list { max-width: 820px; margin: 0 auto; }
.acc { border-bottom: 1px solid var(--line); }
.acc-btn {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: Marcellus, serif; font-size: 1.1rem; color: var(--ink);
  padding: 24px 44px 24px 0; position: relative; line-height: 1.35;
}
.acc-btn::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-family: Manrope, sans-serif; font-size: 1.5rem; color: var(--terracota); transition: transform .2s;
}
.acc.is-open .acc-btn::after { content: "–"; }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.acc.is-open .acc-panel { max-height: 520px; }
.acc-panel p { padding: 0 40px 24px 0; color: var(--ink-70); font-size: 1rem; }

/* -------------------------------------------------------- S7 formulario */
.cta-final { background: var(--sage); color: #fff; }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 58px; align-items: center; }
.cta-final h2 { color: #fff; margin-bottom: 16px; }
.cta-final .lede-lg { color: var(--inv-75); }
.form-card {
  background: var(--white); color: var(--ink); border-radius: var(--r-lg);
  padding: 32px 30px; box-shadow: var(--shadow-lg);
}
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 7px; color: var(--ink-70); }
.field .opt { font-weight: 500; color: var(--ink-50); }
.field input, .field select {
  width: 100%; font-family: Manrope, sans-serif; font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232C2A26' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center;
}
.field input:focus, .field select:focus { outline: 0; border-color: var(--sage); background: var(--white); }
.form-msg { font-size: .88rem; margin: 0 0 12px; display: none; }
.form-msg.is-on { display: block; }
.form-msg.is-error { color: #B3261E; }
.form-fine { font-size: .82rem; color: var(--ink-50); margin-top: 14px; line-height: 1.5; }
.form-ok { display: none; text-align: center; padding: 18px 4px; }
.form-card.is-done .form-ok, .modal-box.is-done .form-ok { display: block; }
.form-card.is-done form, .form-card.is-done .form-fine,
.modal-box.is-done form, .modal-box.is-done h3#lead-title, .modal-box.is-done .lede { display: none; }
.form-ok .ok-mark {
  width: 54px; height: 54px; border-radius: 50%; background: rgba(63,117,98,.12);
  display: grid; place-items: center; margin: 0 auto 16px; color: var(--sage);
}
.form-ok h3 { margin-bottom: 8px; }
.form-ok p { color: var(--ink-70); font-size: .98rem; }
.cta-alt { margin-top: 22px; text-align: center; }
@media (max-width: 940px) { .cta-grid { grid-template-columns: 1fr; gap: 36px; } }

/* Variante /whatsapp: sem formulário, o CTA final vira um toque só. */
.direct-card { display: none; }
[data-cta-mode="direct"] .form-card { display: none; }
[data-cta-mode="direct"] .direct-card { display: block; }

/* ----------------------------------------------------------------- footer */
.footer { background: var(--sage-deep); color: var(--inv-75); padding: 54px 0 34px; font-size: .92rem; }
.footer-in { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: flex-start; }
.footer .logo-inv { filter: brightness(0) invert(1); opacity: .9; }
.footer a { color: var(--inv-75); text-decoration: none; }
.footer a:hover { color: #fff; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom {
  margin-top: 34px; padding-top: 22px; border-top: 1px solid var(--line-dark);
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  font-size: .84rem; color: var(--inv-50);
}

/* ------------------------------------------------------- whatsapp + modal */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: #fff; border: 0; cursor: pointer;
  border-radius: 999px; padding: 14px 20px; font-family: Manrope, sans-serif;
  font-size: .93rem; font-weight: 700; box-shadow: 0 10px 28px rgba(37,211,102,.4);
}
.wa-float:hover { background: #1FBA5A; }
@media (max-width: 520px) { .wa-float span { display: none; } .wa-float { padding: 15px; } }

.modal {
  position: fixed; inset: 0; z-index: 90; background: rgba(44,42,38,.55);
  display: grid; place-items: center; padding: 20px; opacity: 0; transition: opacity .18s;
}
/* Sem isto o `display: grid` acima vence o display:none que o navegador da
   ao atributo [hidden], e o modal fechado vira uma camada transparente de
   tela inteira em z-index 90 -- toda CTA da pagina para de receber clique,
   sem erro nenhum no console. */
.modal[hidden] { display: none; }
.modal.is-on { opacity: 1; }
.modal-box {
  background: var(--white); border-radius: var(--r-lg); padding: 32px 30px;
  width: 100%; max-width: 420px; position: relative; box-shadow: var(--shadow-lg);
}
.modal-close {
  position: absolute; right: 16px; top: 14px; background: none; border: 0;
  font-size: 1.15rem; cursor: pointer; color: var(--ink-50); line-height: 1;
}
.modal-box h3 { margin-bottom: 8px; }
.modal-box .lede { color: var(--ink-70); font-size: .97rem; margin-bottom: 22px; }
.modal-fine { font-size: .8rem; color: var(--ink-50); margin-top: 14px; text-align: center; }
/* O botao flutuante promete "digite seu numero e pronto". Perguntar mais ali
   quebraria a promessa, entao o contexto so aparece no formulario completo. */
#lead-modal[data-mode="quick"] .field-contexto { display: none; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
