/* ============================================================
   Dra. Sara Lanzoni — Fisioterapia Domiciliar
   Design system: warm · human · therapeutic
   ============================================================ */

:root {
  /* Surfaces — soft creams (cool-warm) */
  --paper:      #FCFAF4;
  --cream:      #F1EFE6;
  --cream-2:    #E6E3D8;
  --card:       #FFFFFF;

  /* Ink — deep teal near-blacks */
  --ink:        #0E3F39;
  --ink-soft:   #4C5E57;
  --ink-faint:  #8A958F;

  /* Brand — sage-teal primary, deep teal, mint */
  --clay:       #2E8B76;
  --clay-deep:  #236E5D;
  --clay-soft:  #8FC4B5;
  --sage:       #5B9A86;
  --sage-deep:  #3F7060;
  --honey:      #7FCBB4;
  --sand:       #C9D8CF;

  /* Deep teal for dark sections / hero */
  --teal-deep:  #04302E;
  --teal-deep2: #0A4A44;

  --line:       rgba(14, 63, 57, 0.13);
  --line-soft:  rgba(14, 63, 57, 0.07);

  /* Type */
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Mulish", system-ui, -apple-system, sans-serif;

  --shadow-sm: 0 1px 2px rgba(14,63,57,.05), 0 2px 8px rgba(14,63,57,.05);
  --shadow-md: 0 4px 14px rgba(14,63,57,.08), 0 14px 40px rgba(14,63,57,.07);
  --shadow-lg: 0 10px 30px rgba(14,63,57,.12), 0 30px 70px rgba(14,63,57,.12);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 18px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
}
p { margin: 0 0 1em; text-wrap: pretty; }
::selection { background: var(--clay); color: #fff; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.wrap-narrow { max-width: 820px; }

/* Section rhythm */
.section { padding: 110px 0; }
.section-sm { padding: 76px 0; }

/* Eyebrow / kicker */
.kicker {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.kicker::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--clay);
  display: inline-block;
}
.kicker.center { justify-content: center; }

/* Display headings */
.display {
  font-size: clamp(2.5rem, 5.4vw, 4.3rem);
  line-height: 1.1;
  letter-spacing: -0.022em;
}
.h-sec {
  font-size: clamp(2rem, 3.6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.serif-it { font-style: italic; font-weight: 400; }
.lead {
  font-size: clamp(1.12rem, 1.7vw, 1.35rem);
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 400;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.005em;
  padding: 16px 28px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.7,.3,1), background .25s, box-shadow .25s, color .25s;
  line-height: 1;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 8px 22px rgba(46,139,118,.30); }
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(46,139,118,.38); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-light { background: var(--paper); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-wa { background: #1faa59; color: #fff; box-shadow: 0 8px 22px rgba(31,170,89,.26); }
.btn-wa:hover { background: #18914b; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(251,246,238,0.82);
  backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--clay); color: var(--paper);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 20px; font-weight: 600;
  flex: none;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,.14);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 21px; font-weight: 600; letter-spacing: -0.01em; white-space: nowrap; }
.brand-sub { font-size: 10.5px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--ink-faint); margin-top: 4px; font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 15.5px; font-weight: 600; color: var(--ink-soft);
  padding: 9px 15px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: var(--cream); }
