/* ============================================================
   Dra. Marina S. Miranda | Harmonização Corporal
   Palette: creme, dourado, carvão aquecido, rosa antigo
   ============================================================ */

:root {
  --cream: #FAF6EF;
  --cream-deep: #F2EADD;
  --gold: #C9A24B;
  --gold-dark: #A9863A;
  --gold-soft: #E6D2A8;
  --charcoal: #2C2620;
  --charcoal-soft: #4A423A;
  --rose: #B76E79;
  --white: #FFFFFF;
  --border: rgba(44, 38, 32, 0.12);
  --shadow-sm: 0 6px 18px rgba(44, 38, 32, 0.08);
  --shadow-lg: 0 24px 60px rgba(44, 38, 32, 0.16);
  --radius: 18px;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', system-ui, -apple-system, sans-serif;
  --header-h: 78px;
  --preview-bar-h: 34px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: min(1140px, 92%);
  margin-inline: auto;
}

.section { padding: 96px 0; }

/* ---------- Tipografia ---------- */
h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; }

h1 {
  font-size: clamp(2.9rem, 6vw, 4.6rem);
  letter-spacing: 0.01em;
}

h1 span { color: var(--gold); font-style: italic; font-weight: 500; }

h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 18px;
}

h3 { font-size: 1.35rem; margin-bottom: 10px; }

p { font-weight: 300; color: var(--charcoal-soft); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}

.lead { font-size: 1.15rem; color: var(--charcoal); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-sub { margin-top: 6px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 10px 24px rgba(201, 162, 75, 0.4);
}

.btn-gold:hover { box-shadow: 0 14px 30px rgba(201, 162, 75, 0.5); }

.btn-ghost {
  border: 1px solid rgba(44, 38, 32, 0.25);
  color: var(--charcoal);
  background: transparent;
}

.btn-ghost:hover { border-color: var(--gold); color: var(--gold-dark); }

.btn-dark {
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: 0 10px 24px rgba(44, 38, 32, 0.25);
}

.btn-dark:hover { background: var(--charcoal-soft); }

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* ---------- Faixa fixa "Prévia" ---------- */
.preview-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--preview-bar-h);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  padding-left: 0.3em;
  box-shadow: 0 2px 10px rgba(44, 38, 32, 0.2);
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: var(--preview-bar-h);
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 18px rgba(44, 38, 32, 0.08);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
}

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--font-serif); font-size: 1.15rem; font-weight: 600; }
.brand-text small {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

.nav { display: flex; gap: 6px; }

.nav-link {
  position: relative;
  padding: 8px 12px;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal-soft);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover { color: var(--gold-dark); }
.nav-link:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  padding: 6px;
  /* alvo de toque >=44px mesmo com o icone pequeno (24px) */
  min-width: 44px;
  min-height: 44px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + var(--preview-bar-h) + 40px) 0 70px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 520px at 85% 12%, rgba(230, 210, 168, 0.5), transparent 60%),
    radial-gradient(800px 480px at 5% 85%, rgba(183, 110, 121, 0.14), transparent 60%),
    linear-gradient(160deg, #FBF7F0 0%, #F6EEE2 45%, #EFE3D0 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(44, 38, 32, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(780px, 92%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.hero h1 { margin-bottom: 16px; }

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-style: italic;
  color: var(--gold-dark);
  margin-bottom: 18px;
}

.hero-text { max-width: 46ch; margin-bottom: 34px; font-size: 1.05rem; margin-inline: auto; }

.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 34px; }

.hero-cred {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  font-weight: 500;
}

.hero-cred .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  flex-shrink: 0;
}

.avatar.small { width: 42px; height: 42px; font-size: 1.1rem; }

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  color: var(--charcoal-soft);
  opacity: 0.65;
  transition: opacity 0.2s ease;
}

.scroll-hint:hover { opacity: 1; }

/* ---------- Sobre ---------- */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}

.about-visual { position: relative; height: 520px; }

.frame {
  position: absolute;
  border-radius: var(--radius);
  border: 1px solid var(--gold-soft);
}

