/* =========================================================
   Dra. Emanuele Pim — v2
   Editorial clínico. Mesma identidade (bordô + Cormorant +
   Manrope), sem scroll-jacking. Layout direto e legível.
   ========================================================= */

:root {
  --bordeaux:        #8B2346;
  --bordeaux-light:  #B84A6E;
  --bordeaux-hover:  #6A1733;
  --gold:            #C8A96E;

  --ivory:           #FBF6F7;
  --warm:            #F5EDEE;
  --blush:           #EFE0E3;
  --ink:             #1A1416;
  --ink-soft:        rgba(26, 20, 22, 0.72);
  --ink-muted:       rgba(26, 20, 22, 0.52);
  --line:            rgba(139, 35, 70, 0.16);
  --line-soft:       rgba(139, 35, 70, 0.09);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Manrope', 'Helvetica Neue', sans-serif;

  --pad:      clamp(1.25rem, 5vw, 5rem);
  --maxw:     1180px;
  --radius:   16px;
  --header-h: 74px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Textura de papel — profundidade sem peso de imagem */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  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.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; height: auto; display: block; }
figure { margin: 0; }  /* o padrao do navegador e 1em 40px */
a { color: inherit; }
::selection { background: var(--bordeaux-light); color: #fff; }

:focus-visible {
  outline: 2px solid var(--bordeaux);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  background: var(--bordeaux); color: #fff; padding: 0.75rem 1.25rem;
  font-size: 0.85rem; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ---------------- Tipografia ---------------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); line-height: 1.1; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.25; font-weight: 500; }
p  { margin: 0; }
.lede { font-size: clamp(1.02rem, 1.3vw, 1.15rem); line-height: 1.75; color: var(--ink-soft); }
em.accent { font-style: italic; color: var(--bordeaux); }

/* Rótulo editorial com filete */
.eyebrow {
  display: flex; align-items: center; gap: 0.85rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--bordeaux);
  margin-bottom: 1.4rem;
}
.eyebrow::after {
  content: ''; flex: 1; height: 1px; max-width: 84px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { display: none; }

/* ---------------- Botões ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-body); font-size: 0.86rem; font-weight: 600;
  letter-spacing: 0.04em; text-decoration: none; cursor: pointer;
  padding: 0.95rem 1.7rem; border-radius: 999px; border: 1px solid transparent;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--bordeaux); color: #fff; }
.btn-primary:hover { background: var(--bordeaux-hover); }
.btn-ghost { background: transparent; color: var(--bordeaux); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--bordeaux); background: rgba(139,35,70,0.04); }
.btn-wa { background: #1EBE5D; color: #fff; }
.btn-wa:hover { background: #17A650; }
.btn svg { width: 17px; height: 17px; flex: none; }

/* ---------------- Header ---------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(251, 246, 247, 0.88);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .wrap { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand img { height: 34px; width: auto; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--font-display); font-size: 1.08rem; color: var(--ink); }
.brand-role { font-size: 0.56rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); }

.nav { display: flex; align-items: center; gap: 1.9rem; }
.nav a:not(.btn) {
  font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
  text-decoration: none; color: var(--ink-soft); position: relative; padding: 0.3rem 0;
  transition: color 0.25s ease;
}
.nav a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--bordeaux); transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav a:not(.btn):hover { color: var(--bordeaux); }
.nav a:not(.btn):hover::after,
.nav a:not(.btn)[aria-current="page"]::after { width: 100%; }
.nav a:not(.btn)[aria-current="page"] { color: var(--bordeaux); }
/* CTA do menu: texto sempre branco sobre o bordô */
.nav .btn-primary { color: #fff; margin-left: 0.9rem; padding: 0.72rem 1.4rem; }
.nav .btn-primary:hover { color: #fff; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 0.5rem;
  width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; height: 1.5px; width: 22px; background: var(--ink); transition: transform 0.3s ease, opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.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(-6.5px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ivory); border-bottom: 1px solid var(--line);
    padding: 0.5rem var(--pad) 1.4rem;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav a { padding: 0.95rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.95rem; }
  .nav .btn { margin-top: 1rem; }
}

/* ---------------- Hero ---------------- */
.hero { padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); position: relative; }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.hero h1 { margin-bottom: 1.3rem; }
.hero h1 .line2 { display: block; font-style: italic; color: var(--bordeaux); }
.hero .lede { max-width: 46ch; margin-bottom: 1.9rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2rem; }

/* Resposta rápida: o que o visitante precisa saber em 5 segundos */
.facts { display: flex; flex-wrap: wrap; gap: 0 2.2rem; border-top: 1px solid var(--line); padding-top: 1.3rem; }
.fact { padding: 0.35rem 0; }
.fact dt { font-size: 0.6rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.2rem; }
.fact dd { margin: 0; font-size: 0.92rem; font-weight: 600; color: var(--ink); }

.hero-figure { position: relative; z-index: 0; margin: 0; }
.hero-figure img {
  width: 100%; border-radius: var(--radius);
  aspect-ratio: 4 / 5; max-height: min(66vh, 540px);
  object-fit: cover; object-position: 50% 20%;
}
.hero-figure::after {
  content: ''; position: absolute; inset: 12px -12px -12px 12px;
  border: 1px solid var(--line); border-radius: var(--radius); z-index: -1;
}
.hero-stamp {
  position: absolute; left: -14px; bottom: 22px;
  background: var(--ivory); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.5rem 1rem;
  font-size: 0.63rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--bordeaux);
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 2rem; }
  .hero-figure { order: 0; max-width: 100%; }
  .hero-figure img { aspect-ratio: 4 / 5; }
  .facts { gap: 0 1.5rem; }
}

