/* ==========================================================================
   Ana Lépore — Design System
   Paleta extraída da fotografia real do studio (ondas do mural, blazer,
   ambiente) + cor de marca declarada no site anterior (#E8B4C7).
   Tipografia: Cormorant Garamond (display) + Inter (corpo).
   Status: sistema provisório até chegada do logo oficial em alta.
   ========================================================================== */

:root {
  /* Paleta — cor de marca extraída por análise de pixel do logo oficial (#FF9999) */
  --cream:        #FBF6F0;
  --cream-deep:   #F2E8DE;
  --cream-line:   #E7D9CB;
  --rose:         #FF9999;
  --rose-soft:    #FDE7E7;
  --rose-deep:    #D9727A;
  --sage:         #A6AD84;
  --sage-soft:    #DCE0CD;
  --sage-deep:    #6F7754;
  --forest:       #1C2620;
  --forest-soft:  #263229;
  --forest-line:  #34413A;
  --taupe:        #B99C85;
  --ink:          #2B241F;
  --ink-soft:     #6B5F55;
  --white:        #FFFFFF;

  /* Tipografia */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Escala */
  --container: 1240px;
  --container-narrow: 820px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow-soft: 0 24px 60px -24px rgba(28, 38, 32, 0.28);
  --shadow-card: 0 12px 32px -16px rgba(28, 38, 32, 0.18);
  --space-section: clamp(64px, 9vw, 128px);
  color-scheme: only light;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html { background: var(--cream); }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  -webkit-text-fill-color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p, figure { margin: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
svg { width: 1em; height: 1em; display: inline-block; flex-shrink: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--forest);
  -webkit-text-fill-color: var(--forest);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.005em;
}
h1 { font-size: clamp(2.5rem, 4.6vw, 4.4rem); font-weight: 600; }
h2 { font-size: clamp(2rem, 3.4vw, 3.1rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; }

p { line-height: 1.7; color: var(--ink-soft); -webkit-text-fill-color: var(--ink-soft); font-size: 1.02rem; }
p.lead { font-size: 1.2rem; color: var(--ink); -webkit-text-fill-color: var(--ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
section { padding-block: var(--space-section); background: var(--cream); }
.section-tight { padding-block: clamp(40px, 6vw, 72px); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 14px; -webkit-text-fill-color: var(--sage-deep);}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--rose-deep);
  display: inline-block;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  min-height: 52px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: var(--forest);
  color: var(--cream) !important;
  -webkit-text-fill-color: var(--cream);
}
.btn-primary:hover { background: var(--forest-soft); transform: translateY(-2px); box-shadow: var(--shadow-card); }
.btn-outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest) !important;
  -webkit-text-fill-color: var(--forest);
}
.btn-outline:hover { background: var(--forest); color: var(--cream) !important; -webkit-text-fill-color: var(--cream); }
.btn-outline.on-dark {
  border-color: var(--cream);
  color: var(--cream) !important;
  -webkit-text-fill-color: var(--cream);
}
.btn-outline.on-dark:hover { background: var(--cream); color: var(--forest) !important; -webkit-text-fill-color: var(--forest); }
.btn-rose {
  background: var(--rose);
  color: var(--forest) !important;
  -webkit-text-fill-color: var(--forest);
}
.btn-rose:hover { background: var(--rose-deep); color: var(--white) !important; -webkit-text-fill-color: var(--white); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-sm { padding: 11px 20px; min-height: 44px; font-size: 0.9rem; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--forest);
  border-bottom: 1px solid var(--forest-line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}
.logo-full-mark .logo-img { height: 48px; width: auto; object-fit: contain; display: block; flex-shrink: 0; }
.footer-grid .logo-full-mark .logo-img { height: 62px; }

.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  -webkit-text-fill-color: var(--cream);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: border-color .18s ease, color .18s ease;
  opacity: 0.92;
}
.main-nav a:hover, .main-nav a.active { border-color: var(--rose); color: var(--rose); -webkit-text-fill-color: var(--rose); opacity: 1; }
.header-cta { display: flex; align-items: center; gap: 14px; }
.main-nav .header-cta { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--cream); -webkit-text-fill-color: var(--cream);}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 1080px) {
  .main-nav {
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--forest);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 28px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
    overflow-y: auto;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a { padding: 16px 4px; border-bottom: 1px solid var(--forest-line); font-size: 1.05rem; }
  .main-nav .header-cta { display: flex; margin-top: 18px; }
  .nav-toggle { display: inline-flex; }
  .header-cta.desktop-only { display: none; }
}