.nav-links a.active { color: var(--clay); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .3s; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #E9E0D4; padding: 80px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; }
.footer-brand .brand-name { color: var(--paper); }
.footer-brand p { color: #9DB5AC; max-width: 320px; margin-top: 18px; font-size: 16px; }
.footer-col h4 { font-family: var(--sans); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--honey); margin-bottom: 18px; font-weight: 700; }
.footer-col a, .footer-col p { color: #AFC5BC; font-size: 16px; display: block; margin-bottom: 12px; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 54px; padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; color: #7E948C; font-size: 14px; }
.footer-bottom a { color: #7E948C; }

/* ---------- Photo slot placeholder ---------- */
.photo-slot {
  position: relative;
  background:
    repeating-linear-gradient(135deg, var(--cream) 0 14px, var(--cream-2) 14px 28px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  color: var(--ink-faint);
  overflow: hidden;
}
.photo-slot span {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 12.5px; letter-spacing: .02em;
  text-align: center; padding: 14px 18px; max-width: 80%;
  background: rgba(251,246,238,.7); border-radius: 8px;
}

/* ---------- Cards ---------- */
.card {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line); }
.card-ico {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--cream); color: var(--clay);
  display: grid; place-items: center; margin-bottom: 22px;
}
.card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 16.5px; margin: 0; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* Service photo cards (image-topped) */
.serv-photo-card {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s, border-color .3s;
  display: flex; flex-direction: column;
}
.serv-photo-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line); }
.serv-photo-img { aspect-ratio: 4/3; overflow: hidden; background: var(--cream-2); }
.serv-photo-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.7,.3,1); }
.serv-photo-card:hover .serv-photo-img img { transform: scale(1.05); }
.serv-photo-body { padding: 26px 26px 30px; }
.serv-photo-body h3 { font-size: 1.35rem; margin-bottom: 10px; }
.serv-photo-body p { color: var(--ink-soft); font-size: 16px; margin: 0; }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-soft);
  background: var(--card); border: 1px solid var(--line);
  padding: 9px 16px; border-radius: 999px;
}
.chip .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); flex: none; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--cream); padding: 92px 0 84px; border-bottom: 1px solid var(--line-soft); }
.page-hero .lead { max-width: 640px; margin-top: 20px; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: 14px; font-weight: 600; color: var(--ink-faint); margin-bottom: 22px; letter-spacing: .02em; }
.crumb a:hover { color: var(--clay); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--clay); color: #fff; border-radius: var(--r-lg); padding: 64px 56px; position: relative; overflow: hidden; }
.cta-band::after { content:""; position:absolute; right:-80px; top:-80px; width:300px; height:300px; border-radius:50%; background: rgba(255,255,255,.07); }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.86); }

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font-size: 14px; font-weight: 700; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--paper); transition: border-color .2s, box-shadow .2s; width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--clay); box-shadow: 0 0 0 4px rgba(46,139,118,.14);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ---------- Reveal on scroll (no-JS safe: visible by default) ---------- */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
.js .reveal.in { opacity: 1; transform: none; }
.reveal-all .reveal { opacity: 1 !important; transform: none !important; }
@media (prefers-reduced-motion: reduce) { .js .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Mobile nav panel ---------- */
.mobile-panel {
  position: fixed; inset: 78px 0 auto 0; z-index: 55;
  background: var(--paper); border-bottom: 1px solid var(--line);
  padding: 18px 32px 28px; display: none; box-shadow: var(--shadow-md);
}
.mobile-panel.open { display: block; }
.mobile-panel a { display: block; font-size: 18px; font-weight: 600; padding: 13px 0; border-bottom: 1px solid var(--line-soft); color: var(--ink); }
.mobile-panel .btn { width: 100%; justify-content: center; margin-top: 18px; }

/* ============================================================
   HOME / SHARED SECTIONS
   ============================================================ */

/* Hero */
.hero { background: linear-gradient(155deg, var(--teal-deep) 0%, var(--teal-deep2) 100%); padding: 78px 0 96px; overflow: hidden; }
.hero .display { color: #fff; }
.hero .serif-it { color: var(--honey); }
.hero .lead { color: rgba(255,255,255,.80); }
.hero .kicker { color: var(--honey); }
.hero .kicker::before { background: var(--honey); }
.hero .chip { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.20); color: #EAF3EF; }
.hero .chip .dot { background: var(--honey); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.42); }
.hero .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.06); }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero-copy .display { margin: 10px 0 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 30px; }
.hero-cred { gap: 10px; }