/* ---------------- Faixa de convênios ---------------- */
.plans-strip { background: var(--warm); border-block: 1px solid var(--line-soft); padding: 1.5rem 0; }
.plans-strip .wrap { display: flex; align-items: center; flex-wrap: wrap; gap: 0.75rem 1.4rem; }
.plans-strip-label { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); }
.plan-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-family: var(--font-display); font-size: 1.18rem; color: var(--ink);
  background: var(--ivory); border: 1px solid var(--line);
  border-radius: 999px; padding: 0.4rem 1.1rem 0.45rem;
}
.plan-pill svg { width: 14px; height: 14px; color: var(--bordeaux); flex: none; }
.plans-strip a { margin-left: auto; font-size: 0.8rem; font-weight: 600; color: var(--bordeaux); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.plans-strip a:hover { border-color: var(--bordeaux); }
@media (max-width: 700px) { .plans-strip a { margin-left: 0; } }

/* ---------------- Seções ---------------- */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.section.tinted { background: var(--warm); }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head p.lede { margin-top: 0.9rem; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 0.9rem; }

/* Grade de serviços */
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .cards { grid-template-columns: minmax(0, 1fr); } }
.card { background: var(--ivory); padding: 2rem 1.8rem; transition: background-color 0.3s ease; }
.card:hover { background: #fff; }
.card-num { font-family: var(--font-display); font-size: 0.9rem; color: var(--bordeaux); letter-spacing: 0.1em; }
.card h3 { margin: 0.55rem 0 0.6rem; }
.card p { font-size: 0.9rem; line-height: 1.7; color: var(--ink-soft); }

/* Cards de convênio */
.plan-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.3rem; align-items: stretch; }
@media (max-width: 760px) { .plan-cards { grid-template-columns: minmax(0, 1fr); } }
.plan-card {
  background: var(--ivory); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.1rem 1.9rem;
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.85rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover { transform: translateY(-4px); border-color: var(--bordeaux-light); box-shadow: 0 14px 34px rgba(139,35,70,0.10); }
.badge {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--bordeaux); background: rgba(139,35,70,0.07);
  border: 1px solid var(--line); border-radius: 999px; padding: 0.32rem 0.75rem;
}
.plan-card h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); }
.plan-card p { font-size: 0.9rem; line-height: 1.7; color: var(--ink-soft); flex: 1 0 auto; }
.inline-link { font-size: 0.82rem; font-weight: 600; color: var(--bordeaux); text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: border-color 0.25s ease; }
.inline-link:hover { border-color: var(--bordeaux); }

/* Split editorial (texto + foto) */
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.split.reverse .split-media { order: -1; }
.split-media img { width: 100%; border-radius: var(--radius); aspect-ratio: 4 / 5; object-fit: cover; }
.split-media.wide img { aspect-ratio: 4 / 3; }
/* retrato da página "A Dentista": mesmo tratamento da foto do hero */
.split-media.portrait img { max-height: min(66vh, 540px); object-position: 50% 20%; }
@media (max-width: 800px) { .split { grid-template-columns: minmax(0, 1fr); } .split.reverse .split-media { order: 0; } }