/* ---------- Floats (WhatsApp + Instagram) ---------- */
.float-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}
.float-btn:hover { transform: translateY(-3px) scale(1.04); }
.float-btn svg { width: 27px; height: 27px; }
.wa-float {
  background: #25D366;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff;
}
.ig-float {
  background: var(--forest);
  color: var(--rose) !important;
  -webkit-text-fill-color: var(--rose);
  border: 1.5px solid var(--rose);
}

/* ---------- Hero ---------- */
.hero { background: var(--cream); padding-block: 0; }

/* Imagem em tela cheia — sem placeholder, sem card, sem texto por cima.
   Transição suave (fade) na borda inferior, pra não cortar seco na próxima seção. */
.hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-deep);
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 89% 50%; display: block; transform: scale(1.02); }
.hero-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,38,32,0.14) 0%, rgba(28,38,32,0) 22%, rgba(28,38,32,0) 68%, rgba(251,246,240,0.55) 100%);
  pointer-events: none;
}
@media (min-width: 700px) { .hero-visual { aspect-ratio: 16 / 9; } .hero-visual img { object-position: 50% 0%; } }
@media (min-width: 1200px) { .hero-visual { aspect-ratio: 21 / 8; } .hero-visual img { object-position: 50% 6%; } }

.hero-copy-wrap { padding-block: clamp(40px, 6vw, 68px); position: relative; z-index: 3; }
.hero-copy { max-width: 760px; }
.hero-copy .badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid var(--cream-line);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-pill); -webkit-text-fill-color: var(--ink);}
.badge svg { width: 15px; height: 15px; color: var(--rose-deep); -webkit-text-fill-color: var(--rose-deep);}
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .hero-sub { font-size: 1.15rem; margin-bottom: 30px; max-width: 56ch; }

/* ---------- Wave divider decorativo (eco do mural) ---------- */
.wave-divider { display: block; width: 100%; height: 46px; margin-top: -2px; position: relative; z-index: 2; }
@media (min-width: 700px) { .wave-divider { height: 64px; } }
.section-sage-tint { background: var(--sage-soft); }
.section-rose-tint { background: var(--rose-soft); }
.section-cream-deep { background: var(--cream-deep); }

/* ---------- Cards de serviço ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
@media (max-width: 940px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-card);
  border: 1.5px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 54px -22px rgba(28,38,32,0.32);
  border-color: var(--rose-soft);
}
.card .icon-badge {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--rose-soft);
  color: var(--rose-deep);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 6px;
  transition: transform .3s ease, background .3s ease; -webkit-text-fill-color: var(--rose-deep);}
.card:hover .icon-badge { transform: scale(1.08) rotate(-4deg); background: var(--rose); }
.card .icon-badge svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.4rem; }
.card p { flex: 1; }
.card .card-link { font-weight: 700; color: var(--forest); display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; padding: 8px 0; min-height: 44px; -webkit-text-fill-color: var(--forest);}
.card .card-link svg { width: 16px; height: 16px; transition: transform .18s ease; }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Persona / seletor ---------- */
.persona-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 940px) { .persona-grid { grid-template-columns: 1fr; } }
.persona-grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 1100px) { .persona-grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .persona-grid-5 { grid-template-columns: 1fr; } }

