/* =========================================================
   Dra. Nara Brito · Ginecologia & Saúde da Mulher
   Sistema de design
   Paleta: verde-floresta profundo · rosa/magenta · creme
   Tipografia: Fraunces (display editorial) + Inter (UI/corpo)
   ========================================================= */

:root {
  /* Cores da marca */
  --green-900: #0F3025;   /* verde mais escuro (fundos, texto forte) */
  --green-800: #14402F;
  --green-700: #1B5E3F;   /* verde-mãe da marca */
  --green-500: #2E7D5B;
  --green-100: #E4EFE8;   /* verde-névoa (cards, hovers) */
  --green-050: #F1F7F2;

  --rose-600: #C7477F;    /* magenta CTA */
  --rose-500: #D64D8A;
  --rose-100: #F8E4EE;

  --cream-050: #FBF8F2;   /* fundo principal */
  --cream-100: #F4EFE5;   /* fundo alternativo */
  --cream-200: #EBE3D4;

  --ink: #16241D;         /* texto principal */
  --ink-soft: #46564D;    /* texto secundário */
  --line: #E3DACB;        /* linhas/bordas sutis */
  --white: #FFFFFF;

  /* Tipografia */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Escala fluida */
  --step--1: clamp(0.83rem, 0.79rem + 0.18vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  --step-1:  clamp(1.25rem, 1.15rem + 0.5vw, 1.6rem);
  --step-2:  clamp(1.6rem, 1.4rem + 1vw, 2.3rem);
  --step-3:  clamp(2.1rem, 1.7rem + 2vw, 3.3rem);
  --step-4:  clamp(2.7rem, 2rem + 3.4vw, 4.8rem);

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 760px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(15, 48, 37, 0.06), 0 4px 14px rgba(15, 48, 37, 0.05);
  --shadow-md: 0 10px 40px rgba(15, 48, 37, 0.10);
  --shadow-lg: 0 24px 70px rgba(15, 48, 37, 0.16);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset enxuto ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  font-family: var(--font-sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-050);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--rose-500); outline-offset: 3px; border-radius: 4px; }

