/* ═══════════════════════════════════════════════════
   ORTHO-X · Macapá — Landing page
   Paleta: azul-marinho profundo + dourado champagne + marfim
   Tipografia: Instrument Serif (display) + Archivo (texto)
   ═══════════════════════════════════════════════════ */

:root {
  --navy: #0B1D3A;
  --navy-2: #12294F;
  --navy-3: #1A3665;
  --ink: #1C2536;
  --ivory: #F6F2EA;
  --ivory-2: #EFE9DD;
  --white: #FFFFFF;
  --gold: #C9A45C;
  --gold-2: #B08A3E;
  --gold-soft: #E8D7B4;
  --muted: #5D6880;
  --radius: 18px;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-body: "Archivo", "Segoe UI", sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

em { font-style: italic; }

/* ─────────── Botões ─────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  will-change: transform;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(201, 164, 92, .35);
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(201, 164, 92, .45);
}

.btn--ghost {
  color: var(--ivory);
  border: 1px solid rgba(246, 242, 234, .35);
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-3px);
}

.btn--navy {
  background: var(--navy);
  color: var(--ivory);
}
.btn--navy:hover {
  background: var(--navy-3);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 29, 58, .3);
}

.btn--outline {
  border: 1.5px solid var(--navy);
  color: var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--ivory);
  transform: translateY(-3px);
}

.btn--lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn--nav { padding: .65rem 1.4rem; font-size: .88rem; }

/* ─────────── Nav ─────────── */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(11, 29, 58, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(246, 242, 234, .08);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .8rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
}

.nav__logo {
  width: 42px;
  height: auto;
  border-radius: 50%;
  background: var(--white);
  padding: 3px;
}

.nav__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--ivory);
  letter-spacing: .02em;
}
.nav__name em { color: var(--gold); }

.nav__links {
  display: flex;
  gap: 2rem;
}

.nav__links a {
  color: rgba(246, 242, 234, .75);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  position: relative;
  transition: color .3s;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -5px;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .4s var(--ease);
}
.nav__links a:hover { color: var(--ivory); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ─────────── Hero ─────────── */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(1100px 600px at 75% -10%, rgba(26, 54, 101, .9) 0%, transparent 60%),
    radial-gradient(900px 500px at 15% 110%, rgba(176, 138, 62, .18) 0%, transparent 55%),
    var(--navy);
  color: var(--ivory);
  padding: 8.5rem 1.5rem 5rem;
  overflow: hidden;
}

/* granulação sutil */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__arcs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__arcs svg { width: 100%; height: 100%; }

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(201, 164, 92, .35);
  border-radius: 999px;
  padding: .5rem 1.2rem;
  margin-bottom: 2rem;
  background: rgba(201, 164, 92, .07);
}

.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .6);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7.5vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -.01em;
  margin-bottom: 1.6rem;
}
.hero__title span { display: block; }
.hero__title em {
  color: var(--gold);
  position: relative;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .04em;
  height: .06em;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .55;
}

.hero__sub {
  max-width: 560px;
  margin: 0 auto 2.6rem;
  font-size: 1.1rem;
  color: rgba(246, 242, 234, .78);
  font-weight: 400;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero__proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.hero__proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .1rem;
  font-size: .85rem;
  color: rgba(246, 242, 234, .65);
}
.hero__proof-item strong {
  color: var(--ivory);
  font-size: .95rem;
  letter-spacing: .02em;
}
.hero__proof-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .15em;
}
.hero__proof-sep {
  width: 1px;
  height: 30px;
  background: rgba(246, 242, 234, .18);
}

/* animação de entrada do hero */
.anim {
  opacity: 0;
  transform: translateY(26px);
  animation: rise .9s var(--ease) forwards;
}
.anim-1 { animation-delay: .1s; }
.anim-2 { animation-delay: .25s; }
.anim-3 { animation-delay: .4s; }
.anim-4 { animation-delay: .55s; }
.anim-5 { animation-delay: .7s; }
.anim-6 { animation-delay: .9s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ─────────── Marquee ─────────── */

.marquee {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-2) 100%);
  color: var(--navy);
  overflow: hidden;
  padding: .95rem 0;
  transform: rotate(-1deg) scale(1.02);
  margin-top: -1.4rem;
  position: relative;
  z-index: 3;
  box-shadow: 0 10px 30px rgba(11, 29, 58, .18);
}

