/* =============================================================
   EndoAfetos — Landing Page
   Paleta da marca: azul-lavanda · magenta · roxo · lilás · rosé-bege
   ============================================================= */

:root {
  /* Cores — paleta oficial EndoAfetos */
  --cream:        #f8f4f2;   /* off-white morno (rosé-bege claro) */
  --cream-2:      #efe8ec;   /* leve tom malva */
  --surface:      #ffffff;
  --rose:         #b3427a;   /* magenta acolhedor — primária */
  --rose-dark:    #8c2f5f;   /* magenta escuro — hover / links */
  --rose-soft:    #eccbdb;   /* magenta claro — chips / badges */
  --gold:         #927acc;   /* lilás — acento secundário */
  --gold-soft:    #e7e0f6;   /* lilás claro */
  --lavender:     #8a62a3;   /* roxo médio */
  --lavender-soft:#e4dbef;   /* lilás / roxo claro */
  --sage:         #927acc;   /* lilás */
  --ink:          #494f83;   /* azul-lavanda profundo — títulos / texto */
  --ink-soft:     #6c6b88;   /* texto secundário */
  --line:         #e6dde3;   /* linha suave */
  --rose-beige:   #ccb8ae;   /* rosé-bege — neutro morno */
  --gray:         #dfdfdf;   /* cinza claro */
  --accent-light: #b9a6e8;   /* lilás claro — acentos sobre fundo escuro */

  /* Tipografia */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --maxw: 1140px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 18px 45px -22px rgba(73, 79, 131, 0.40);
  --shadow-sm: 0 8px 22px -14px rgba(73, 79, 131, 0.38);
  --header-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--rose-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--rose); }
:focus-visible { outline: 3px solid var(--rose-dark); outline-offset: 2px; border-radius: 4px; }
.footer :focus-visible, .btn--primary:focus-visible, .nav__cta:focus-visible, .to-top:focus-visible { outline-color: var(--accent-light); }
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; margin: 0 0 .4em; color: var(--ink); }
p { margin: 0 0 1em; }

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

