/* ============================================================
   Clínica Aragão & Cesar — Landing Page
   Design tokens derived from the existing AC brand
   (navy + ouro + creme). Mobile-first, no framework.
   ============================================================ */

:root {
  /* Brand palette */
  --navy: #0e2a57;
  --navy-900: #0a1f40;
  --navy-700: #16356b;
  --navy-100: #e7ecf5;
  --gold: #c8992f;
  --gold-light: #e6c260;
  --gold-dark: #a87d22;
  --gold-ink: #8a6416; /* ouro escurecido p/ texto pequeno (contraste AA sobre creme) */
  --gold-grad: linear-gradient(135deg, #e6c260 0%, #c8992f 55%, #a87d22 100%);
  --cream: #faf4e8;
  --cream-deep: #f3e9d6;
  --cream-card: #fdfaf3;
  --ink: #2b2b2b;
  --ink-soft: #54575e;
  --white: #ffffff;
  --line: #e7dcc4;

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Rhythm */
  --container: 1180px;
  --radius: 16px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(14, 42, 87, 0.06);
  --shadow-md: 0 14px 40px rgba(14, 42, 87, 0.10);
  --shadow-gold: 0 16px 44px rgba(168, 125, 34, 0.18);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; color: var(--navy); margin: 0 0 .4em; letter-spacing: .2px; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

/* ---------- Helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-ink);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: .9rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-grad); border-radius: 2px; }
.section { padding-block: clamp(3.4rem, 8vw, 6rem); position: relative; }
.section--cream { background: var(--cream); }
.section--deep { background: var(--cream-deep); }
.section--navy { background: var(--navy); color: var(--cream); }
.section--navy h2, .section--navy h3 { color: var(--white); }
.section-head { max-width: 720px; margin-bottom: 2.6rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 1.4rem + 2.6vw, 3.1rem); }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section--navy .section-head p { color: #d6dded; }
.text-gold { color: var(--gold-dark); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 800; font-size: .98rem;
  padding: .92rem 1.6rem; border-radius: 999px; border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  text-align: center; line-height: 1;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn--gold { background: var(--gold-grad); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 20px 50px rgba(168,125,34,.28); }
.btn--navy { background: var(--navy); color: var(--cream); }
.btn--navy:hover { transform: translateY(-2px); background: var(--navy-700); }
.btn--ghost { background: transparent; color: var(--navy); border-color: rgba(14,42,87,.25); }
.btn--ghost:hover { border-color: var(--navy); background: rgba(14,42,87,.04); }
.btn--light { background: var(--cream); color: var(--navy); }
.btn--light:hover { transform: translateY(-2px); background: var(--white); }
.btn--block { width: 100%; }
.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold-light); outline-offset: 3px;
}

/* Skip link */
.skip-link {
  position: absolute; left: 1rem; top: -3rem; z-index: 2000;
  background: var(--navy); color: var(--cream); padding: .7rem 1.1rem; border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(250, 244, 232, .82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(200, 153, 47, .18);
  transition: box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 74px; }
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 40px; width: auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name strong {
  font-family: var(--font-display); font-weight: 700; font-size: 1.18rem;
  color: var(--navy); letter-spacing: .5px;
}
.brand-name span { font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-dark); font-weight: 800; margin-top: 3px; }
.nav-links { display: none; align-items: center; gap: 1.4rem; list-style: none; }
.nav-links a { font-weight: 700; font-size: .94rem; color: var(--navy-700); position: relative; padding: .3rem 0; white-space: nowrap; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px; background: var(--gold-grad); transition: width .3s var(--ease); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; width: 46px; height: 46px;
  align-items: center; justify-content: center; background: transparent; border: 1px solid rgba(14,42,87,.2); border-radius: 12px;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: transform .3s var(--ease), opacity .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header actions (phone + CTA) */
.nav-actions { display: none; align-items: center; gap: 1rem; }
.nav-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 800; color: var(--navy); font-size: .98rem; white-space: nowrap; }
.nav-phone svg { width: 1.25rem; height: 1.25rem; color: var(--gold-dark); }
.nav-phone:hover { color: var(--gold-dark); }

.mobile-menu {
  display: grid; grid-template-rows: 0fr; overflow: hidden;
  transition: grid-template-rows .35s var(--ease);
  background: var(--cream);
  border-bottom: 1px solid rgba(200,153,47,.18);
}
.mobile-menu.open { grid-template-rows: 1fr; }
.mobile-menu > div { min-height: 0; }
.mobile-menu ul { list-style: none; padding: .6rem 0 1.2rem; }
.mobile-menu a { display: block; padding: .85rem clamp(1.1rem,4vw,2rem); font-weight: 700; color: var(--navy-700); border-bottom: 1px solid rgba(200,153,47,.12); }
.mobile-menu .btn { margin: 1rem clamp(1.1rem,4vw,2rem) 0; }

@media (min-width: 1080px) {
  .nav-links { display: flex; }
  .nav-actions { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .brand img { height: 44px; width: auto; }
}
@media (min-width: 1080px) and (max-width: 1200px) {
  .nav-phone span { display: none; } /* mostra só o ícone em telas médias */
}

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(2.6rem, 6vw, 4.6rem) clamp(3rem,7vw,5rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(680px 420px at 88% -8%, rgba(230,194,96,.20), transparent 60%),
    radial-gradient(560px 420px at -6% 18%, rgba(14,42,87,.06), transparent 60%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: clamp(2rem, 5vw, 3.4rem); align-items: center; }
.hero-copy h1 { font-size: clamp(2.35rem, 1.5rem + 3.6vw, 3.9rem); margin-bottom: .55rem; }
.hero-copy h1 .accent { color: var(--gold-dark); font-style: italic; }
.hero-lead { font-size: clamp(1.08rem, 1rem + .4vw, 1.28rem); color: var(--ink-soft); max-width: 36ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.7rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.1rem 1.6rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.hero-trust div { display: flex; align-items: center; gap: .55rem; font-weight: 700; font-size: .9rem; color: var(--navy-700); }
.hero-trust svg { width: 1.25rem; height: 1.25rem; color: var(--gold-dark); flex: none; }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid rgba(200,153,47,.3);
  aspect-ratio: 4 / 4.4;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 64% 20%; }
.hero-frame::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(10,31,64,.55) 100%); }
.hero-badge {
  position: absolute; left: 14px; bottom: 26px; z-index: 2;
  background: var(--white); border-radius: 16px; padding: .9rem 1.1rem;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: .75rem; max-width: 250px;
  border: 1px solid rgba(200,153,47,.25);
}
.hero-badge .heart { width: 40px; height: 40px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; flex: none; color: var(--navy-900); }
.hero-badge .heart svg { width: 22px; height: 22px; }
.hero-badge strong { display: block; font-size: .92rem; color: var(--navy); font-family: var(--font-body); font-weight: 800; }
.hero-badge span { font-size: .78rem; color: var(--ink-soft); }

@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
}

/* ---------- Wave divider ---------- */
.wave { display: block; width: 100%; height: auto; }

/* ---------- Quick trust strip ---------- */
.strip { background: var(--navy); color: var(--cream); }
.strip .container { display: grid; gap: 1.4rem; padding-block: 2.2rem; }
.strip-lead { font-family: var(--font-display); font-size: clamp(1.4rem,1.1rem+1.4vw,1.9rem); color: var(--white); max-width: 26ch; }
.strip-lead b { color: var(--gold-light); }
.strip-items { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
.strip-item { display: flex; gap: .7rem; align-items: flex-start; }
.strip-item svg { width: 1.5rem; height: 1.5rem; color: var(--gold-light); flex: none; margin-top: 2px; }
.strip-item b { display: block; color: var(--white); font-size: .98rem; }
.strip-item span { font-size: .86rem; color: #c5cfe2; }
@media (min-width: 860px) {
  .strip .container { grid-template-columns: .9fr 1.1fr; align-items: center; gap: 2.6rem; }
  .strip-items { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Especialidades ---------- */
.cards { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 620px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.card::before { content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(200,153,47,.45); }
.card:hover::before { transform: scaleX(1); }
.card-icon {
  width: 62px; height: 62px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--navy); color: var(--gold-light);
}
.card:nth-child(even) .card-icon { background: var(--gold-grad); color: var(--navy-900); }
.card-icon svg { width: 30px; height: 30px; }
.card h3 { font-size: 1.5rem; margin-bottom: .35rem; }
.card p { color: var(--ink-soft); font-size: .96rem; flex: 1; }
.card-link { margin-top: 1rem; font-weight: 800; color: var(--gold-dark); display: inline-flex; align-items: center; gap: .4rem; font-size: .92rem; }
.card-link svg { width: 1rem; height: 1rem; transition: transform .25s var(--ease); }
.card:hover .card-link svg { transform: translateX(4px); }

/* ---------- Olhar integrativo ---------- */
.integra { background: var(--navy); color: var(--cream); position: relative; }
.integra h2, .integra h3 { color: var(--white); }
.integra-copy p { color: #d6dded; }
.integra-grid { display: grid; gap: clamp(2rem,5vw,3.4rem); align-items: center; }
.integra-quad { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.quad {
  background: rgba(255,255,255,.05); border: 1px solid rgba(230,194,96,.25); border-radius: var(--radius);
  padding: 1.4rem 1.2rem; transition: background .3s, transform .3s var(--ease);
}
.quad:hover { background: rgba(255,255,255,.09); transform: translateY(-4px); }
.quad .q-icon { width: 48px; height: 48px; border-radius: 50%; border: 2px solid var(--gold-light); display: grid; place-items: center; color: var(--gold-light); margin-bottom: .8rem; }
.quad .q-icon svg { width: 24px; height: 24px; }
.quad b { display: block; color: var(--white); font-size: 1.05rem; font-family: var(--font-display); font-weight: 700; }
.quad span { font-size: .85rem; color: #c5cfe2; }
.integra-copy .signature { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; color: var(--gold-light); margin-top: 1.2rem; }
@media (min-width: 900px) { .integra-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- A clínica / valores ---------- */
.clinic-grid { display: grid; gap: clamp(2rem,5vw,3.2rem); align-items: center; }
.clinic-media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(200,153,47,.3); }
.clinic-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 5/4; }
.values { list-style: none; display: grid; gap: 1rem; }
.value { display: flex; gap: .9rem; align-items: flex-start; }
.value .v-check { width: 34px; height: 34px; border-radius: 50%; background: rgba(200,153,47,.14); color: var(--gold-dark); display: grid; place-items: center; flex: none; }
.value .v-check svg { width: 18px; height: 18px; }
.value b { color: var(--navy); font-size: 1.05rem; }
.value p { margin: .15rem 0 0; color: var(--ink-soft); font-size: .94rem; }
@media (min-width: 900px) { .clinic-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Equipe ---------- */
.team { display: grid; gap: 1.8rem; }
.member {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: grid;
}
.member-photo { position: relative; }
.member-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; aspect-ratio: 4/3; }
.member-body { padding: 1.7rem 1.6rem 1.9rem; }
.member-body .role { color: var(--gold-dark); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; }
.member-body h3 { font-size: 1.7rem; margin: .25rem 0 .2rem; }
.member-body .crm { display: inline-block; background: var(--navy-100); color: var(--navy-700); font-weight: 800; font-size: .78rem; padding: .25rem .7rem; border-radius: 999px; margin-bottom: .9rem; }
.member-body p { color: var(--ink-soft); font-size: .96rem; }
.member-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.member-tags span { font-size: .8rem; font-weight: 700; color: var(--navy-700); background: rgba(200,153,47,.12); border: 1px solid rgba(200,153,47,.25); padding: .3rem .7rem; border-radius: 999px; }
@media (min-width: 760px) {
  .member { grid-template-columns: 1fr 1.25fr; }
  .member--reverse .member-photo { order: 2; }
}
@media (min-width: 1040px) { .team { grid-template-columns: 1fr; } }

/* ---------- Primeira consulta (passos) ---------- */
.steps { list-style: none; display: grid; gap: 1.2rem; grid-template-columns: 1fr; counter-reset: step; max-width: 980px; margin-inline: auto; }
.step { display: flex; gap: 1rem; align-items: flex-start; background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.4rem; box-shadow: var(--shadow-sm); }
.step-num { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad); color: var(--navy-900); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; }
.step b { color: var(--navy); font-size: 1.1rem; display: block; }
.step p { margin: .2rem 0 0; color: var(--ink-soft); font-size: .94rem; }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1040px) { .steps { grid-template-columns: repeat(4, 1fr); } .step { flex-direction: column; } }
.pay-note { max-width: 980px; margin: 1.6rem auto 0; display: flex; gap: .8rem; align-items: center; background: rgba(200,153,47,.10); border: 1px solid rgba(200,153,47,.3); border-radius: var(--radius); padding: 1rem 1.2rem; }
.pay-note svg { width: 1.6rem; height: 1.6rem; color: var(--gold-dark); flex: none; }
.pay-note p { margin: 0; font-size: .94rem; color: var(--ink); }
.pay-note a { color: var(--gold-dark); font-weight: 800; text-decoration: underline; }

/* ---------- Avaliações Google ---------- */
.google-reviews { display: flex; flex-wrap: wrap; gap: 1.2rem; align-items: center; justify-content: space-between; margin-top: 2rem; background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.6rem; box-shadow: var(--shadow-sm); }
.gr-rating { display: flex; align-items: center; gap: .9rem; }
.gr-rating .stars { color: var(--gold); display: flex; gap: 2px; }
.gr-rating .stars svg { width: 20px; height: 20px; }
.gr-badge { width: 46px; height: 46px; border-radius: 50%; background: var(--gold-grad); color: var(--navy-900); display: grid; place-items: center; flex: none; }
.gr-badge svg { width: 25px; height: 25px; }
.gr-rating b { color: var(--navy); display: block; font-size: 1rem; }
.gr-rating span { color: var(--ink-soft); font-size: .88rem; }

/* ---------- Depoimentos ---------- */
.quotes { display: grid; gap: 1.4rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .quotes { grid-template-columns: repeat(3, 1fr); } }
.quote {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.quote .stars { color: var(--gold); display: flex; gap: 2px; margin-bottom: .8rem; }
.quote .stars svg { width: 18px; height: 18px; }
.quote p { font-style: italic; color: var(--ink); flex: 1; }
.quote .who { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.quote .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--gold-grad); color: var(--navy-900); display: grid; place-items: center; font-weight: 800; font-family: var(--font-display); font-size: 1.1rem; }
.quote .who b { color: var(--navy); font-size: .95rem; display: block; }
.quote .who span { font-size: .82rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: transparent; border: 0; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.2rem 0; font-family: var(--font-display); font-size: clamp(1.08rem, 1rem + .5vw, 1.25rem); font-weight: 700; color: var(--navy);
}
.faq-q .icon { width: 30px; height: 30px; border-radius: 50%; border: 2px solid var(--gold); color: var(--gold-dark); display: grid; place-items: center; flex: none; transition: transform .3s var(--ease), background .3s; }
.faq-q .icon svg { width: 16px; height: 16px; }
.faq-q[aria-expanded="true"] .icon { transform: rotate(45deg); background: var(--gold-grad); color: var(--navy-900); border-color: transparent; }
.faq-a { display: grid; grid-template-rows: 0fr; overflow: hidden; transition: grid-template-rows .35s var(--ease); }
.faq-a.open { grid-template-rows: 1fr; }
.faq-a > div { min-height: 0; }
.faq-a p { padding-bottom: 1.3rem; color: var(--ink-soft); margin: 0; }

/* ---------- Contato / Localização ---------- */
.contact-grid { display: grid; gap: clamp(2rem,5vw,3rem); }
.contact-info { display: grid; gap: 1.2rem; }
.contact-row { display: flex; gap: .9rem; align-items: flex-start; }
.contact-row .c-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--navy); color: var(--gold-light); display: grid; place-items: center; flex: none; }
.contact-row .c-icon svg { width: 22px; height: 22px; }
.contact-row b { color: var(--navy); display: block; font-size: 1rem; }
.contact-row a, .contact-row span { color: var(--ink-soft); }
.contact-row a:hover { color: var(--gold-dark); }
.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid rgba(200,153,47,.3); min-height: 340px; background: var(--cream-deep); }
.map-embed iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1.1fr; } }