.marquee__track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: scroll 28s linear infinite;
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .04em;
  white-space: nowrap;
}
.marquee__track i {
  font-style: normal;
  font-size: .8rem;
  opacity: .6;
}

@keyframes scroll {
  to { transform: translateX(-33.333%); }
}

/* ─────────── Seções ─────────── */

.section { padding: 7rem 1.5rem; }

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section__head {
  max-width: 640px;
  margin-bottom: 4rem;
}

.section__eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-2);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.section__eyebrow::before {
  content: "";
  width: 36px;
  height: 1.5px;
  background: var(--gold);
}
.section__eyebrow--light { color: var(--gold-soft); }

.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  color: var(--navy);
}
.section__title em { color: var(--gold-2); }
.section__title--light { color: var(--ivory); }
.section__title--light em { color: var(--gold); }

/* ─────────── Serviços ─────────── */

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.service {
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, .07);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
}
.service:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(11, 29, 58, .12);
  border-color: rgba(201, 164, 92, .45);
}

.service__num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.6rem;
  color: rgba(201, 164, 92, .4);
  display: block;
  margin-bottom: 1.1rem;
  line-height: 1;
  transition: color .3s;
}
.service:hover .service__num { color: var(--gold); }

.service h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: .6rem;
}

.service p {
  font-size: .93rem;
  color: var(--muted);
}

.service--cta {
  background: var(--navy);
  border-color: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: .4rem;
}
.service--cta::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 164, 92, .3), transparent 70%);
}
.service--cta h3 { color: var(--ivory); }
.service--cta p { color: rgba(246, 242, 234, .7); margin-bottom: 1.2rem; }
.service--cta .btn--navy {
  background: var(--gold);
  color: var(--navy);
}
.service--cta .btn--navy:hover { background: var(--gold-soft); }
.service--cta:hover {
  box-shadow: 0 24px 48px rgba(11, 29, 58, .3);
}

/* ─────────── A Clínica ─────────── */

.clinic {
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(26, 54, 101, .8) 0%, transparent 55%),
    var(--navy);
  color: var(--ivory);
}

.clinic__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: center;
}

.clinic__text {
  color: rgba(246, 242, 234, .75);
  margin: 1.4rem 0 1.8rem;
  max-width: 520px;
}

.clinic__list {
  list-style: none;
  margin-bottom: 2.2rem;
  display: grid;
  gap: .85rem;
}
.clinic__list li {
  display: flex;
  gap: .8rem;
  align-items: baseline;
  color: rgba(246, 242, 234, .85);
  font-size: .97rem;
}
.clinic__list span {
  color: var(--gold);
  font-weight: 700;
}

.clinic__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.stat {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(246, 242, 234, .1);
  border-radius: var(--radius);
  padding: 1.8rem 1.6rem;
  transition: border-color .3s, background .3s, transform .45s var(--ease);
}
.stat:hover {
  border-color: rgba(201, 164, 92, .5);
  background: rgba(201, 164, 92, .06);
  transform: translateY(-4px);
}
.stat strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.6rem;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat strong em {
  font-size: 1.4rem;
  margin-left: .15rem;
}
.stat span {
  font-size: .85rem;
  color: rgba(246, 242, 234, .65);
}

/* ─────────── Depoimentos ─────────── */

.testimonials { background: var(--ivory-2); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  align-items: stretch;
}

.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(11, 29, 58, .06);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.quote:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(11, 29, 58, .1);
}

.quote__stars {
  color: var(--gold);
  letter-spacing: .2em;
  font-size: 1.05rem;
}

.quote blockquote {
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1.45;
  color: var(--navy);
  flex: 1;
}

.quote figcaption {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
}

.quote--featured {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-14px);
}
.quote--featured blockquote { color: var(--ivory); }
.quote--featured figcaption { color: rgba(246, 242, 234, .55); }
.quote--featured:hover { transform: translateY(-20px); }

/* ─────────── FAQ ─────────── */

.faq__inner { max-width: 820px; }

.faq__list { display: grid; gap: .9rem; }