.container { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .01em;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn--sm { padding: .6rem 1.2rem; font-size: .9rem; }
.btn--primary {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff; box-shadow: var(--shadow-sm);
}
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost {
  background: rgba(255, 255, 255, .55);
  border-color: var(--rose-soft);
  color: var(--rose-dark);
}
.btn--ghost:hover { background: #fff; transform: translateY(-2px); color: var(--rose-dark); }

/* =============================================================
   CABEÇALHO / NAV
   ============================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 248, 243, .82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 24px -20px rgba(122, 74, 82, .6);
}
.nav {
  height: var(--header-h);
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}
.nav__brand { display: inline-flex; align-items: center; gap: .55rem; }
.nav__logo { width: 46px; height: auto; }
.nav__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--ink); }
.nav__name em { font-style: normal; color: var(--rose); }

.nav__menu {
  display: flex; align-items: center; gap: 1.6rem;
  list-style: none; margin: 0; padding: 0;
}
.nav__menu a { font-weight: 600; font-size: .98rem; color: var(--ink); position: relative; }
.nav__menu a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; border-radius: 2px; background: var(--rose);
  transition: width .25s ease;
}
.nav__menu a:not(.nav__cta):hover { color: var(--rose-dark); }
.nav__menu a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  background: linear-gradient(135deg, var(--rose) 0%, var(--lavender) 100%);
  color: #fff !important; padding: .55rem 1.15rem; border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.nav__cta:hover { transform: translateY(-1px); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; padding: 10px; border-radius: 12px;
}
.nav__toggle span { height: 2.5px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform .3s ease, opacity .3s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  text-align: center;
  padding: clamp(3.5rem, 8vw, 6.5rem) 1.25rem clamp(5rem, 9vw, 7.5rem);
  background:
    radial-gradient(1200px 600px at 50% -10%, var(--gold-soft) 0%, transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: auto; top: 10%; left: 50%; transform: translateX(-50%);
  width: 520px; height: 520px; border-radius: 50%;
  background: radial-gradient(circle, rgba(146,122,204,.32) 0%, transparent 70%);
  filter: blur(30px); z-index: 0; pointer-events: none;
}
.hero__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.hero__logo {
  width: clamp(88px, 14vw, 120px); height: auto; margin: 0 auto 1.25rem;
  filter: drop-shadow(0 12px 24px rgba(122,74,82,.25));
  animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.hero__eyebrow {
  text-transform: uppercase; letter-spacing: .22em; font-size: .78rem;
  font-weight: 700; color: var(--rose-dark); margin-bottom: .5rem;
}
.hero__title { font-size: clamp(2.8rem, 8vw, 4.6rem); margin-bottom: .3em; }
.hero__title em { font-style: italic; color: var(--rose); }
.hero__lead { font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: var(--ink-soft); max-width: 620px; margin: 0 auto 1rem; }
.hero__lead strong { color: var(--rose-dark); font-weight: 700; }
.hero__tagline {
  font-family: var(--serif); font-style: italic; font-size: clamp(1.1rem, 2.6vw, 1.4rem);
  color: var(--ink); margin: 1.2rem 0 2rem;
}
.hero__actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.hero__wave { position: absolute; left: 0; right: 0; bottom: -1px; line-height: 0; z-index: 1; }
.hero__wave svg { width: 100%; height: clamp(48px, 7vw, 90px); }
.hero__wave path { fill: var(--surface); }

/* =============================================================
   SEÇÕES GENÉRICAS
   ============================================================= */
.section { padding: clamp(3.5rem, 8vw, 6rem) 0; background: var(--surface); }
.section--tint {
  background:
    radial-gradient(900px 500px at 100% 0%, var(--lavender-soft) 0%, transparent 45%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-2) 100%);
}
.section__head { text-align: center; max-width: 720px; margin: 0 auto 2.8rem; }
.kicker {
  display: inline-block; text-transform: uppercase; letter-spacing: .2em;
  font-size: .74rem; font-weight: 800; color: var(--rose-dark);
  background: var(--rose-soft); padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
.section__head h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }

.prose { max-width: 760px; margin-inline: auto; color: var(--ink-soft); font-size: 1.05rem; }
.prose strong { color: var(--ink); }
.prose--center { text-align: center; }
#sobre .prose { text-align: justify; hyphens: auto; }
.prose__highlight {
  font-family: var(--serif); font-style: italic; font-size: 1.35rem;
  color: var(--rose-dark); margin-top: 1rem;
}

/* ---- Feature grid ---- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem; margin-top: 3rem;
}
.feature {
  background: var(--cream); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature__icon { font-size: 2.2rem; display: inline-block; margin-bottom: .6rem; }
.feature h3 { font-size: 1.25rem; }
.feature p { color: var(--ink-soft); margin: 0; font-size: .98rem; }

/* ---- Missão/Visão/Valores ---- */
.mvv-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; }
.mvv-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.8rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--gold);
  transition: transform .3s ease, box-shadow .3s ease;
}
.mvv-card:nth-child(2) { border-top-color: var(--rose); }
.mvv-card:nth-child(3) { border-top-color: var(--lavender); }
.mvv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.mvv-card h3 { font-size: 1.4rem; display: flex; align-items: center; gap: .5rem; }
.mvv-card h3 span { color: var(--gold); }
.mvv-card p { color: var(--ink-soft); margin: 0; text-align: justify; hyphens: auto; }
/* Valores: lista alinhada e harmonizada, com marcador e fios sutis */
.value-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.value-list li {
  display: flex; align-items: center; gap: .6rem;
  color: var(--ink); font-weight: 600; font-size: 1rem;
  padding: .58rem 0; border-bottom: 1px solid var(--line);
}
.value-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.value-list li::before {
  content: "✦"; color: var(--rose); font-size: .82rem; line-height: 1; flex: none;
}

/* =============================================================
   EQUIPE
   ============================================================= */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem; margin: 2.6rem 0;
}
.member {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.member:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.member__photo {
  width: 128px; height: 128px; margin: 0 auto 1.1rem; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose-soft), var(--lavender-soft));
  display: grid; place-items: center; position: relative; overflow: hidden;
  border: 4px solid var(--surface); box-shadow: 0 0 0 2px var(--rose-soft);
}
.member__photo::after {
  content: attr(data-initials);
  font-family: var(--serif); font-size: 2.4rem; color: var(--rose-dark); font-weight: 600;
}
.member__photo img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: 50% 14%; z-index: 1;
}
/* Enquadramento por profissional: rosto/queixo na metade superior do círculo */
.team-grid .member:nth-child(1) .member__photo img { object-position: 50% 10%; } /* Liliane */
.team-grid .member:nth-child(2) .member__photo img { object-position: 50% 3%; }  /* Fernanda */
.team-grid .member:nth-child(3) .member__photo img { object-position: 50% 12%; } /* Joelma */
.member__name { font-size: 1.4rem; margin-bottom: .15rem; }
.member__role { color: var(--rose); font-weight: 700; font-size: .9rem; margin-bottom: .8rem; }
.member__bio { color: var(--ink-soft); font-size: .96rem; }
.member__links { display: flex; flex-direction: column; gap: .4rem; margin-top: 1rem; align-items: center; }
.member__links a { font-weight: 700; font-size: .92rem; }
.link-btn {
  background: none; border: 0; color: var(--rose-dark); font-family: var(--sans);
  font-weight: 700; font-size: .92rem; cursor: pointer; padding: .3rem .2rem;
}
.link-btn:hover { color: var(--rose); }