/* Lista com marcador */
.ticks { list-style: none; margin: 1.4rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.ticks li { display: flex; gap: 0.7rem; font-size: 0.93rem; color: var(--ink-soft); line-height: 1.6; }
.ticks svg { width: 16px; height: 16px; color: var(--bordeaux); flex: none; margin-top: 0.25rem; }

/* Depoimentos */
/* --- Carrossel de depoimentos (um por vez, automático) --- */
.carousel { max-width: 720px; margin-inline: auto; }
.carousel-viewport { display: grid; }
.slide {
  grid-area: 1 / 1;                 /* empilhados: a altura acompanha o maior */
  margin: 0; text-align: center;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.16,1,0.3,1), visibility 0.55s;
}
.slide.is-active { opacity: 1; visibility: visible; transform: none; }
.stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 0.16em; }
.slide p {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem); line-height: 1.5;
  color: var(--ink); margin: 1.1rem auto 1.3rem; max-width: 30ch;
}
.slide cite { font-style: normal; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); }
.carousel-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.carousel-dots button {
  width: 7px; height: 7px; padding: 0; border: 0; border-radius: 50%;
  background: var(--line); cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.carousel-dots button:hover { background: var(--bordeaux-light); }
.carousel-dots button[aria-selected="true"] { background: var(--bordeaux); transform: scale(1.5); }

/* FAQ */
.faq { max-width: 760px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: 1.25rem 2.5rem 1.25rem 0; position: relative;
  font-family: var(--font-display); font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: 0.35rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; color: var(--bordeaux); transition: transform 0.3s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 1.4rem; font-size: 0.93rem; line-height: 1.75; color: var(--ink-soft); max-width: 64ch; }

/* CTA final */
.cta-band { background: var(--bordeaux); color: #fff; border-radius: var(--radius); padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 4vw, 3.5rem); text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 0.9rem; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 52ch; margin: 0 auto 1.9rem; font-size: 1rem; }
.cta-band .btn-primary { background: #fff; color: var(--bordeaux); }
.cta-band .btn-primary:hover { background: var(--blush); }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; justify-content: center; }

/* Mapa */
.map-frame { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 320px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(0.9); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--warm); border-top: 1px solid var(--line-soft); padding: clamp(2.5rem, 5vw, 4rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr); gap: 2.2rem; margin-bottom: 2.5rem; }
.footer-grid h4 { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); margin: 0 0 0.9rem; }
.footer-grid p, .footer-grid a { font-size: 0.88rem; color: var(--ink-soft); text-decoration: none; line-height: 1.85; }
.footer-grid a:hover { color: var(--bordeaux); }
.footer-links { display: flex; flex-direction: column; }
.footer-brand { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); margin-bottom: 0.5rem; }
.footer-bottom { border-top: 1px solid var(--line-soft); padding-top: 1.4rem; font-size: 0.74rem; color: var(--ink-muted); line-height: 1.7; }
@media (max-width: 700px) { .footer-grid { grid-template-columns: minmax(0, 1fr); gap: 1.8rem; } }

/* ---------------- WhatsApp flutuante ---------------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 56px; height: 56px; border-radius: 50%;
  background: #1EBE5D; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(30,190,93,0.36);
  transition: transform 0.3s ease;
}
.wa-float:hover { transform: scale(1.07); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------------- Cookies (LGPD) ---------------- */
.cookie-banner {
  position: fixed; left: 50%; transform: translateX(-50%); bottom: 16px; z-index: 200;
  width: min(620px, calc(100vw - 32px));
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(26,20,22,0.16);
  padding: 1.1rem 1.3rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { font-size: 0.8rem; line-height: 1.6; color: var(--ink-soft); flex: 1 1 260px; margin: 0; }
.cookie-banner .btn { padding: 0.6rem 1.1rem; font-size: 0.78rem; }

/* ---------------- Entrada suave (sem sequestrar o scroll) ---------------- */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, .plan-card:hover, .wa-float:hover { transform: none; }
}

/* ---------------- Formulário ---------------- */
.booking-form { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.3rem); }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 0.45rem; }
.field input, .field select {
  width: 100%; font-family: var(--font-body); font-size: 0.95rem; color: var(--ink);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 0.8rem 0.9rem; transition: border-color 0.25s ease;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--bordeaux); }
.field input::placeholder { color: var(--ink-muted); }
.form-note { font-size: 0.74rem; color: var(--ink-muted); margin-top: 0.9rem; text-align: center; }


/* ---------------- Ajustes de alinhamento ---------------- */
.section--tight { padding-top: 0; }
.page-head { padding-bottom: clamp(1.8rem, 3.5vw, 2.6rem); }
.page-head .section-head { margin-bottom: 0; }
.after-grid { margin-top: 1.7rem; }
.lede--stack { margin-top: 1rem; }
.btn-block { width: 100%; }

/* Botão "ver mais" dos serviços */
.cards-more { display: flex; justify-content: center; margin-top: 1.7rem; }
.card--extra { animation: cardIn 0.45s cubic-bezier(0.16,1,0.3,1) both; }
.card[hidden] { display: none; }
@keyframes cardIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .card--extra { animation: none; }
  .slide { transition: none; }
}

/* Grades internas com altura uniforme */
.split > * { min-width: 0; }
.section-head + .cards, .section-head + .plan-cards { margin-top: 0; }

/* =========================================================
   CELULAR — ajustes finos
   ========================================================= */