/* ---------- Depoimentos ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
@media (max-width: 940px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .22s ease, box-shadow .22s ease;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 24px 46px -20px rgba(28,38,32,0.28); }
.testimonial-card .stars { display: flex; gap: 2px; color: var(--rose-deep); -webkit-text-fill-color: var(--rose-deep);}
.testimonial-card .stars svg { width: 15px; height: 15px; }
.testimonial-quote { font-size: 0.95rem; line-height: 1.65; color: var(--ink); flex: 1; -webkit-text-fill-color: var(--ink);}
.testimonial-author { border-top: 1px solid var(--cream-line); padding-top: 12px; display: flex; flex-direction: column; }
.testimonial-author strong { color: var(--forest); font-size: 0.92rem; -webkit-text-fill-color: var(--forest);}
.testimonial-author span { font-size: 0.8rem; color: var(--sage-deep); font-weight: 600; -webkit-text-fill-color: var(--sage-deep);}
.persona-card {
  border: 1.5px solid var(--cream-line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: border-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.persona-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--rose-soft), transparent 60%);
  opacity: 0;
  transition: opacity .25s ease;
}
.persona-card:hover { border-color: var(--rose-deep); transform: translateY(-6px); box-shadow: var(--shadow-card); }
.persona-card:hover::before { opacity: 1; }
.persona-card > * { position: relative; z-index: 1; }
.persona-card .num { font-family: var(--font-display); font-size: 2.2rem; color: var(--rose-deep); transition: transform .25s ease; -webkit-text-fill-color: var(--rose-deep);}
.persona-card:hover .num { transform: translateX(4px); }

/* ---------- Sobre / bio ---------- */
.about-split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
@media (max-width: 900px) { .about-split { grid-template-columns: 1fr; } }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.about-media img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 18%; aspect-ratio: 4/5; }
.stat-row { display: flex; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
.stat-row .stat strong { display: block; font-family: var(--font-display); font-size: 2.1rem; color: var(--forest); -webkit-text-fill-color: var(--forest);}
.stat-row .stat span { font-size: 0.85rem; color: var(--ink-soft); -webkit-text-fill-color: var(--ink-soft);}

/* ---------- Resposta direta (GEO) ---------- */
.direct-answer {
  background: var(--white);
  border-left: 4px solid var(--rose-deep);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  margin-block: 24px;
  box-shadow: var(--shadow-card);
}
.direct-answer p { color: var(--ink); font-size: 1.04rem; margin: 0; -webkit-text-fill-color: var(--ink);}
.direct-answer .tag { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage-deep); display: block; margin-bottom: 8px; -webkit-text-fill-color: var(--sage-deep);}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--cream-line);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 700;
  color: var(--forest);
  font-size: 1.04rem; -webkit-text-fill-color: var(--forest);}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--rose-soft); color: var(--rose-deep); display: flex; align-items: center; justify-content: center; transition: transform .2s ease; -webkit-text-fill-color: var(--rose-deep);}
.faq-item[open] summary .plus { transform: rotate(45deg); }
.faq-item .faq-answer { padding: 0 24px 22px; }
.faq-item .faq-answer p { margin: 0; }

/* ---------- Blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px; }
@media (max-width: 940px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  height: 100%;
  transition: transform .22s ease, box-shadow .22s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: 0 28px 54px -22px rgba(28,38,32,0.32); }
.post-card .post-thumb {
  height: 168px;
  overflow: hidden;
  position: relative;
}
.post-card .post-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card .post-meta { font-size: 0.78rem; color: var(--sage-deep); font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; -webkit-text-fill-color: var(--sage-deep);}
.post-card h3 { font-size: 1.25rem; transition: color .18s ease; }
.post-card:hover h3 { color: var(--rose-deep); -webkit-text-fill-color: var(--rose-deep);}
.post-card .post-excerpt { flex: 1; }

/* Capa ilustrada dos artigos — foto real com selo de ícone, sem imagem genérica */
.post-cover-art { position: relative; width: 100%; height: 100%; }
.post-cover-art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.post-cover-icon {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
}
.post-cover-icon-inner {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  color: var(--forest);
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
  box-shadow: var(--shadow-card);
  transition: transform .35s ease; -webkit-text-fill-color: var(--forest);}
.post-cover-icon-inner svg { width: 26px; height: 26px; flex-shrink: 0; }
.post-card:hover .post-cover-icon-inner { transform: scale(1.1) rotate(-6deg); }

article.post-article { max-width: 760px; margin: 0 auto; }
.post-article .post-cover { border-radius: var(--radius-lg); overflow: hidden; margin: 24px 0 32px; box-shadow: var(--shadow-card); aspect-ratio: 16/9; position: relative; }
.post-article .post-cover .post-cover-icon { left: 24px; bottom: 24px; }
.post-article .post-cover .post-cover-icon-inner { width: 68px; height: 68px; }
.post-article .post-cover .post-cover-icon-inner svg { width: 34px; height: 34px; }
.post-article h2 { margin-top: 40px; margin-bottom: 14px; }
.post-article p { margin-bottom: 18px; }
.post-article ul, .post-article ol { margin: 0 0 20px; padding-left: 22px; }
.post-article li { margin-bottom: 8px; color: var(--ink-soft); line-height: 1.7; -webkit-text-fill-color: var(--ink-soft);}
.post-article ul { list-style: disc; }
.post-article ol { list-style: decimal; }
.author-box {
  display: flex; align-items: center; gap: 14px;
  background: var(--white); border-radius: var(--radius-md); padding: 20px 22px;
  margin-top: 40px; box-shadow: var(--shadow-card);
}
.author-box .avatar {
  width: 52px; height: 52px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: var(--rose-soft);
}
.author-box .avatar img { width: 100%; height: 100%; object-fit: cover; object-position: 52% 15%; }
.author-box p { margin: 0; }
.author-box .author-name { font-weight: 700; color: var(--forest); -webkit-text-fill-color: var(--forest);}