.faq__item {
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, .08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq__item[open] {
  border-color: rgba(201, 164, 92, .5);
  box-shadow: 0 12px 32px rgba(11, 29, 58, .08);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.3rem 1.6rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  user-select: none;
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__icon {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-2);
  position: relative;
  transition: transform .4s var(--ease), background .3s;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 10px; height: 1.5px;
  background: var(--gold-2);
  transform: translate(-50%, -50%);
  transition: background .3s;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq__item[open] .faq__icon {
  transform: rotate(45deg);
  background: var(--gold-2);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after { background: var(--white); }

.faq__item p {
  padding: 0 1.6rem 1.4rem;
  color: var(--muted);
  font-size: .95rem;
}
.faq__item p a {
  color: var(--gold-2);
  font-weight: 600;
}

/* ─────────── Localização ─────────── */

.location { background: var(--ivory-2); }

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.4rem;
  align-items: stretch;
}

.location__card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2.6rem;
  border: 1px solid rgba(11, 29, 58, .07);
  display: flex;
  flex-direction: column;
}

.location__address {
  font-style: normal;
  margin: 1.6rem 0;
  color: var(--muted);
  line-height: 1.7;
}
.location__address strong {
  display: block;
  color: var(--navy);
  font-size: 1.05rem;
  margin-bottom: .3rem;
}

.location__hours {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.location__hours td {
  padding: .7rem 0;
  border-bottom: 1px dashed rgba(11, 29, 58, .15);
  font-size: .95rem;
  color: var(--navy);
}
.location__hours td:last-child {
  text-align: right;
  font-weight: 600;
}
.location__hours span {
  color: #B4553B;
}

.location__ctas {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.location__map {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(11, 29, 58, .07);
  box-shadow: 0 20px 48px rgba(11, 29, 58, .12);
}
.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  filter: saturate(.9);
}

/* ─────────── CTA final ─────────── */

.cta-final {
  background:
    radial-gradient(800px 400px at 50% 120%, rgba(201, 164, 92, .25) 0%, transparent 60%),
    var(--navy);
  padding: 7rem 1.5rem;
  text-align: center;
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}

.cta-final__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.cta-final h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
}
.cta-final em { color: var(--gold); }

.cta-final p {
  color: rgba(246, 242, 234, .75);
  margin-bottom: .8rem;
}

/* ─────────── Footer ─────────── */

.footer {
  background: #081428;
  color: rgba(246, 242, 234, .7);
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
}

.footer__inner--5 {
  grid-template-columns: 1.4fr repeat(4, 1fr);
}

.footer__name {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--ivory);
}
.footer__name em { color: var(--gold); }

.footer__brand p {
  margin-top: .8rem;
  font-size: .9rem;
  max-width: 260px;
}

.footer__col h4 {
  color: var(--ivory);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.footer__col a {
  display: block;
  color: rgba(246, 242, 234, .7);
  text-decoration: none;
  font-size: .92rem;
  margin-bottom: .5rem;
  transition: color .3s;
}
.footer__col a:hover { color: var(--gold); }

.footer__col p {
  font-size: .92rem;
  line-height: 1.7;
}

.footer__social {
  display: flex;
  gap: .8rem;
}
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(246, 242, 234, .2);
  color: rgba(246, 242, 234, .8);
  margin-bottom: 0;
  transition: border-color .3s, color .3s, transform .35s var(--ease);
}
.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(246, 242, 234, .08);
  text-align: center;
  padding: 1.4rem;
  font-size: .8rem;
  color: rgba(246, 242, 234, .4);
}

/* ─────────── WhatsApp flutuante ─────────── */

.whats-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 200;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  animation: floatPulse 2.6s infinite;
}
.whats-float:hover {
  transform: scale(1.1);
  box-shadow: 0 16px 36px rgba(37, 211, 102, .55);
  animation-play-state: paused;
}