@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .section { padding: clamp(2.6rem, 9vw, 3.4rem) 0; }
  h1 { font-size: clamp(2.1rem, 9vw, 2.7rem); }
  h2 { font-size: clamp(1.7rem, 7vw, 2.2rem); }
  .lede { font-size: 0.98rem; }

  /* Hero: chamada primeiro, foto depois, botões cheios */
  .hero { padding-top: 2.2rem; }
  .hero .lede { margin-bottom: 1.5rem; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 0.6rem; }
  .hero-cta .btn { width: 100%; }
  .hero-figure { margin-top: 0.4rem; }
  .hero-figure img { aspect-ratio: 4 / 4.4; }
  .hero-figure::after { inset: 8px -8px -8px 8px; }
  .hero-stamp { left: 0; bottom: 14px; font-size: 0.58rem; padding: 0.42rem 0.85rem; }

  /* Fatos: duas colunas em vez de uma fila que quebra torto */
  .facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.9rem 1rem; }
  .fact:first-child { grid-column: 1 / -1; }

  /* Faixa de convênios empilhada */
  .plans-strip { padding: 1.2rem 0; }
  /* rótulo e link em linhas próprias; os dois convênios lado a lado */
  .plans-strip .wrap { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 0.55rem 0.5rem; }
  .plans-strip-label { flex: 1 0 100%; }
  .plans-strip a { flex: 1 0 100%; margin-left: 0; }
  .plans-strip .plan-pill {
    flex: 1 1 auto; justify-content: center; min-width: 0;
    font-size: 1rem; padding: 0.38rem 0.7rem 0.42rem; gap: 0.35rem;
  }

  /* Cards e formulário mais justos */
  .card { padding: 1.6rem 1.4rem; }
  .plan-card { padding: 1.7rem 1.5rem; }
  .cards-more .btn { width: 100%; }
  .booking-form { padding: 1.4rem 1.2rem; }

  /* Depoimentos: aspas menores para não estourar a tela */
  .slide p { font-size: 1.18rem; max-width: none; margin-bottom: 1.1rem; }
  .carousel-dots { margin-top: 1.5rem; }

  /* CTA final */
  .cta-band { padding: 2.2rem 1.3rem; }
  .cta-actions { flex-direction: column; }
  .cta-actions .btn { width: 100%; }

  .split-media img { aspect-ratio: 4 / 3; }
  .map-frame { height: 260px; }
  .faq summary { font-size: 1.05rem; padding-right: 2rem; }
}

/* Botão do menu: alvo de toque confortável e sempre visível */
.nav-toggle { -webkit-tap-highlight-color: transparent; }
@media (max-width: 900px) {
  .nav-toggle { margin-right: -0.5rem; }
  .nav { max-height: calc(100dvh - var(--header-h)); overflow-y: auto; }
}

/* Cookies não podem cobrir o botão do WhatsApp */
@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; align-items: stretch; bottom: 10px; padding: 1rem; gap: 0.6rem; }
  /* em coluna, o flex-basis vira ALTURA — sem isto o texto abria um vão enorme */
  .cookie-banner p { flex: 0 0 auto; }
  .cookie-banner .btn { width: 100%; }
}
body.has-cookie .wa-float { bottom: var(--wa-offset, 20px); }
.wa-float { transition: bottom 0.3s ease; }

@media (max-width: 360px) {
  .plans-strip .plan-pill { font-size: 0.92rem; padding: 0.35rem 0.55rem 0.4rem; }
  .plans-strip .plan-pill svg { width: 12px; height: 12px; }
}

/* ---------------- Localização ---------------- */
.location { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); gap: clamp(1.5rem, 4vw, 3rem); align-items: center; }
.location-addr { font-style: normal; display: flex; flex-direction: column; gap: 0.35rem; }
.location-addr strong { font-family: var(--font-display); font-weight: 500; font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.25; color: var(--ink); }
.location-addr span { font-size: 0.95rem; color: var(--ink-soft); }
.location-actions { margin-top: 1.3rem; display: flex; flex-direction: column; align-items: flex-start; gap: 0.8rem; }
.location-alt { font-size: 0.82rem; color: var(--ink-muted); }
.location-alt a { color: var(--bordeaux); text-decoration: none; border-bottom: 1px solid var(--line); }
.location-alt a:hover { border-color: var(--bordeaux); }
.footer-addr { margin-top: 0.9rem; }
@media (max-width: 800px) {
  .location { grid-template-columns: minmax(0, 1fr); }
  .location-actions .btn { width: 100%; text-align: center; }
  .location-actions { align-items: stretch; }
  .location-alt { text-align: center; }
}

/* ---------------- Confirmação do formulário ---------------- */
.form-ok { background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem, 4vw, 2.6rem); text-align: center; }
.form-ok[hidden] { display: none; }
.form-ok-icon { width: 52px; height: 52px; margin: 0 auto 1.1rem; border-radius: 50%; background: var(--bordeaux); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.form-ok h2 { margin-bottom: 0.7rem; }
.form-ok p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 1.5rem; }