/* ---------- Depoimento institucional ---------- */
.quote-block {
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.quote-block blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  color: var(--forest);
  -webkit-text-fill-color: var(--forest);
  line-height: 1.4;
  margin: 0 0 20px;
}
.quote-block cite { font-style: normal; font-weight: 700; color: var(--sage-deep); -webkit-text-fill-color: var(--sage-deep); font-size: 0.9rem; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---------- Rating strip ---------- */
.rating-strip { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.rating-strip .stars { display: flex; gap: 2px; color: var(--rose-deep); -webkit-text-fill-color: var(--rose-deep);}
.rating-strip .stars svg { width: 18px; height: 18px; }
.rating-strip span { font-weight: 700; color: var(--forest); -webkit-text-fill-color: var(--forest);}
.rating-strip small { color: var(--ink-soft); -webkit-text-fill-color: var(--ink-soft);}

/* ---------- Método / diferenciais ---------- */
.method-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 36px; }
@media (max-width: 760px) { .method-list { grid-template-columns: 1fr; } }
.method-item { display: flex; gap: 16px; }
.method-item .method-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--rose-deep);
  flex-shrink: 0;
  width: 44px; -webkit-text-fill-color: var(--rose-deep);}
.method-item h3, .persona-card h3, .process-item h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--forest);
  margin-bottom: 6px;
  line-height: 1.35; -webkit-text-fill-color: var(--forest);}
.veja-tambem-label {
  font-family: var(--font-body) !important;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 4px; -webkit-text-fill-color: var(--sage-deep);}

/* ---------- Unidade / mapa estilizado ---------- */
.map-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: var(--forest);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr; -webkit-text-fill-color: var(--cream);}
@media (max-width: 800px) { .map-card { grid-template-columns: 1fr; } }
.map-card .map-info { padding: clamp(28px, 4vw, 46px); }
.map-card .map-info p, .map-card .map-info a { color: var(--cream); -webkit-text-fill-color: var(--cream); }
.map-card .map-info .eyebrow { color: var(--rose); -webkit-text-fill-color: var(--rose);}
.map-card .map-info .eyebrow::before { background: var(--rose); }
.map-visual {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}
.map-photo { position: relative; display: block; width: 100%; height: 100%; min-height: 320px; }
.map-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.map-photo:hover img { transform: scale(1.05); }
.map-photo-badge {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--forest);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
  transition: transform .18s ease, background .18s ease; -webkit-text-fill-color: var(--forest);}