@keyframes floatPulse {
  0%   { box-shadow: 0 10px 28px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, .45); }
  70%  { box-shadow: 0 10px 28px rgba(37, 211, 102, .45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 28px rgba(37, 211, 102, .45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ─────────── Reveal ao rolar (CSS scroll-driven, com fallback) ─────────── */

@supports (animation-timeline: view()) {
  .reveal {
    opacity: 0;
    transform: translateY(34px);
    animation: revealUp .9s var(--ease) forwards;
    animation-timeline: view();
    animation-range: entry 0% entry 32%;
  }
  @keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ─────────── Acessibilidade: movimento reduzido ─────────── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .anim, .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ─────────── Responsivo ─────────── */

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .clinic__inner { grid-template-columns: 1fr; gap: 3rem; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .quote--featured { transform: none; }
  .quote--featured:hover { transform: translateY(-6px); }
  .location__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__name { font-size: 1.3rem; }
  .nav__logo { width: 36px; }

  .section { padding: 4.5rem 1.2rem; }
  .section__head { margin-bottom: 2.5rem; }

  .hero { padding: 7.5rem 1.2rem 4rem; }
  .hero__proof { gap: 1rem; }
  .hero__proof-sep { display: none; }
  .hero__proof-item {
    flex: 1 1 40%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(246, 242, 234, .1);
    border-radius: 12px;
    padding: .7rem .5rem;
  }

  .services__grid { grid-template-columns: 1fr; }
  .clinic__stats { grid-template-columns: 1fr 1fr; gap: .9rem; }
  .stat { padding: 1.3rem 1.1rem; }
  .stat strong { font-size: 2rem; }

  .location__card { padding: 2rem 1.5rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .whats-float {
    width: 56px; height: 56px;
    right: 1rem; bottom: 1rem;
  }

  .btn--lg { width: 100%; justify-content: center; }
  .hero__ctas { flex-direction: column; align-items: stretch; }
}

/* ══════════ PÁGINAS LOCAIS PROGRAMÁTICAS ══════════ */
.local {
  max-width: 940px;
  margin: 0 auto;
  padding: 96px 22px 40px;
}

/* Trilha (breadcrumbs) como pílula */
.crumbs {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem;
  font-size: .8rem;
  color: var(--muted);
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, .1);
  padding: .5rem 1rem;
  border-radius: 999px;
  margin-bottom: 24px;
}
.crumbs a { color: var(--muted); text-decoration: none; transition: color .2s; }
.crumbs a:hover { color: var(--gold-2); }
.crumbs span { color: var(--navy); font-weight: 600; }

/* ---- HERO: painel navy que ancora o topo da página ---- */
.local__hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 340px at 88% -20%, rgba(26, 54, 101, .95) 0%, transparent 60%),
    radial-gradient(500px 300px at 5% 130%, rgba(176, 138, 62, .22) 0%, transparent 55%),
    var(--navy);
  color: var(--ivory);
  border-radius: 24px;
  padding: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 44px;
  box-shadow: 0 24px 60px rgba(11, 29, 58, .22);
}
.local__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.03 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.local__hero > * { position: relative; z-index: 1; }

.local__eyebrow {
  display: inline-block;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  border: 1px solid rgba(201, 164, 92, .35);
  background: rgba(201, 164, 92, .08);
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 18px;
}
.local__hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 5.2vw, 3.1rem);
  line-height: 1.06;
  color: var(--ivory);
  margin-bottom: 18px;
}
.local__hero h1 em { color: var(--gold); font-style: italic; }
.local__intro {
  font-size: 1.06rem;
  line-height: 1.75;
  color: rgba(246, 242, 234, .82);
  max-width: 60ch;
}
.local__intro strong { color: var(--ivory); }
.local__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.local__hero .btn--outline {
  border-color: rgba(246, 242, 234, .4);
  color: var(--ivory);
}
.local__hero .btn--outline:hover {
  background: var(--ivory);
  color: var(--navy);
  border-color: var(--ivory);
}

/* ---- Blocos de conteúdo ---- */
.local__block { margin-bottom: 44px; }
.local__block h2 {
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.55rem, 3.5vw, 2.05rem);
  color: var(--navy);
  margin-bottom: 18px;
  padding-left: 20px;
}
.local__block h2::before {
  content: "";
  position: absolute;
  left: 0; top: .18em;
  width: 5px; height: 1em;
  border-radius: 3px;
  background: linear-gradient(var(--gold), var(--gold-2));
}
.local__block p { font-size: 1.02rem; line-height: 1.8; color: var(--ink); margin-bottom: 14px; }