.hero-figure { position: relative; }
.hero-photo {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--card);
  aspect-ratio: 466/304;
  background: var(--cream-2);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-figure::before {
  content: ""; position: absolute; inset: -22px -22px auto auto;
  width: 180px; height: 180px; border-radius: 50%;
  background: var(--honey); opacity: .5; z-index: -1;
}
.hero-cred-card {
  position: absolute; left: -18px; bottom: -22px;
  background: var(--card); border-radius: 16px; padding: 16px 22px;
  box-shadow: var(--shadow-md); display: flex; flex-direction: column; gap: 1px;
  border: 1px solid var(--line-soft); max-width: 210px;
}
.hero-cred-card .hcc-label { font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.hero-cred-card .hcc-num { font-family: var(--serif); font-size: 26px; font-weight: 600; color: var(--ink); line-height: 1.1; }
.hero-cred-card .hcc-sub { font-size: 13px; color: var(--clay); font-weight: 600; margin-top: 2px; }

/* Value strip */
.value-strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); padding: 44px 0; background: var(--paper); }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.value-item { display: flex; gap: 15px; align-items: flex-start; }
.value-item svg { width: 30px; height: 30px; color: var(--clay); flex: none; margin-top: 2px; }
.value-item h3 { font-family: var(--sans); font-size: 16px; font-weight: 800; margin-bottom: 3px; }
.value-item p { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.4; }

/* Section heads */
.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.row { display: flex; justify-content: space-between; align-items: flex-end; max-width: none; gap: 24px; }
.sec-head .lead { margin-top: 18px; }
.sec-foot { margin-top: 46px; text-align: center; }

/* About preview */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about-media { position: relative; }
.about-photo {
  border-radius: var(--r-md); overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg); border: 8px solid var(--card); background: var(--cream-2);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.about-tag {
  position: absolute; right: -16px; bottom: -16px;
  background: var(--clay); color: #fff; border-radius: 16px;
  padding: 20px 24px; font-family: var(--serif); font-size: 22px; line-height: 1.25;
  box-shadow: var(--shadow-md); max-width: 220px;
}
.about-text .lead { margin: 16px 0; }
.about-stats { display: flex; gap: 38px; margin: 30px 0 32px; flex-wrap: wrap; }
.about-stats strong { font-family: var(--serif); font-size: 38px; font-weight: 600; color: var(--clay); display: block; line-height: 1; }
.about-stats span { font-size: 14px; color: var(--ink-soft); }

/* Process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.step { padding-top: 26px; border-top: 2px solid var(--line); }
.step-num { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--clay); display: block; margin-bottom: 14px; letter-spacing: .04em; }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 16px; margin: 0; }

/* Why / diferenciais */
.why-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: center; }
.why-text p { margin: 18px 0 26px; font-size: 17.5px; }
.why-list { list-style: none; padding: 0; margin: 0 0 32px; display: grid; gap: 14px; }
.why-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 17px; color: #CFE3DB; }
.why-list .tick { color: var(--honey); font-weight: 700; flex: none; }

/* Why — design panel (no photo) */
.why-panel {
  background: linear-gradient(160deg, var(--teal-deep) 0%, var(--teal-deep2) 100%);
  border: 1px solid rgba(127,203,180,.22);
  border-radius: var(--r-lg);
  padding: 44px 42px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.why-quote-mark { width: 44px; height: 44px; color: var(--honey); opacity: .85; margin-bottom: 14px; }
.why-quote {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem); line-height: 1.34;
  color: #EAF3EF; margin: 0 0 30px;
}
.why-panel-foot { display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(127,203,180,.22); padding-top: 24px; }
.why-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--clay); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 22px; font-weight: 600; flex: none; }
.why-author { display: flex; flex-direction: column; font-size: 14.5px; color: #A7C2B9; line-height: 1.45; }
.why-author strong { color: #fff; font-size: 16.5px; font-weight: 700; }

/* Testimonials */
.testi-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 32px 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; height: 100%; }
.testi-card .stars { color: var(--clay); letter-spacing: 3px; font-size: 15px; margin-bottom: 16px; }
.testi-card blockquote { font-family: var(--serif); font-size: 1.2rem; line-height: 1.5; color: var(--ink); margin: 0 0 22px; font-style: italic; flex: 1; }
.testi-card figcaption { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--line-soft); padding-top: 16px; }
.t-name { font-weight: 800; font-size: 15.5px; }
.t-rel { font-size: 13.5px; color: var(--ink-faint); }