/* ---------- Tipografia ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 550;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--green-900);
  font-optical-sizing: auto;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose-600);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--rose-500);
  display: inline-block;
}
.lead { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.5; font-weight: 400; }
.muted { color: var(--ink-soft); }
em, .accent { color: var(--rose-600); font-style: normal; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.6rem, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2.6rem, var(--wrap-narrow)); margin-inline: auto; }
section { padding: clamp(3.5rem, 7vw, 7rem) 0; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.section-head .eyebrow { margin-bottom: 1rem; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); font-size: var(--step-0); }
.text-center { text-align: center; }
.text-center .section-head { margin-inline: auto; }
.text-center .eyebrow { justify-content: center; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: var(--step-0);
  letter-spacing: -0.01em;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s;
  will-change: transform;
}
.btn svg { width: 20px; height: 20px; }
.btn-primary {
  background: var(--rose-600);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(199, 71, 127, 0.32);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(199, 71, 127, 0.42); }
.btn-primary:active { transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--green-800);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--green-700); background: var(--green-050); transform: translateY(-2px); }
.btn-light {
  background: var(--white);
  color: var(--green-800);
  box-shadow: var(--shadow-sm);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 242, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 4px 20px rgba(15,48,37,0.04); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.brand b {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--green-800);
}
.brand span {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rose-600); font-weight: 600;
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.96rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color 0.2s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--rose-500); transition: width 0.3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--green-800); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; color: var(--green-800); }
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed; inset: 74px 0 auto 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream-050);
    padding: 1rem 1.3rem 2rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-140%);
    transition: transform 0.4s var(--ease);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 0.9rem 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-actions .btn span.hide-sm { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding-top: clamp(2.5rem, 5vw, 4.5rem); padding-bottom: clamp(3rem, 6vw, 6rem); position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-copy .eyebrow { margin-bottom: 1.4rem; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .accent { font-style: italic; }
.hero-copy .lead { margin-bottom: 2rem; max-width: 34ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 1.6rem 2.2rem; margin-top: 2.6rem;
  padding-top: 2.2rem; border-top: 1px solid var(--line);
}
.hero-trust .stat b {
  display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--green-700); font-weight: 600; line-height: 1;
}
.hero-trust .stat span { font-size: 0.85rem; color: var(--ink-soft); }

.hero-media { position: relative; }
.hero-photo {
  aspect-ratio: 4/5; border-radius: 26px; overflow: hidden;
  background:
    radial-gradient(120% 100% at 70% 0%, var(--green-500) 0%, var(--green-700) 45%, var(--green-900) 100%);
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  position: relative;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo .placeholder { color: rgba(255,255,255,0.62); text-align: center; padding: 2rem; font-size: 0.9rem; }
.hero-photo .placeholder svg { width: 60px; height: 60px; margin: 0 auto 1rem; opacity: 0.5; }
.hero-badge {
  position: absolute; left: -18px; bottom: 28px;
  background: var(--white); border-radius: var(--radius);
  padding: 1rem 1.2rem; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 0.85rem; max-width: 250px;
}
.hero-badge .stars { color: #E8B54B; font-size: 1rem; letter-spacing: 1px; }
.hero-badge b { font-family: var(--font-display); color: var(--green-800); font-size: 1.05rem; }
.hero-badge small { color: var(--ink-soft); font-size: 0.78rem; }
.hero-badge .avatar {
  width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-100); display: grid; place-items: center; color: var(--green-700);
  font-family: var(--font-display); font-weight: 600;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 440px; margin-inline: auto; width: 100%; }
  .hero-copy .lead { max-width: none; }
}
@media (max-width: 560px) {
  .hero-trust {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
    margin-top: 2rem; padding-top: 1.8rem;
  }
  .hero-trust .stat b { font-size: 1.6rem; }
  .hero-trust .stat span { font-size: 0.78rem; }
}

/* ---------- Faixa de logos/reconhecimento ---------- */
.marquee-band { background: var(--green-900); color: var(--cream-100); padding: 1.5rem 0; }
.marquee-band .wrap { display: flex; flex-wrap: wrap; gap: 1.2rem 3rem; align-items: center; justify-content: center; }
.marquee-band .item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; opacity: 0.9; }
.marquee-band .item svg { width: 18px; height: 18px; color: var(--rose-500); }
.marquee-band .item b { color: var(--white); font-weight: 600; }
@media (max-width: 640px) {
  .marquee-band { padding: 1.6rem 0; }
  .marquee-band .wrap {
    flex-direction: column; align-items: flex-start;
    gap: 0.85rem; justify-content: initial;
  }
  .marquee-band .item { font-size: 0.9rem; opacity: 1; align-items: flex-start; }
  .marquee-band .item svg { flex-shrink: 0; margin-top: 2px; }
}

/* ---------- Sobre (preview) ---------- */
.about-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-photo {
  aspect-ratio: 5/6; border-radius: 24px; overflow: hidden;
  background: linear-gradient(160deg, var(--cream-200), var(--green-100));
  box-shadow: var(--shadow-md); display: grid; place-items: center;
}
.about-photo img { width:100%; height:100%; object-fit: cover; }
.about-photo .placeholder { color: var(--green-700); opacity: 0.55; text-align:center; padding: 2rem; font-size: 0.85rem; }
.about-list { margin-top: 1.8rem; display: grid; gap: 1rem; }
.about-list li { display: flex; gap: 0.8rem; align-items: flex-start; }
.about-list svg { width: 22px; height: 22px; color: var(--rose-600); flex-shrink: 0; margin-top: 3px; }
.about-list b { color: var(--green-800); }
@media (max-width: 820px) { .about-split { grid-template-columns: 1fr; } .about-photo { max-width: 360px; } }