.map-photo-badge svg { width: 15px; height: 15px; }
.map-photo:hover .map-photo-badge { transform: translateY(-2px); background: var(--rose); }
.info-line { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.info-line svg { width: 20px; height: 20px; color: var(--rose); flex-shrink: 0; margin-top: 3px; -webkit-text-fill-color: var(--rose);}
.info-line strong { display: block; color: var(--cream); -webkit-text-fill-color: var(--cream); }

/* ---------- Footer ---------- */
.site-footer { background: var(--forest); color: var(--cream); padding-block: 64px 28px; -webkit-text-fill-color: var(--cream);}
.site-footer, .site-footer p, .site-footer a, .site-footer span, .site-footer strong {
  color: var(--cream);
  -webkit-text-fill-color: var(--cream);
}
.site-footer a:hover { color: var(--rose); -webkit-text-fill-color: var(--rose); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid .logo { margin-bottom: 16px; }
.footer-col .footer-label { color: var(--cream); -webkit-text-fill-color: var(--cream); font-family: var(--font-body); font-size: 0.92rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; opacity: 0.9; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col p { opacity: 0.85; font-size: 0.93rem; }
.footer-social { display: flex; gap: 12px; margin-top: 6px; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--forest-line);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  border-top: 1px solid var(--forest-line);
  margin-top: 48px;
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.82rem;
  opacity: 0.75;
}
.footer-disclaimer { max-width: 900px; opacity: 0.6; font-size: 0.78rem; margin-top: 18px; line-height: 1.6; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { display: flex; gap: 8px; flex-wrap: wrap; font-size: 0.85rem; color: var(--ink-soft); padding-top: 22px; -webkit-text-fill-color: var(--ink-soft);}
.breadcrumb a { color: var(--sage-deep); font-weight: 600; -webkit-text-fill-color: var(--sage-deep);}
.breadcrumb span { color: var(--ink-soft); -webkit-text-fill-color: var(--ink-soft);}

/* ---------- Page hero (páginas internas) ---------- */
.page-hero { padding-block: clamp(48px, 7vw, 84px) clamp(32px, 5vw, 56px); background: var(--cream-deep); }
.page-hero .eyebrow { margin-top: 6px; }
.page-hero p.lead { max-width: 62ch; margin-top: 16px; }

/* ---------- Galeria / placeholders honestos ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 40px; }
@media (max-width: 940px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: 1fr; } }
.gallery-placeholder {
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  background: linear-gradient(155deg, var(--sage-soft), var(--rose-soft));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; padding: 24px;
  border: 1px dashed var(--taupe);
}
.gallery-placeholder svg { width: 34px; height: 34px; color: var(--forest); opacity: .6; -webkit-text-fill-color: var(--forest);}
.gallery-placeholder span { font-size: 0.9rem; font-weight: 700; color: var(--forest); -webkit-text-fill-color: var(--forest);}
.gallery-placeholder small { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.4; -webkit-text-fill-color: var(--ink-soft);}

/* ---------- Processo (linha do tempo) ---------- */
.process-list { display: flex; flex-direction: column; gap: 0; margin-top: 40px; }
.process-item { display: grid; grid-template-columns: 60px 1fr; gap: 20px; padding-bottom: 36px; position: relative; }
.process-item:not(:last-child)::before {
  content: ""; position: absolute; left: 29px; top: 44px; bottom: 0; width: 2px; background: var(--cream-line);
}
.process-item .step-dot {
  width: 60px; height: 60px; border-radius: 50%; background: var(--white);
  border: 1.5px solid var(--rose-deep); color: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  flex-shrink: 0; z-index: 1; -webkit-text-fill-color: var(--forest);}

/* ---------- Form / contato ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; font-size: 0.9rem; color: var(--forest); margin-bottom: 8px; -webkit-text-fill-color: var(--forest);}
.field input, .field textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--cream-line); background: var(--white); color: var(--ink);
  min-height: 50px; -webkit-text-fill-color: var(--ink);}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--rose-deep); outline-offset: 1px; }
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin-top: 10px; -webkit-text-fill-color: var(--ink-soft);}

/* ---------- Utilitários ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.max-w-content { max-width: 62ch; }
.mx-auto { margin-left: auto; margin-right: auto; }
.on-dark, .on-dark p, .on-dark h1, .on-dark h2, .on-dark h3 { color: var(--cream) !important; -webkit-text-fill-color: var(--cream); }
.section-header { max-width: 720px; margin-bottom: 20px; }
.section-header.text-center { margin-left: auto; margin-right: auto; }
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.chip {
  background: var(--sage-soft); color: var(--sage-deep);
  font-size: 0.8rem; font-weight: 700; padding: 7px 14px; border-radius: var(--radius-pill); -webkit-text-fill-color: var(--sage-deep);}

/* ---------- Reveal opcional (com fallback de segurança) ---------- */
.reveal { opacity: 1; transform: none; }
.js-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.js-ready .reveal.is-visible { opacity: 1; transform: none; }

/* Efeito cascata em grids — pequeno atraso por item */
.grid-3 .reveal:nth-child(2), .persona-grid .reveal:nth-child(2), .post-grid .reveal:nth-child(2), .method-list .reveal:nth-child(2) { transition-delay: .08s; }
.grid-3 .reveal:nth-child(3), .persona-grid .reveal:nth-child(3), .post-grid .reveal:nth-child(3), .method-list .reveal:nth-child(3) { transition-delay: .16s; }
.grid-3 .reveal:nth-child(4), .method-list .reveal:nth-child(4) { transition-delay: .24s; }

@media (max-width: 640px) {
  .grid-3, .grid-2, .persona-grid, .method-list, .post-grid { gap: 18px; }
  section { padding-block: clamp(48px, 12vw, 80px); }
}