/* Lista de benefícios como grade de chips */
.local__benefits {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}
.local__benefits li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  line-height: 1.5;
  font-size: .97rem;
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, .08);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color .25s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.local__benefits li:hover {
  border-color: rgba(201, 164, 92, .5);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 29, 58, .08);
}
.local__benefits li span {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(201, 164, 92, .16);
  color: var(--gold-2);
  font-weight: 700;
  font-size: .8rem;
}

/* Destaque de preço / observação */
.local__price {
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, .08);
  border-left: 4px solid var(--gold);
  padding: 18px 22px;
  border-radius: 16px;
  font-weight: 500;
  color: var(--navy);
  box-shadow: 0 10px 26px rgba(11, 29, 58, .06);
}

/* Seção de links relacionados */
.local__related {
  border-top: 1px solid rgba(11, 29, 58, .1);
  padding-top: 40px;
}
.local__related h2 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-2);
  padding-left: 0;
  margin-bottom: 14px;
}
.local__related h2::before { display: none; }
.local__related h2:not(:first-child) { margin-top: 30px; }
.local__links { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 6px; }
.local__links a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, .12);
  border-radius: 999px;
  color: var(--navy);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 500;
  transition: border-color .2s var(--ease), color .2s var(--ease), background .2s, transform .3s var(--ease);
}
.local__links a::before {
  content: "→";
  color: var(--gold-2);
  font-size: .85rem;
  transition: transform .25s var(--ease);
}
.local__links a:hover {
  border-color: var(--gold);
  color: var(--gold-2);
  background: rgba(201, 164, 92, .06);
  transform: translateY(-2px);
}
.local__links a:hover::before { transform: translateX(3px); }

/* Mapa */
.local__map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 20px;
  margin-top: 10px;
  box-shadow: 0 20px 48px rgba(11, 29, 58, .14);
  filter: saturate(.92);
}

/* ---- Grid de cards (hubs: serviços / bairros) ---- */
.local__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.local__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, .08);
  border-radius: 18px;
  padding: 26px 24px;
  text-decoration: none;
  color: var(--navy);
  position: relative;
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .4s var(--ease), box-shadow .4s var(--ease);
}
.local__card::after {
  content: "→";
  position: absolute;
  top: 24px; right: 24px;
  color: var(--gold-2);
  font-size: 1.1rem;
  transition: transform .3s var(--ease);
}
.local__card:hover {
  border-color: rgba(201, 164, 92, .5);
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(11, 29, 58, .1);
}
.local__card:hover::after { transform: translate(4px, -2px); }
.local__card-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  color: rgba(201, 164, 92, .5);
  line-height: 1;
}
.local__card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--navy);
}
.local__card p { font-size: .93rem; line-height: 1.6; color: var(--muted); }

/* ---- Grade de contato ---- */
.local__contact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.local__contact-item {
  background: var(--white);
  border: 1px solid rgba(11, 29, 58, .08);
  border-radius: 18px;
  padding: 24px;
}
.local__contact-item h3 {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 700;
  margin-bottom: 10px;
}
.local__contact-item p, .local__contact-item a {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--navy);
  text-decoration: none;
}
.local__contact-item a:hover { color: var(--gold-2); }

@media (max-width: 640px) {
  .local { padding: 88px 16px 30px; }
  .local__benefits,
  .local__cards,
  .local__contact { grid-template-columns: 1fr; }
  .local__hero { border-radius: 20px; }
  .local__ctas .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════
   MAPA DO SITE — índice editorial (bento matrix)
   ═══════════════════════════════════════════════════ */
.sitemap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 128px 24px 72px;
}

.sitemap .crumbs { margin-bottom: 28px; }

/* ── Hero ── */
.sitemap__hero {
  position: relative;
  padding: 40px 40px 44px;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(201,164,92,.16), transparent 55%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 60%, var(--navy-3) 100%);
  color: var(--ivory);
  overflow: hidden;
  margin-bottom: 56px;
}
.sitemap__hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(90% 90% at 80% 10%, #000, transparent 75%);
          mask-image: radial-gradient(90% 90% at 80% 10%, #000, transparent 75%);
  pointer-events: none;
}
.sitemap__hero > * { position: relative; z-index: 1; }
.sitemap__eyebrow {
  font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600; margin-bottom: 14px;
}
.sitemap__hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 400; line-height: .98; letter-spacing: -.01em;
}
.sitemap__hero h1 em { color: var(--gold); }
.sitemap__lead {
  max-width: 46ch; margin-top: 16px;
  color: rgba(246,242,234,.78); font-size: 1.03rem; line-height: 1.7;
}
.sitemap__stats {
  display: flex; flex-wrap: wrap; gap: 10px 12px; margin-top: 26px;
}
.sitemap__stats span {
  display: inline-flex; align-items: baseline; gap: .45rem;
  padding: .5rem .95rem; border-radius: 999px;
  border: 1px solid rgba(232,215,180,.28);
  background: rgba(255,255,255,.04);
  font-size: .86rem; color: var(--ivory);
}
.sitemap__stats strong { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold); font-weight: 400; }