/* Blog cards */
.post-card { display: block; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-thumb { aspect-ratio: 16/10; border-radius: 0; border: none; border-bottom: 1px solid var(--line-soft); }
.post-body { padding: 26px 26px 30px; }
.post-tag { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 14px; }
.post-card h3 { font-size: 1.32rem; line-height: 1.18; margin-bottom: 12px; }
.post-body p { color: var(--ink-soft); font-size: 16px; margin-bottom: 16px; }
.post-link { font-weight: 700; color: var(--clay); font-size: 15px; }

/* CTA band inner */
.cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; position: relative; z-index: 1; }
.cta-inner .h-sec { margin: 8px 0 14px; }
.cta-actions { display: flex; flex-direction: column; gap: 12px; flex: none; }

@media (max-width: 980px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 30px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 34px 28px; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-figure { max-width: 420px; margin: 0 auto; width: 100%; }
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-media { max-width: 420px; }
  .sec-head.row { flex-direction: column; align-items: flex-start; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: row; flex-wrap: wrap; }
  .steps { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .value-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .about-stats { gap: 26px; }
}

/* ============================================================
   SOBRE
   ============================================================ */
.sobre-hero { background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%); padding: 64px 0 84px; }
.sobre-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; }
.sobre-intro .display { margin: 14px 0 24px; }
.sobre-intro .hero-cred { margin-top: 24px; }
.sobre-figure { position: relative; }
.sobre-photo {
  border-radius: 24px; overflow: hidden; aspect-ratio: 4/5;
  box-shadow: var(--shadow-lg); border: 8px solid var(--card);
  background: var(--cream-2);
}
.sobre-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.sobre-figure::after {
  content: ""; position: absolute; left: -26px; bottom: -26px;
  width: 130px; height: 130px; border-radius: 24px; background: var(--sage); opacity: .25; z-index: -1;
}

.bio .h-sec { margin-top: 14px; max-width: 700px; }
.bio-body { margin-top: 34px; }
.bio-body p { font-size: 18.5px; color: var(--ink-soft); margin-bottom: 1.2em; }
.bio-body strong { color: var(--ink); font-weight: 700; }
.pull-quote {
  font-family: var(--serif); font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.3;
  font-style: italic; color: var(--clay); margin: 40px 0 0; padding: 0 0 0 28px;
  border-left: 3px solid var(--clay); text-wrap: pretty;
}

.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.form-item { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 30px 28px; box-shadow: var(--shadow-sm); }
.form-year { font-size: 12.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-deep); display: block; margin-bottom: 12px; }
.form-item h3 { font-size: 1.35rem; margin-bottom: 10px; }
.form-item p { font-size: 16px; color: var(--ink-soft); margin: 0; }

@media (max-width: 980px) {
  .form-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 48px; }
  .sobre-figure { max-width: 420px; }
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVIÇOS
   ============================================================ */
.page-hero .display { margin-top: 8px; max-width: 900px; }
.serv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.serv-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 38px 36px; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.serv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.serv-card h3 { font-size: 1.55rem; margin-bottom: 12px; }
.serv-card > p { color: var(--ink-soft); font-size: 16.5px; margin-bottom: 20px; }
.serv-list { list-style: none; padding: 18px 0 0; margin: 0; border-top: 1px solid var(--line-soft); display: grid; gap: 11px; }
.serv-list li { position: relative; padding-left: 26px; font-size: 15.5px; color: var(--ink); }
.serv-list li::before { content: "✓"; position: absolute; left: 0; color: var(--clay); font-weight: 700; }

.cond-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.cond-text .lead { margin: 16px 0 28px; }
.cond-chips { display: flex; flex-wrap: wrap; gap: 12px; }
.cond-chips .chip { font-size: 15.5px; padding: 11px 18px; }