/* ---------- CTA final ---------- */
.cta-final { background: var(--gold-grad); color: var(--navy-900); text-align: center; }
.cta-final h2 { color: var(--navy-900); font-size: clamp(2rem,1.5rem+2.4vw,3rem); }
.cta-final p { color: var(--navy-900); max-width: 50ch; margin-inline: auto; font-weight: 700; }
.cta-final .hero-actions { justify-content: center; }

/* Microcopy abaixo do CTA do hero */
.cta-note { display: block; margin-top: .8rem; font-size: .86rem; color: var(--ink-soft); font-weight: 700; }
.cta-note svg { width: 1rem; height: 1rem; vertical-align: -2px; color: #1f9d55; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #c5cfe2; padding-block: clamp(2.8rem,6vw,3.6rem) 1.6rem; }
.footer-grid { display: grid; gap: 2rem; }
.footer-brand img { height: 48px; width: auto; margin-bottom: .9rem; }
.footer-brand strong { font-family: var(--font-display); color: var(--white); font-size: 1.3rem; display: block; }
.footer-brand p { font-size: .9rem; margin-top: .6rem; max-width: 34ch; }
.footer-col h3 { color: var(--white); font-family: var(--font-body); font-weight: 800; font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: grid; gap: .6rem; }
.footer-col a { font-size: .92rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: .7rem; margin-top: 1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(230,194,96,.3); display: grid; place-items: center; color: var(--gold-light); transition: background .25s, transform .25s; }
.footer-social a:hover { background: rgba(230,194,96,.15); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.2rem; padding-top: 1.4rem; display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between; font-size: .82rem; }
.footer-bottom .resp { color: #9fb0cc; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 1100;
  width: 60px; height: 60px; border-radius: 50%; background: #25d366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::after {
  content: "Agende pelo WhatsApp"; position: absolute; right: 72px; white-space: nowrap;
  background: var(--navy); color: var(--cream); padding: .5rem .8rem; border-radius: 10px; font-size: .82rem; font-weight: 700;
  opacity: 0; transform: translateX(8px); transition: opacity .25s, transform .25s; pointer-events: none;
}
.wa-float:hover::after { opacity: 1; transform: translateX(0); }
@media (max-width: 520px) { .wa-float::after { display: none; } }

/* ---------- Galeria de fotos ---------- */
.gallery { list-style: none; display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 680px) { .gallery { grid-template-columns: repeat(3, 1fr); gap: 1.2rem; } }
.gallery-btn {
  display: block; width: 100%; padding: 0; margin: 0; border: 1px solid var(--line);
  background: var(--cream-card); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); cursor: zoom-in; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
/* object-position prioriza o topo: fotos retrato (familia, etc.) não cortam rostos no crop 4:3 */
.gallery-btn img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 28%; transition: transform .55s var(--ease); }
.gallery-btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(10,31,64,.34));
  opacity: 0; transition: opacity .3s;
}
.gallery-btn::before {
  content: ""; position: absolute; right: 12px; bottom: 12px; z-index: 2; width: 34px; height: 34px;
  border-radius: 50%; background: rgba(250,244,232,.92);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230e2a57' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M21 21l-4.3-4.3M11 8v6M8 11h6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; background-size: 19px;
  opacity: 0; transform: translateY(6px); transition: opacity .3s, transform .3s; box-shadow: var(--shadow-sm);
}
.gallery-btn:hover, .gallery-btn:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200,153,47,.45); }
.gallery-btn:hover img, .gallery-btn:focus-visible img { transform: scale(1.06); }
.gallery-btn:hover::after, .gallery-btn:focus-visible::after { opacity: 1; }
.gallery-btn:hover::before, .gallery-btn:focus-visible::before { opacity: 1; transform: translateY(0); }
.gallery-note { text-align: center; margin-top: 1.8rem; color: var(--ink-soft); }
.gallery-note a { color: var(--gold-dark); font-weight: 800; text-decoration: underline; }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1500;
  background: rgba(10, 31, 64, .94); display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 2.4rem); animation: lb-in .25s var(--ease);
}
.lightbox[hidden] { display: none; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lb-figure { margin: 0; max-width: 100%; display: grid; justify-items: center; }
.lb-figure img { max-width: min(1080px, 92vw); max-height: 78vh; width: auto; height: auto; border-radius: 12px; box-shadow: var(--shadow-md); background: var(--navy-900); }
.lb-figure figcaption { color: var(--cream); text-align: center; margin-top: 1rem; font-size: 1rem; max-width: 60ch; }
.lb-btn {
  position: absolute; z-index: 2; width: 50px; height: 50px; border-radius: 50%;
  background: rgba(250,244,232,.2); border: 1px solid rgba(230,194,96,.7); color: var(--cream);
  display: grid; place-items: center; transition: background .25s, transform .25s;
}
.lb-btn:hover { background: rgba(230,194,96,.22); transform: scale(1.06); }
.lb-btn svg { width: 24px; height: 24px; }
.lb-close { top: clamp(1rem, 3vw, 1.6rem); right: clamp(1rem, 3vw, 1.6rem); }
.lb-prev { left: clamp(.6rem, 2vw, 1.6rem); top: 50%; transform: translateY(-50%); }
.lb-next { right: clamp(.6rem, 2vw, 1.6rem); top: 50%; transform: translateY(-50%); }
.lb-prev:hover, .lb-next:hover { transform: translateY(-50%) scale(1.06); }
@media (max-width: 560px) {
  .lb-prev { left: .5rem; } .lb-next { right: .5rem; }
  .lb-btn { width: 44px; height: 44px; }
}

/* ---------- Seção de artigos (home) ---------- */
.articles { display: grid; gap: 1.6rem; grid-template-columns: 1fr; max-width: 760px; margin-inline: auto; }
.article-card {
  background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); display: grid;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(200,153,47,.45); }