/* ---------- Procedimentos (cards) ---------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.proc-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; position: relative; overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s;
  display: flex; flex-direction: column;
}
.proc-card::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--rose-500);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease);
}
.proc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.proc-card:hover::after { transform: scaleX(1); }
.proc-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--green-050);
  display: grid; place-items: center; color: var(--green-700); margin-bottom: 1.3rem;
  transition: background 0.3s, color 0.3s;
}
.proc-card:hover .proc-icon { background: var(--rose-100); color: var(--rose-600); }
.proc-icon svg { width: 26px; height: 26px; }
.proc-card h3 { font-size: 1.28rem; margin-bottom: 0.6rem; }
.proc-card p { color: var(--ink-soft); font-size: 0.96rem; flex-grow: 1; }
.proc-card .card-link {
  margin-top: 1.3rem; font-weight: 600; font-size: 0.92rem; color: var(--rose-600);
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.proc-card .card-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.proc-card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Depoimentos ---------- */
.testi-section { background: var(--green-900); color: var(--cream-100); }
.testi-section h2, .testi-section h3 { color: var(--white); }
.testi-section .section-head p { color: rgba(244,239,229,0.72); }
.testi-grid { columns: 3 300px; column-gap: 1.4rem; }
.testi-card {
  break-inside: avoid; margin-bottom: 1.4rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius); padding: 1.7rem; backdrop-filter: blur(4px);
}
.testi-card .stars { color: #F0C24B; letter-spacing: 2px; margin-bottom: 0.9rem; }
.testi-card p { color: var(--cream-100); font-size: 1.02rem; line-height: 1.6; }
.testi-card footer { margin-top: 1.2rem; display: flex; align-items: center; gap: 0.75rem; }
.testi-card .av {
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: var(--green-700); display: grid; place-items: center; color: var(--white);
  font-family: var(--font-display); font-weight: 600;
}
.testi-card .who b { display: block; color: var(--white); font-size: 0.95rem; }
.testi-card .who small { color: rgba(244,239,229,0.6); font-size: 0.8rem; }
@media (max-width: 640px) { .testi-grid { columns: 1; } }

/* ---------- CTA final ---------- */
.cta-band { background: var(--cream-100); }
.cta-box {
  background: linear-gradient(150deg, var(--green-700), var(--green-900));
  border-radius: 28px; padding: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--white); text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-box::before {
  content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(214,77,138,0.35), transparent 70%);
  top: -120px; right: -80px;
}
.cta-box h2 { color: var(--white); position: relative; margin-bottom: 1rem; }
.cta-box p { color: rgba(255,255,255,0.82); max-width: 46ch; margin: 0 auto 2rem; position: relative; }
.cta-box .btn { position: relative; }
.cta-box small { display: block; margin-top: 1.3rem; color: rgba(255,255,255,0.6); font-size: 0.85rem; position: relative; }

/* ---------- Localização ---------- */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: stretch; }
.loc-info { display: flex; flex-direction: column; gap: 1.4rem; }
.loc-item { display: flex; gap: 1rem; align-items: flex-start; }
.loc-item .ic { width: 46px; height: 46px; border-radius: 12px; background: var(--green-050); color: var(--green-700); display: grid; place-items: center; flex-shrink: 0; }
.loc-item .ic svg { width: 22px; height: 22px; }
.loc-item h4 { font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--rose-600); margin-bottom: 0.25rem; }
.loc-item p { color: var(--ink); font-size: 0.98rem; }
.loc-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 320px; border: 1px solid var(--line); }
.loc-map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.hours { margin-top: 0.6rem; }
.hours li { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px dashed var(--line); font-size: 0.95rem; }
.hours li span:last-child { color: var(--ink-soft); }
.hours li.closed span:last-child { color: var(--rose-600); }
@media (max-width: 820px) { .loc-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-900); color: var(--cream-100); padding: clamp(3rem, 6vw, 4.5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,0.12); }
.site-footer .brand b { color: var(--white); }
.site-footer .brand span { color: var(--rose-500); }
.footer-about p { color: rgba(244,239,229,0.7); margin-top: 1rem; max-width: 34ch; font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-sans); color: var(--white); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 1.1rem; }
.footer-col a, .footer-col p { color: rgba(244,239,229,0.72); font-size: 0.95rem; display: block; padding: 0.32rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--rose-500); }
.socials { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.socials a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,0.07); display: grid; place-items: center; color: var(--cream-100); transition: background 0.3s, transform 0.3s; }
.socials a:hover { background: var(--rose-600); color: var(--white); transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.8rem; font-size: 0.85rem; color: rgba(244,239,229,0.55); }
.footer-bottom a { color: rgba(244,239,229,0.7); }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease);
  animation: wa-pop 0.5s var(--ease) 1.2s both;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
@keyframes wa-pop { from { transform: scale(0); } to { transform: scale(1); } }