.team-statement { max-width: 820px; margin: 1rem auto 0; text-align: center; color: var(--ink-soft); }
.note-box {
  margin-top: 1.6rem; text-align: left;
  background: var(--gold-soft); border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; color: var(--ink);
  font-size: .96rem;
}

/* =============================================================
   ENCONTROS / VÍDEOS
   ============================================================= */
.video-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 1.6rem; }
.video { margin: 0; }
.video__frame {
  position: relative; aspect-ratio: 16 / 9; border-radius: var(--radius);
  overflow: hidden; background: var(--ink); box-shadow: var(--shadow-sm);
}
.video__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 1; }
.video__placeholder {
  position: absolute; inset: 0; z-index: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .35rem;
  background: linear-gradient(135deg, var(--rose) 0%, var(--lavender) 100%);
  color: #fff; text-align: center; padding: 1rem;
}
.video__placeholder span { font-size: 2rem; opacity: .9; }
.video__placeholder p { margin: 0; font-weight: 700; font-size: 1.1rem; }
.video__placeholder small { opacity: .85; font-size: .78rem; }
.video__placeholder code { background: rgba(255,255,255,.22); padding: .05rem .3rem; border-radius: 5px; }
.video figcaption { text-align: center; margin-top: .9rem; font-weight: 600; color: var(--ink); }

.pillars {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 3rem;
}
.pillar {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 999px; padding: .8rem 1.6rem; font-family: var(--serif);
  font-style: italic; font-size: 1.1rem; color: var(--rose-dark);
  box-shadow: var(--shadow-sm);
}

/* =============================================================
   CONTATO
   ============================================================= */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 1.6rem; align-items: start; }
.contact-cards { display: grid; gap: 1.1rem; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
}
.contact-card h3 { font-size: 1.25rem; margin-bottom: .1rem; }
.contact-card__role { color: var(--rose); font-weight: 600; font-size: .9rem; margin-bottom: .8rem; }
.contact-line { display: flex; align-items: center; gap: .55rem; font-weight: 600; padding: .3rem 0; color: var(--ink); }
.contact-line:hover { color: var(--rose-dark); }

.qr-panel {
  background: linear-gradient(160deg, var(--rose-soft), var(--lavender-soft));
  border-radius: var(--radius); padding: 1.8rem 1.6rem; text-align: center;
  box-shadow: var(--shadow-sm);
}
.qr-panel__title { font-family: var(--serif); font-size: 1.25rem; color: var(--ink); margin-bottom: 1.2rem; }
.qr-single {
  display: block; max-width: 300px; margin: 0 auto; border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow); background: #fff;
  transition: transform .25s ease;
}
.qr-single:hover { transform: translateY(-4px); }
.qr-single img { width: 100%; height: auto; display: block; }
.qr-panel__note { margin-top: 1.2rem; font-size: .82rem; color: var(--rose-dark); }

/* =============================================================
   RODAPÉ
   ============================================================= */