.article-card-media {
  position: relative; min-height: 150px; display: grid; place-items: center;
  background: radial-gradient(120% 120% at 80% 0%, var(--navy-700), var(--navy-900)); color: var(--gold-light);
}
.article-card-media svg { width: 56px; height: 56px; opacity: .9; }
.article-tag {
  position: absolute; left: 1rem; top: 1rem; background: var(--gold-grad); color: var(--navy-900);
  font-weight: 800; font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; padding: .3rem .8rem; border-radius: 999px;
}
.article-card-body { padding: 1.6rem 1.6rem 1.8rem; }
.article-meta { color: var(--gold-dark); font-weight: 800; font-size: .82rem; margin: 0 0 .5rem; }
.article-card-body h3 { font-size: clamp(1.4rem, 1.1rem + 1.2vw, 1.8rem); margin-bottom: .5rem; }
.article-card-body h3 a { color: var(--navy); transition: color .2s; }
.article-card-body h3 a:hover { color: var(--gold-dark); }
.article-card-body > p { color: var(--ink-soft); font-size: .98rem; }
@media (min-width: 640px) {
  .article-card { grid-template-columns: 200px 1fr; }
  .article-card-media { min-height: 100%; }
}

/* ---------- Página de artigo ---------- */
.article-header { position: sticky; top: 0; z-index: 1000; background: rgba(250,244,232,.9); backdrop-filter: saturate(160%) blur(12px); -webkit-backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid rgba(200,153,47,.18); }
.article-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 70px; }
.article-wrap { max-width: 760px; margin-inline: auto; padding-inline: clamp(1.1rem, 4vw, 2rem); }
.breadcrumb { font-size: .86rem; color: var(--ink-soft); padding-top: clamp(1.4rem, 4vw, 2.2rem); }
.breadcrumb a { color: var(--gold-dark); font-weight: 700; }
.breadcrumb a:hover { text-decoration: underline; }
.article { padding-block: 1.2rem clamp(2.6rem, 6vw, 4rem); }
.article-hero { margin-bottom: 1.8rem; }
.article-hero .eyebrow { margin-bottom: .7rem; }
.article-hero h1 { font-size: clamp(2rem, 1.4rem + 3vw, 3rem); line-height: 1.1; margin-bottom: .8rem; }
.article-byline { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem .9rem; color: var(--ink-soft); font-size: .92rem; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: .9rem 0; }
.article-byline b { color: var(--navy); }
.article-byline .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.article-body { font-size: 1.08rem; color: var(--ink); }
.article-body > p:first-of-type { font-size: 1.18rem; color: var(--ink-soft); }
.article-body h2 { font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem); margin: 2.2rem 0 .6rem; }
.article-body h3 { font-size: 1.25rem; margin: 1.6rem 0 .4rem; color: var(--navy-700); }
.article-body p { margin: 0 0 1.1rem; }
.article-body ul, .article-body ol { padding-left: 1.3rem; margin: 0 0 1.2rem; display: grid; gap: .5rem; }
.article-body li { padding-left: .2rem; }
.article-body li::marker { color: var(--gold-dark); font-weight: 700; }
.article-body strong { color: var(--navy); }
.article-callout {
  background: var(--navy); color: var(--cream); border-radius: var(--radius); padding: 1.4rem 1.5rem; margin: 1.8rem 0;
  border-left: 4px solid var(--gold);
}
.article-callout p { margin: 0; }
.article-callout b { color: var(--gold-light); }
.article-midcta {
  background: rgba(200,153,47,.10); border: 1px solid rgba(200,153,47,.3); border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1rem 1.2rem; font-weight: 600; color: var(--ink);
}
.article-midcta a { color: var(--gold-dark); font-weight: 800; text-decoration: underline; }
.article-cta {
  background: var(--gold-grad); color: var(--navy-900); border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.2rem); margin: 2.4rem 0; text-align: center;
}
.article-cta h2 { color: var(--navy-900); margin: 0 0 .4rem; font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem); }
.article-cta p { color: var(--navy-900); font-weight: 700; max-width: 48ch; margin: 0 auto 1.2rem; }
.article-disclaimer { font-size: .9rem; color: var(--ink-soft); background: rgba(200,153,47,.08); border: 1px solid rgba(200,153,47,.25); border-radius: var(--radius); padding: 1rem 1.2rem; margin-top: 2rem; }
.article-disclaimer svg { width: 1.2rem; height: 1.2rem; color: var(--gold-dark); vertical-align: -3px; margin-right: .3rem; }
.author-card { display: grid; gap: 1rem; grid-template-columns: 84px 1fr; align-items: center; background: var(--cream-card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.4rem 1.5rem; margin-top: 2.4rem; box-shadow: var(--shadow-sm); }
.author-card img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; object-position: center 20%; border: 2px solid var(--gold-light); }
.author-card .role { color: var(--gold-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: .74rem; }
.author-card b { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); }
.author-card span { font-size: .9rem; color: var(--ink-soft); }
@media (max-width: 430px) {
  .author-card { grid-template-columns: 1fr; justify-items: start; gap: .7rem; }
  .author-card img { width: 64px; height: 64px; }
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