@media (max-width: 860px) {
  .serv-grid { grid-template-columns: 1fr; }
  .cond-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   BLOG
   ============================================================ */
.featured { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 0; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.featured:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.featured-media { border: none; border-radius: 0; min-height: 380px; }
.featured-body { padding: 52px 50px; display: flex; flex-direction: column; justify-content: center; }
.featured-body h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); line-height: 1.12; margin-bottom: 16px; }
.featured-body p { color: var(--ink-soft); font-size: 17.5px; margin-bottom: 24px; }
.meta-row { display: flex; justify-content: space-between; align-items: center; font-size: 14.5px; color: var(--ink-faint); font-weight: 600; }

/* ============================================================
   ARTICLE
   ============================================================ */
.article-hero { background: var(--cream); padding: 64px 0 56px; border-bottom: 1px solid var(--line-soft); }
.article-hero .post-tag { color: var(--clay); }
.article-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); line-height: 1.1; max-width: 880px; margin: 14px 0 22px; }
.article-meta { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--ink-soft); font-weight: 600; }
.article-meta .av { width: 40px; height: 40px; border-radius: 50%; background: var(--clay); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; }
.article-cover { margin: 0 0 8px; }
.article-cover .photo-slot { aspect-ratio: 21/9; border-radius: var(--r-md); }

.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-size: 19px; line-height: 1.7; color: #33453F; margin: 0 0 1.35em; }
.prose h2 { font-size: 1.8rem; margin: 1.6em 0 .5em; }
.prose h3 { font-size: 1.35rem; margin: 1.4em 0 .4em; }
.prose ul { margin: 0 0 1.4em; padding-left: 0; list-style: none; display: grid; gap: 12px; }
.prose ul li { position: relative; padding-left: 30px; font-size: 18px; line-height: 1.6; color: #33453F; }
.prose ul li::before { content: "✓"; position: absolute; left: 0; top: 1px; color: var(--clay); font-weight: 700; }
.prose blockquote { font-family: var(--serif); font-style: italic; font-size: 1.5rem; line-height: 1.4; color: var(--clay); border-left: 3px solid var(--clay); margin: 1.6em 0; padding-left: 26px; }
.prose strong { font-weight: 700; color: var(--ink); }
.article-cta { background: var(--cream); border-radius: var(--r-md); padding: 36px 40px; margin-top: 48px; text-align: center; }
.article-cta h3 { font-size: 1.5rem; margin-bottom: 10px; }
.article-cta p { color: var(--ink-soft); margin-bottom: 22px; }

@media (max-width: 860px) {
  .featured { grid-template-columns: 1fr; }
  .featured-media { min-height: 240px; }
  .featured-body { padding: 36px 30px; }
  .prose p { font-size: 18px; }
}

/* ============================================================
   CONTATO
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: start; }
.contact-info .info-item {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 22px; border: 1px solid var(--line-soft); border-radius: var(--r-md);
  background: var(--card); margin-bottom: 14px; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
a.info-item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--line); }
.info-ico { width: 46px; height: 46px; border-radius: 12px; background: var(--cream); color: var(--clay); display: grid; place-items: center; flex: none; }
.info-ico svg { width: 24px; height: 24px; }
.info-text { display: flex; flex-direction: column; line-height: 1.4; font-size: 16.5px; color: var(--ink); }
.info-text strong { font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); font-weight: 800; margin-bottom: 2px; }

.contact-form { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: 40px 38px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-size: 1.6rem; margin-bottom: 6px; }
.form-intro { color: var(--ink-soft); font-size: 16px; margin-bottom: 24px; }
.form-note { font-size: 13.5px; color: var(--ink-faint); text-align: center; margin: 14px 0 0; }

.faq-list { display: grid; gap: 0; margin-top: 8px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 8px 0; }
.faq-item summary { font-family: var(--serif); font-size: 1.3rem; font-weight: 500; cursor: pointer; padding: 18px 40px 18px 0; position: relative; list-style: none; color: var(--ink); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 26px; color: var(--clay); font-family: var(--sans); transition: transform .3s; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { color: var(--ink-soft); font-size: 17px; margin: 0 0 18px; padding-right: 40px; }

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 32px 26px; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  body { font-size: 17px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .section { padding: 76px 0; }
  .section-sm { padding: 56px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 30px; }
  .wrap { padding: 0 22px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
}