/* ── Seções numeradas ── */
.sitemap__section { margin-bottom: 52px; }
.sitemap__section-head {
  display: flex; align-items: baseline; gap: 16px;
  padding-bottom: 16px; margin-bottom: 26px;
  border-bottom: 1px solid rgba(11,29,58,.12);
}
.sitemap__num {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 400;
  color: var(--gold-2); letter-spacing: .05em;
}
.sitemap__section-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2rem); color: var(--navy); line-height: 1;
}
.sitemap__section-head em { color: var(--gold-2); }

/* ── Links inline (páginas principais + bairros) ── */
.sitemap__inline { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; }
.sitemap__inline a {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.05rem; border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(11,29,58,.10);
  color: var(--navy); text-decoration: none;
  font-size: .92rem; font-weight: 500;
  transition: transform .3s var(--ease), border-color .3s, box-shadow .3s, color .3s;
}
.sitemap__inline a::before {
  content: "→"; color: var(--gold-2); font-weight: 700;
  transform: translateX(-2px); transition: transform .3s var(--ease);
}
.sitemap__inline a:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 10px 24px -14px rgba(11,29,58,.4);
  color: var(--gold-2);
}
.sitemap__inline a:hover::before { transform: translateX(2px); }

/* ── Listas completas por tratamento (serviço em bairro) ── */
.sitemap__groups {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.sitemap__group {
  position: relative;
  padding: 22px 24px 18px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(11,29,58,.09);
}
.sitemap__group::before {
  content: ""; position: absolute; left: 0; top: 20px; bottom: 20px; width: 3px;
  border-radius: 3px; background: linear-gradient(var(--gold), var(--gold-2));
}
.sitemap__group-title {
  display: block; text-decoration: none; margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px dashed rgba(11,29,58,.16);
  font-family: var(--font-display); font-weight: 400; font-size: 1.35rem;
  line-height: 1.1; color: var(--navy);
}
.sitemap__group-title:hover { color: var(--gold-2); }
.sitemap__full { list-style: none; }
.sitemap__full li { margin: 0; }
.sitemap__full a {
  display: block; text-decoration: none; color: var(--ink);
  font-size: .95rem; padding: .32rem 0 .32rem 18px; position: relative;
  border-bottom: 1px solid rgba(11,29,58,.05);
  transition: color .25s, padding-left .25s var(--ease);
}
.sitemap__full li:last-child a { border-bottom: 0; }
.sitemap__full a::before {
  content: "→"; position: absolute; left: 0; top: .32rem;
  color: var(--gold-2); font-weight: 700; opacity: 0;
  transform: translateX(-4px); transition: opacity .25s, transform .25s var(--ease);
}
.sitemap__full a:hover { color: var(--gold-2); padding-left: 24px; }
.sitemap__full a:hover::before { opacity: 1; transform: translateX(0); }

/* ── Entrada suave ── */
.sitemap__section, .sitemap__hero { animation: sm-rise .7s var(--ease) both; }
.sitemap__hero { animation-delay: .02s; }
.sitemap__section:nth-of-type(1) { animation-delay: .08s; }
.sitemap__section:nth-of-type(2) { animation-delay: .14s; }
.sitemap__section:nth-of-type(3) { animation-delay: .2s; }
@keyframes sm-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .sitemap__section, .sitemap__hero { animation: none; }
}

@media (max-width: 640px) {
  .sitemap { padding: 96px 16px 48px; }
  .sitemap__hero { padding: 30px 22px 32px; }
  .sitemap__list { columns: 1; }
}