.frame-a {
  top: 0;
  left: 0;
  width: 68%;
  /* proporcao real da peca (388:473) via aspect-ratio, nunca um height fixo
     em % - assim a moldura nunca estica nem achata a imagem, so' muda de
     tamanho mantendo a forma. */
  aspect-ratio: 388 / 473;
  background:
    linear-gradient(150deg, rgba(230, 210, 168, 0.55), rgba(183, 110, 121, 0.28)),
    var(--cream-deep);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

/* Peca de marketing completa (retrato + nome em dourado + assinatura),
   proporcao 388:473. E' mais larga, em relacao a altura, que a moldura
   retrato original: com object-fit:cover cortaria o texto dourado ou o
   rosto nas bordas. Por isso usamos contain: a peca inteira sempre cabe,
   sobrando uma faixa fina do fundo gradiente da moldura ao redor (efeito
   passe-partout), sem cortar nada. */
.frame-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: inherit;
  display: block;
}

.frame-badge {
  /* Canto superior esquerdo: na peca completa o rosto fica colado na borda
     direita e o cartao escuro ocupa o canto inferior esquerdo, entao so' o
     canto superior-esquerdo sobra livre (fundo liso da peca, sem cortar
     rosto nem colidir com o frame-note). */
  position: absolute;
  top: -18px;
  left: -18px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.3;
  box-shadow: var(--shadow-sm);
  z-index: 2; /* selo sempre por cima da foto */
}

.frame-note {
  position: absolute;
  bottom: 6%;
  left: 0;
  width: 64%;
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 3; /* cartao da frase por cima de tudo */
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  line-height: 0.4;
  color: var(--gold);
}

.frame-note p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--cream);
  margin-top: 10px;
}

.frame-note em { color: var(--gold-soft); }

.about-content .lead { margin-bottom: 16px; }

.about-content > p:not(.lead):not(.eyebrow) { margin-bottom: 22px; }

.about-list { margin: 8px 0 30px; display: grid; gap: 12px; }

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 400;
  color: var(--charcoal);
}

.about-list svg { color: var(--gold-dark); flex-shrink: 0; }

/* ---------- Procedimentos ---------- */
.procedures { background: var(--cream); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-soft);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-deep);
  color: var(--gold-dark);
  margin-bottom: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.card:hover .card-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
}

.card h3 { font-size: 1.3rem; }

.cards-footnote {
  margin-top: 30px;
  text-align: center;
  font-size: 0.92rem;
  font-style: italic;
}

/* ---------- Diferenciais ---------- */
.diferenciais {
  background: linear-gradient(160deg, var(--charcoal) 0%, #3A322B 100%);
  color: var(--cream);
}

.diferenciais .section-head h2,
.diferenciais .section-sub { color: var(--cream); }
.diferenciais .eyebrow { color: var(--gold-soft); }

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.diff-item {
  padding: 10px 6px;
  border-top: 1px solid rgba(230, 210, 168, 0.25);
}

.diff-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 14px;
}

.diff-item h3 { color: var(--cream); font-size: 1.25rem; }

.diff-item p { color: rgba(250, 246, 239, 0.72); font-size: 0.95rem; }

/* ---------- Depoimentos ---------- */
.depoimentos { background: var(--white); }

.testimonial-slider { position: relative; overflow: hidden; max-width: 760px; margin: 0 auto; }

.testimonial-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.testimonial {
  flex: 0 0 100%;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px 40px;
  text-align: center;
  margin: 0 6px;
}

.stars { color: var(--gold); letter-spacing: 4px; margin-bottom: 18px; font-size: 1.05rem; }

.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--charcoal);
  margin-bottom: 26px;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.testimonial figcaption div { text-align: left; line-height: 1.3; }
.testimonial figcaption strong { display: block; font-size: 0.95rem; }
.testimonial figcaption small { color: var(--charcoal-soft); font-size: 0.8rem; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.dot-btn {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: var(--gold-soft);
  transition: background 0.25s ease, transform 0.25s ease;
}

.dot-btn.active { background: var(--gold); transform: scale(1.3); }

/* ---------- Contato ---------- */
.contato { background: var(--cream); }

.contact-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  overflow: hidden;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.contact-info { padding: 56px 52px; }

.contact-info > p:not(.eyebrow) { margin-bottom: 30px; max-width: 44ch; }

.contact-lines { display: grid; gap: 22px; }

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: color 0.2s ease;
}