/* ---------- Page hero (páginas internas) ---------- */
.page-hero { background: linear-gradient(180deg, var(--green-050), var(--cream-050)); padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line); }
.page-hero .eyebrow { margin-bottom: 1rem; }
.page-hero h1 { max-width: 16ch; }
.page-hero p { margin-top: 1.2rem; max-width: 52ch; color: var(--ink-soft); font-size: var(--step-1); }
.page-hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.page-hero-grid h1 { max-width: 18ch; }
.page-hero-portrait { aspect-ratio: 4/5; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); background: linear-gradient(160deg, var(--green-100), var(--cream-200)); }
.page-hero-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
@media (max-width: 820px) {
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-portrait { max-width: 340px; order: -1; }
}
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 1.4rem; }
.breadcrumb a:hover { color: var(--rose-600); }
.breadcrumb span { opacity: 0.5; }

/* ---------- Prose (texto longo) ---------- */
.prose { max-width: 68ch; }
.prose p { margin-bottom: 1.3rem; color: var(--ink-soft); font-size: 1.08rem; line-height: 1.72; }
.prose h2 { font-size: var(--step-2); margin: 2.5rem 0 1rem; }
.prose h3 { margin: 2rem 0 0.8rem; color: var(--green-800); }
.prose strong { color: var(--green-800); }

/* ---------- Detalhe procedimento (lista alternada) ---------- */
.proc-detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; padding: clamp(2rem,4vw,3.5rem) 0; }
.proc-detail:nth-child(even) .proc-detail-media { order: 2; }
.proc-detail-media { aspect-ratio: 3/4; border-radius: 22px; background: linear-gradient(150deg, var(--green-100), var(--cream-200)); box-shadow: var(--shadow-sm); display: grid; place-items: center; color: var(--green-700); overflow: hidden; }
.proc-detail-media img { width:100%; height:100%; object-fit: cover; object-position: center 22%; }
.proc-detail-media .placeholder { opacity: 0.5; font-size: 0.85rem; text-align:center; padding:1.5rem; }
.proc-detail h2 { font-size: var(--step-2); margin-bottom: 0.8rem; }
.proc-detail p { color: var(--ink-soft); margin-bottom: 1.2rem; }
.tag-row { display:flex; flex-wrap:wrap; gap:0.5rem; margin-bottom: 1.4rem; }
.tag { background: var(--green-050); color: var(--green-700); font-size: 0.8rem; font-weight: 600; padding: 0.35rem 0.8rem; border-radius: 999px; }
@media (max-width: 780px) {
  .proc-detail { grid-template-columns: 1fr; }
  .proc-detail:nth-child(even) .proc-detail-media { order: -1; }
  .proc-detail-media { max-width: 460px; }
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--line); padding: 0.4rem 0; }
.faq summary { list-style: none; cursor: pointer; padding: 1.1rem 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--green-800); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex-shrink: 0; width: 26px; height: 26px; position: relative; transition: transform 0.3s var(--ease); }
.faq summary .plus::before, .faq summary .plus::after { content:""; position:absolute; background: var(--rose-500); border-radius: 2px; }
.faq summary .plus::before { inset: 0 12px; width: 2px; }
.faq summary .plus::after { inset: 12px 0; height: 2px; }
.faq details[open] summary .plus { transform: rotate(45deg); }
.faq details p { padding: 0 0 1.2rem; color: var(--ink-soft); line-height: 1.65; }

/* ---------- Animação de entrada ---------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }

/* ---------- Utilitários ---------- */
.bg-cream { background: var(--cream-100); }
.bg-soft { background: var(--green-050); }
.mt-cta { margin-top: 2.4rem; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
@media (max-width: 640px){ .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Página 404 ---------- */
.error-box { max-width: 620px; margin-inline: auto; text-align: center; padding: clamp(1rem,4vw,2.5rem) 0; }
.error-code { display: block; font-family: 'Fraunces', serif; font-size: clamp(4.5rem, 16vw, 9rem); line-height: 1; font-weight: 600; color: var(--green-100); margin-bottom: 0.4rem; }
.error-box h1 { margin: 0.4rem 0 0.8rem; }
.error-box p { color: var(--ink-soft); }
.error-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; margin: 1.8rem 0 1.4rem; }
.error-help { font-size: 0.9rem; }
.error-help a { color: var(--green-700); font-weight: 600; text-decoration: underline; }