.footer { background: var(--ink); color: #f4e9e4; padding: 3.5rem 0 0; }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.footer__brand img { width: 58px; height: auto; margin-bottom: .8rem; }
.footer__name { font-family: var(--serif); font-size: 1.6rem; margin: 0 0 .4rem; color: #fff; }
.footer__name em { font-style: normal; color: var(--accent-light); }
.footer__tag { font-style: italic; color: #d7d2ea; max-width: 320px; margin-bottom: .6rem; }
.footer__geo { font-weight: 700; letter-spacing: .06em; color: #e6dbd4; font-size: .9rem; }
.footer__nav, .footer__social { display: flex; flex-direction: column; gap: .7rem; }
.footer__nav a, .footer__social a { color: #dcd7ee; font-weight: 600; }
.footer__nav a:hover, .footer__social a:hover { color: var(--accent-light); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; text-align: center;
}
.footer__bottom p { margin: 0; font-size: .85rem; color: #d8cee2; }

/* Botão voltar ao topo */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 50;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: #fff !important; display: grid; place-items: center;
  font-size: 1.3rem; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-3px); }

/* =============================================================
   MODAIS
   ============================================================= */
.modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1.25rem; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(69, 58, 62, .55); backdrop-filter: blur(3px); }
.modal__panel {
  position: relative; z-index: 1; background: var(--surface);
  border-radius: var(--radius); padding: 2.4rem 2rem 2rem;
  max-width: 560px; width: 100%; max-height: 88vh; overflow-y: auto;
  box-shadow: var(--shadow);
  animation: modalIn .3s ease;
  border-top: 5px solid var(--rose);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(16px) scale(.98); } to { opacity: 1; transform: none; } }
.modal__close {
  position: absolute; top: .8rem; right: 1rem; width: 38px; height: 38px;
  border: 0; border-radius: 50%; background: var(--cream); color: var(--ink);
  font-size: 1.5rem; line-height: 1; cursor: pointer; transition: background .2s ease;
}
.modal__close:hover { background: var(--rose-soft); }
.modal__panel h3 { font-size: 1.55rem; padding-right: 2rem; }
.modal__sub { color: var(--rose); font-weight: 700; margin-bottom: 1.2rem; }
.modal__block { color: var(--ink-soft); }
.cv-list { padding-left: 1.1rem; margin: 0 0 1.4rem; color: var(--ink-soft); }
.cv-list li { margin-bottom: .55rem; }

/* =============================================================
   PROFUNDIDADE / 3D SUTIL
   ============================================================= */
/* Cartões "elevados": aresta de luz no topo, leve gradiente e sombra em camadas */
.feature, .mvv-card, .member, .contact-card, .qr-panel {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .85),
    0 3px 8px -3px rgba(73, 79, 131, .22),
    0 24px 48px -16px rgba(73, 79, 131, .46);
}
.member, .contact-card, .mvv-card {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .9) 0%, rgba(233, 225, 235, .5) 100%);
}
.feature {
  background-image: linear-gradient(180deg, rgba(255, 255, 255, .5) 0%, rgba(228, 219, 231, .45) 100%);
}
.feature:hover, .mvv-card:hover, .member:hover, .contact-card:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .95),
    0 10px 22px -8px rgba(73, 79, 131, .28),
    0 40px 72px -20px rgba(73, 79, 131, .55);
}

/* Orbes de cor suaves ao fundo — profundidade contemporânea sem poluir */
.section { position: relative; }
.section > .container { position: relative; z-index: 1; }
.section--tint { overflow: hidden; }
.section--tint::before,
.section--tint::after {
  content: ""; position: absolute; z-index: 0; border-radius: 50%;
  pointer-events: none; filter: blur(60px);
}
.section--tint::before {
  width: 480px; height: 480px; top: -150px; left: -130px;
  background: radial-gradient(circle, rgba(179, 66, 122, .15) 0%, transparent 70%);
}
.section--tint::after {
  width: 560px; height: 560px; bottom: -190px; right: -150px;
  background: radial-gradient(circle, rgba(146, 122, 204, .18) 0%, transparent 70%);
}

/* Hero: segundo orbe (magenta) para dar dimensão ao fundo */
.hero::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 440px; height: 440px; top: 4%; right: -100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 66, 122, .17) 0%, transparent 70%);
  filter: blur(55px);
}

/* =============================================================
   ANIMAÇÃO DE ENTRADA (reveal on scroll)
   ============================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   NOVAS SEÇÕES — trajetória, atendimento, galeria, depoimentos
   ============================================================= */
.section__head p { color: var(--ink-soft); font-size: 1.02rem; margin: .4rem 0 0; }

/* Sobre em duas colunas: texto + vídeo institucional em destaque */
.sobre-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 2.5rem; align-items: start; }
.sobre-grid .prose { max-width: none; margin-inline: 0; }
.reel { margin: 0; }
.reel__video {
  width: 100%; height: auto; aspect-ratio: 9 / 16; display: block; object-fit: cover;
  background: #000; border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .5), 0 24px 48px -16px rgba(73, 79, 131, .5);
}
.reel figcaption { margin-top: .8rem; text-align: center; display: flex; flex-direction: column; gap: .15rem; }
.reel figcaption strong { color: var(--ink); font-size: .98rem; }
.reel figcaption a { font-weight: 700; font-size: .9rem; }
@media (max-width: 860px) {
  .sobre-grid { grid-template-columns: 1fr; gap: 2rem; }
  .reel { max-width: 300px; margin-inline: auto; }
}