a.contact-line:hover { color: var(--gold-dark); }

.contact-line svg { color: var(--gold-dark); margin-top: 4px; flex-shrink: 0; }

.contact-line small {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
  margin-bottom: 3px;
}

.contact-line strong { font-weight: 500; color: var(--charcoal); }

.contact-map { min-height: 460px; }
/* border:0 estava inline no <iframe>; a CSP nao tem 'unsafe-inline' em
   style-src, entao o atributo style="" e bloqueado — a regra tem que
   morar aqui. */
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: saturate(0.9) sepia(0.08); }

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 54px 0 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  padding-bottom: 34px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong { font-family: var(--font-serif); font-size: 1.15rem; display: block; }
.footer-brand small {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.footer p { color: rgba(250, 246, 239, 0.65); font-size: 0.9rem; }

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(230, 210, 168, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-soft);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--charcoal);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(230, 210, 168, 0.15);
  padding: 20px 0;
}

.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.8rem; }

/* ---------- Aviso de prévia ---------- */
.preview-notice {
  background: var(--charcoal);
  color: var(--cream);
  border-top: 2px solid var(--gold);
  padding: 26px 0;
}

.preview-notice p {
  color: rgba(250, 246, 239, 0.82);
  font-size: 0.95rem;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.preview-notice strong { color: var(--gold-soft); font-weight: 600; }

.preview-notice a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.preview-notice a:hover { color: var(--gold); }

/* ---------- Botão flutuante WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover { transform: scale(1.08) translateY(-2px); }

/* ---------- Animações de entrada ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsivo ---------- */
@media (max-width: 1020px) {
  .hero-inner { grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .hero-content { order: 2; }
  .hero-text { margin-inline: auto; }
  .hero-actions, .hero-cred { justify-content: center; }
  .hero { padding-top: calc(var(--header-h) + var(--preview-bar-h) + 20px); }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { height: 440px; max-width: 480px; margin-inline: auto; width: 100%; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { grid-template-columns: 1fr; }
  .contact-map { min-height: 320px; }
}

@media (max-width: 760px) {
  :root { --header-h: 60px; }

  html { font-size: 14px; }

  .section { padding: 40px 0; }

  h2 { font-size: clamp(1.6rem, 6vw, 2rem); margin-bottom: 12px; }
  .section-head { margin-bottom: 32px; }
  .section-sub { font-size: 0.88rem; }
  /* Piso de 15px para texto corrido: em px fixo (nao rem) para nao depender
     do html{font-size} reduzido logo abaixo (14px aqui, 13px em @480) - um
     valor em rem encolheria junto e ficaria ilegivel no celular. */
  .lead, .about-content > p:not(.eyebrow) { font-size: 15px; }

  .header-inner { gap: 10px; }
  .brand-text strong { font-size: 1rem; }
  .brand-text small { letter-spacing: 0.14em; }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(300px, 82vw);
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 40px 28px;
    box-shadow: -20px 0 60px rgba(44, 38, 32, 0.15);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 120;
  }

  .nav.open { transform: translateX(0); }
  /* alvo de toque >=44px (era 42px: 1rem*1.7 + 20 de padding, faltavam 2px) */
  .nav-link { font-size: 1rem; padding: 10px 8px; min-height: 44px; display: flex; align-items: center; }

  .nav-toggle { display: flex; z-index: 130; }

  .hero { min-height: auto; padding-top: calc(var(--header-h) + var(--preview-bar-h) + 12px); padding-bottom: 40px; }
  .hero h1 { font-size: clamp(2rem, 9vw, 2.6rem); margin-bottom: 10px; }
  .hero-tagline { font-size: 1.05rem; margin-bottom: 10px; }
  .hero-text { font-size: 15px; margin-bottom: 20px; }
  .hero-actions { flex-direction: column; width: min(300px, 100%); margin-inline: auto; margin-bottom: 18px; gap: 10px; }
  /* padding vertical 11->14px: o CTA principal do hero media 39px de altura
     real, abaixo do alvo de toque de 44px */
  .hero-actions .btn { width: 100%; padding: 14px 20px; font-size: 0.9rem; }
  .hero-cred { font-size: 0.64rem; gap: 7px; }

  .cards-grid { grid-template-columns: 1fr; gap: 14px; }
  .card { padding: 20px 18px; }
  .card-icon { width: 48px; height: 48px; margin-bottom: 14px; }
  .card h3 { font-size: 1.05rem; margin-bottom: 6px; }
  .card p { font-size: 15px; }
  .cards-footnote { font-size: 15px; margin-top: 20px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .diff-item h3 { font-size: 0.95rem; }
  .diff-item p { font-size: 15px; }
  .diff-num { font-size: 1.1rem; margin-bottom: 6px; }
  .contact-info { padding: 28px 18px; }
  .contact-info > p:not(.eyebrow) { font-size: 15px; }
  .contact-map { min-height: 240px; }
  .about-grid { gap: 32px; }
  /* mais alto que antes: com a foto na moldura, 300px achatava o retrato */
  .about-visual { height: 380px; }
  .frame-note { padding: 14px 16px; }
  .frame-note p { font-size: 1rem; margin-top: 6px; }
  .testimonial { padding: 24px 18px; }
  .testimonial blockquote { font-size: 16px; margin-bottom: 18px; }
  .footer-inner { flex-direction: column; text-align: center; padding-bottom: 20px; gap: 16px; }
  .footer-bottom .container { flex-direction: column; text-align: center; gap: 6px; }
  .footer p { font-size: 15px; }
  .footer-bottom p { font-size: 15px; }
}

@media (max-width: 480px) {
  html { font-size: 13px; }
  .section { padding: 32px 0; }
  .container { width: 94%; }

  .brand-text strong { font-size: 0.95rem; }
  .brand-text small { display: none; }
  .brand-mark { width: 34px; height: 34px; font-size: 1.15rem; }

  /* padding vertical 8->14px: media 34px de altura real, abaixo do alvo de
     toque de 44px (o botao vira so' o icone em @380, mesma correcao vale) */
  .header .btn-sm { padding: 14px 12px; font-size: 0.8rem; }
  .nav-toggle span { width: 20px; }

  .avatar { width: 36px; height: 36px; font-size: 1rem; }
  .spark { width: 22px; height: 22px; }
  .line { height: 8px; margin-bottom: 6px; }

  h1 { font-size: clamp(1.7rem, 9.5vw, 2.1rem); letter-spacing: 0; }
  .hero-tagline { font-size: 0.95rem; }
  .hero-text { font-size: 15px; }
  .hero-cred { font-size: 0.6rem; gap: 6px; }
  /* padding vertical 10->14px: mesmo motivo do .hero-actions .btn em @760 */
  .hero .btn { font-size: 0.85rem; padding: 14px 18px; }

  .about-visual { height: 340px; }
  /* Abaixo de 480px o container fica justo (~10-14px de margem lateral);
     o overhang de -18px do desktop estoura a viewport e corta o selo.
     -8px cabe com folga ate' telas de 320px. */
  .frame-badge { width: 60px; height: 60px; font-size: 0.6rem; top: -8px; left: -8px; }
  .frame-note { width: 74%; padding: 12px 14px; }
  .frame-note p { font-size: 0.9rem; }
  .frame-note .quote-mark { font-size: 1.7rem; }
  .about-list { gap: 10px; }
  .about-list li { font-size: 15px; }

  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 1.6rem; }
  .contact-info { padding: 24px 16px; }
  .contact-line strong { font-size: 0.85rem; }
  .contact-lines { gap: 16px; }
  .contact-line svg { width: 18px; height: 18px; }
  .whatsapp-float { right: 12px; bottom: 12px; width: 48px; height: 48px; }
  .scroll-hint { display: none; }
  .preview-notice { padding: 18px 0; }
  .preview-notice p { font-size: 0.78rem; }
}

@media (max-width: 380px) {
  .header .btn-label { display: none; }
  /* vira botao so'-icone; padding vertical 14px mantem o alvo de toque
     >=44px mesmo sem o texto "Agendar" */
  .header .btn-sm { padding: 14px 10px; gap: 0; }
}