/* Destaque (reconhecimento FLOW) */
.badge-highlight {
  display: flex; align-items: center; gap: 1rem;
  max-width: 820px; margin: 0 auto; padding: 1.1rem 1.4rem;
  background: linear-gradient(135deg, var(--gold-soft) 0%, #fff 100%);
  border: 1px solid var(--line); border-left: 5px solid var(--rose);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 34px -20px rgba(73, 79, 131, .4);
}
.badge-highlight__icon { font-size: 2rem; flex: none; }
.badge-highlight strong { color: var(--ink); }
.badge-highlight div { color: var(--ink); font-size: .96rem; }

/* Linha do tempo */
.timeline { max-width: 820px; margin: 2.4rem auto 0; display: grid; gap: 1.6rem; }
.tl-year { display: grid; grid-template-columns: 72px 1fr; gap: 1.1rem; }
.tl-year__label { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; color: var(--rose); text-align: right; line-height: 1.1; }
.tl-year__body { border-left: 2px solid var(--line); padding-left: 1.4rem; position: relative; }
.tl-year__body::before {
  content: ""; position: absolute; left: -8px; top: .4rem;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--rose); box-shadow: 0 0 0 4px var(--rose-soft);
}
.tl-year__body h3 { font-size: 1.2rem; margin: 0 0 .5rem; }
.tl-year__body > p { color: var(--ink-soft); margin: 0 0 .3rem; }
.tl-themes { margin: 0; color: var(--rose-dark); font-weight: 600; font-size: .95rem; }
.tl-list { margin: 0; padding-left: 1.1rem; color: var(--ink-soft); }
.tl-list li { margin-bottom: .5rem; }
.tl-list strong { color: var(--ink); }
.tl-continuous { max-width: 820px; margin: 1.8rem auto 0; text-align: center; color: var(--ink-soft); }
.tl-continuous strong { color: var(--ink); }

/* Atendimento individual */
.attend-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.6rem; max-width: 820px; margin: 2.4rem auto 0; }
.attend-card {
  background: #fff; background-image: linear-gradient(180deg, rgba(255,255,255,.9), rgba(233,225,235,.5));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 3px 8px -3px rgba(73,79,131,.22), 0 24px 48px -16px rgba(73,79,131,.46);
}
.attend-card h3 { font-size: 1.35rem; margin: .2rem 0 .1rem; }
.attend-card__role { color: var(--rose); font-weight: 700; font-size: .9rem; margin-bottom: 1.3rem; }
.attend-card .btn { width: 100%; }
.attend-note { max-width: 820px; margin: 1.4rem auto 0; text-align: center; color: var(--ink-soft); font-size: .9rem; }

/* Galeria dos encontros */
.block-title { text-align: center; font-size: 1.35rem; margin: 3rem 0 1.2rem; color: var(--ink); }
.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1rem; }
.gallery__item { display: block; aspect-ratio: 1 / 1; border-radius: var(--radius-sm); overflow: hidden; box-shadow: 0 14px 30px -18px rgba(73, 79, 131, .4); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.05); }

/* Depoimentos */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.4rem; margin-top: 2.4rem; }
.testi {
  margin: 0; position: relative;
  background: #fff; background-image: linear-gradient(180deg, rgba(255,255,255,.9), rgba(233,225,235,.5));
  border: 1px solid var(--line); border-radius: var(--radius); padding: 2.2rem 1.6rem 1.6rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.85), 0 3px 8px -3px rgba(73,79,131,.22), 0 24px 48px -16px rgba(73,79,131,.46);
}
.testi::before {
  content: "\201C"; position: absolute; top: .3rem; left: 1rem;
  font-family: var(--serif); font-size: 3.4rem; line-height: 1; color: var(--rose-soft);
}
.testi blockquote { margin: .6rem 0 1rem; color: var(--ink); font-style: italic; font-size: 1.02rem; line-height: 1.6; }
.testi figcaption { color: var(--rose); font-weight: 700; font-size: .88rem; }

/* =============================================================
   RESPONSIVO
   ============================================================= */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 940px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem 1.25rem 1.25rem;
    box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform .35s ease;
    max-height: calc(100vh - var(--header-h)); overflow-y: auto;
  }
  .nav__menu.is-open { transform: translateY(0); }
  .nav__menu li { border-bottom: 1px solid var(--line); }
  .nav__menu li:last-child { border-bottom: 0; padding-top: .8rem; }
  .nav__menu a { display: block; padding: .9rem .2rem; }
  .nav__menu a:not(.nav__cta)::after { display: none; }
  .nav__cta { text-align: center; }
}

@media (max-width: 560px) {
  .footer__inner { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

/* Acessibilidade: respeitar preferências de movimento */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__logo { animation: none; }
}
