/* ==========================================================================
   Verônica Portugal | Psicopedagoga
   Design system: "Editorial acolhedor"
   Fundo claro, tinta vinho, acento dourado. Fraunces + Nunito Sans.
   ========================================================================== */

:root {
  /* Marca */
  --wine: #8C1D40;
  --wine-dark: #6E1633;
  --gold: #C8971C;
  --gold-deep: #A87A12;
  --gold-soft: #F5E9CE;
  --rose: #FBF2F4;
  --cream: #FDFBF9;
  --ink: #3A3134;
  --ink-soft: #6B6167;
  --white: #ffffff;
  --line: #ecdfe2;

  /* Tipografia */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", system-ui, -apple-system, sans-serif;

  /* Ritmo */
  --container: 1160px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-soft: 0 24px 60px -28px rgba(140, 29, 64, 0.32);
  --shadow-card: 0 18px 44px -30px rgba(58, 49, 52, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  /* textura de grão bem sutil */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  color: var(--wine);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
  font-optical-sizing: auto;
}

p { margin: 0 0 1.1rem; }

::selection { background: var(--gold-soft); color: var(--wine-dark); }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

section { position: relative; }

.section-pad { padding-block: clamp(4rem, 9vw, 7.5rem); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--gold);
  display: inline-block;
}

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

h2.title { font-size: clamp(1.9rem, 1.3rem + 2.6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem); }

.lead { font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem); color: var(--ink-soft); }

/* ---------- Botões ---------- */
.btn {
  --bg: var(--wine);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.98rem;
  line-height: 1;
  padding: 1rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--bg);
  color: #fff;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.3s ease;
  box-shadow: 0 12px 26px -14px rgba(140, 29, 64, 0.6);
  white-space: nowrap;
}
.btn svg { width: 20px; height: 20px; flex: none; }
.btn:hover { transform: translateY(-3px); background: var(--wine-dark); box-shadow: 0 18px 36px -16px rgba(140, 29, 64, 0.7); }
.btn:active { transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--wine);
  border-color: var(--line);
  box-shadow: none;
}
.btn-ghost:hover { border-color: var(--wine); background: var(--rose); box-shadow: none; }

/* Ícone de WhatsApp no header (só o símbolo) */
.btn-wa-icon {
  display: inline-grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  box-shadow: 0 12px 26px -14px rgba(140, 29, 64, 0.6);
  transition: transform 0.3s var(--ease), background 0.3s ease, box-shadow 0.3s var(--ease);
}
.btn-wa-icon svg { width: 24px; height: 24px; }
.btn-wa-icon:hover { transform: translateY(-2px) scale(1.05); background: var(--wine-dark); box-shadow: 0 16px 30px -14px rgba(140, 29, 64, 0.7); }

.btn-light { background: var(--white); color: var(--wine); box-shadow: var(--shadow-card); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); box-shadow:none; }
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(253, 251, 249, 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(58,49,52,.5);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.75rem;
}
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand img { height: 52px; width: auto; }
.brand-name { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  position: relative;
  padding-block: 0.3rem;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }

.nav-actions { display: flex; align-items: center; gap: 0.8rem; }

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 12px;
  width: 46px; height: 46px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--wine);
  transition: 0.3s var(--ease);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translateY(-1.5px) translateX(1px); }

/* ---------- Decor ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}

/* ---------- Animações contínuas ---------- */
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-9px) rotate(-1.2deg); }
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(18px, -14px) scale(1.06); }
  66% { transform: translate(-14px, 10px) scale(0.97); }
}
@keyframes badge-pop {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-media .badge { animation: floaty 4.5s ease-in-out infinite; }
  .hero-media .badge strong { display: block; animation: badge-pop 4.5s ease-in-out infinite; }
  .blob { animation: drift 16s ease-in-out infinite; }
  .hero .blob:nth-of-type(2) { animation-duration: 20s; animation-direction: reverse; }
}

/* ---------- Hero ---------- */
.hero { overflow: hidden; padding-top: clamp(2.5rem, 5vw, 4rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.15rem, 1.35rem + 3vw, 3.5rem);
  font-weight: 600;
}
.hero h1 em { font-style: italic; color: var(--gold-deep); font-weight: 500; }
.hero .lead { max-width: 33ch; margin-bottom: 2rem; }

.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2.2rem; }

.hero-media { position: relative; z-index: 1; }
.hero-media .photo-frame {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 7px solid var(--white);
  aspect-ratio: 3 / 4;
}
.hero-media .photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; filter: contrast(1.06) saturate(1.04); }
.hero-media .badge {
  position: absolute;
  bottom: 18px; left: -14px;
  background: var(--white);
  border-radius: 16px;
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-card);
  display: flex; align-items: center; gap: 0.7rem;
  z-index: 3;
}
.hero-media .badge strong { font-family: var(--font-display); color: var(--wine); font-size: 1.4rem; display:block; line-height:1; white-space: nowrap; }
.hero-media .badge span { font-size: 0.78rem; color: var(--ink-soft); font-weight: 700; }

/* faixa de confiança */
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 2rem;
  align-items: center;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}
.trust li { list-style: none; display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.trust svg { width: 18px; height: 18px; color: var(--gold-deep); flex:none; }
.trust ul { display: contents; margin: 0; padding: 0; }

/* ---------- Sinais (cards) ---------- */
.tint-rose { background: var(--rose); }
.tint-gold { background: var(--gold-soft); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.1rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -30px rgba(140,29,64,.5); }
.card .ic {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--rose);
  color: var(--wine);
  margin-bottom: 1rem;
}
.card .ic svg { width: 24px; height: 24px; }
.card h3 { color: var(--ink); font-family: var(--font-body); font-weight: 800; font-size: 1.08rem; margin-bottom: 0.35rem; }
.card p { margin: 0; color: var(--ink-soft); font-size: 0.97rem; }

.note-inline {
  margin-top: 2.2rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 60ch;
}
.note-inline strong { color: var(--wine); }

/* ---------- Meta reveal ---------- */
.reveal-band {
  background:
    radial-gradient(120% 140% at 100% 0%, var(--gold-soft) 0%, transparent 55%),
    var(--rose);
  border-block: 1px solid var(--line);
}
.reveal-wrap {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}
.reveal-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.55;
  display: block;
  margin-bottom: 0.4rem;
}
.reveal-band h2 { font-size: clamp(1.7rem, 1.2rem + 2.4vw, 2.7rem); }
.reveal-band .big { color: var(--wine); }
.reveal-band p { font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem); color: var(--ink); max-width: 46ch; margin-inline: auto; }

/* ---------- Transformações ---------- */
.list-check { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.list-check.cols {
  margin-top: clamp(2rem, 4vw, 3rem);
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem 3rem;
}
@media (max-width: 760px) { .list-check.cols { grid-template-columns: 1fr; } }
.list-check li { display: flex; gap: 0.9rem; align-items: flex-start; }
.list-check .tick {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gold-soft);
  color: var(--gold-deep);
  display: grid; place-items: center;
  margin-top: 2px;
}
.list-check .tick svg { width: 16px; height: 16px; }
.list-check strong { color: var(--wine); display: block; font-family: var(--font-body); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--white);
  position: relative;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Sobre / Método ---------- */
.steps { list-style: none; margin: 1.6rem 0 0; padding: 0; display: grid; gap: 0.4rem; counter-reset: step; }
.steps li {
  position: relative;
  padding: 1.05rem 1rem 1.05rem 3.4rem;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}
.steps li:hover { background: var(--rose); }
.steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0; top: 0.9rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--wine);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  display: grid; place-items: center;
  font-size: 1rem;
}
.steps h3 { font-family: var(--font-body); font-size: 1.05rem; color: var(--wine); margin-bottom: 0.15rem; }
.steps p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); }

.credentials { list-style: none; margin: 1.5rem 0 0; padding: 0; display: grid; gap: 0.7rem; }
.credentials li { display: flex; gap: 0.7rem; font-size: 0.98rem; }
.credentials li svg { width: 20px; height: 20px; color: var(--gold-deep); flex: none; margin-top: 3px; }

/* ---------- Depoimentos ---------- */
/* Carrossel de depoimentos */
.carousel { position: relative; padding-inline: 58px; }
.car-track {
  display: flex;
  gap: 1.3rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 0.5rem 0.3rem 1.5rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.car-track::-webkit-scrollbar { display: none; }
.quote {
  flex: 0 0 calc((100% - 2.6rem) / 3);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.quote blockquote { flex: 1; margin: 0; }
.car-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--wine);
  cursor: pointer;
  display: grid; place-items: center;
  box-shadow: var(--shadow-card);
  z-index: 3;
  transition: transform 0.25s var(--ease), background 0.25s ease, color 0.25s ease;
}
.car-btn:hover { background: var(--wine); color: #fff; transform: translateY(-50%) scale(1.06); }
.car-btn svg { width: 22px; height: 22px; }
.car-btn.prev { left: 2px; }
.car-btn.next { right: 2px; }
.car-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.car-dots button {
  width: 9px; height: 9px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.car-dots button.active { background: var(--gold); transform: scale(1.35); }
@media (max-width: 1040px) { .quote { flex-basis: calc((100% - 1.3rem) / 2); } }
@media (max-width: 660px) { .quote { flex-basis: 100%; } .carousel { padding-inline: 0; } .car-btn { display: none; } }

/* Vídeo do consultório */
.local-card .photo video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.quote .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 0.7rem; font-size: 0.95rem; }
.quote p { font-size: 1rem; color: var(--ink); margin-bottom: 1rem; }
.quote .who { display: flex; align-items: center; gap: 0.7rem; }
.quote .who .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--wine); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
  flex: none;
}
.quote .who strong { display: block; color: var(--wine); font-size: 0.98rem; }
.quote .who span { font-size: 0.82rem; color: var(--ink-soft); }

/* ---------- Qualificação ---------- */
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.fit {
  border-radius: var(--radius);
  padding: 2rem 1.9rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.fit.yes { border-top: 5px solid var(--gold); }
.fit.no { border-top: 5px solid var(--line); background: var(--cream); }
.fit h3 { display: flex; align-items: center; gap: 0.6rem; font-family: var(--font-body); font-weight: 800; }
.fit ul { list-style: none; margin: 1.1rem 0 0; padding: 0; display: grid; gap: 0.8rem; }
.fit li { display: flex; gap: 0.7rem; font-size: 0.97rem; color: var(--ink); }
.fit li svg { width: 19px; height: 19px; flex: none; margin-top: 3px; }
.fit.yes li svg { color: var(--gold-deep); }
.fit.no li svg { color: var(--ink-soft); }

/* ---------- CTA final (faixa vinho, único ponto de contraste) ---------- */
.cta-band {
  background:
    radial-gradient(120% 160% at 0% 0%, var(--wine) 0%, var(--wine-dark) 60%, #560f26 100%);
  color: #fff;
  border-radius: clamp(24px, 4vw, 40px);
  padding: clamp(2.4rem, 5vw, 4rem);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(50% 60% at 85% 20%, rgba(200,151,28,.35), transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 1.3rem + 2.4vw, 2.9rem); }
.cta-band p { color: rgba(255,255,255,.82); max-width: 48ch; margin-inline: auto 2rem; margin-inline: auto; margin-bottom: 2rem; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Consultório + mapa ---------- */
.local-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}
.local-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}
.local-card .photo { aspect-ratio: 4 / 3; overflow: hidden; }
.local-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.local-card .info { padding: 1.8rem; }
.local-card .info h3 { font-family: var(--font-body); font-weight: 800; color: var(--wine); }
.addr { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 1.3rem; }
.addr svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; margin-top: 2px; }
.addr address { font-style: normal; color: var(--ink); line-height: 1.55; }
.local-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-soft);
  min-height: 360px;
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.05); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 5vw, 3.5rem);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
}
.footer-brand img { height: 64px; width: auto; margin-bottom: 1rem; }
.footer-brand p { max-width: 32ch; color: var(--ink-soft); font-size: 0.95rem; }
.footer-col h4 { font-family: var(--font-body); font-weight: 800; color: var(--wine); font-size: 0.85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-col a { color: var(--ink); font-size: 0.96rem; display: inline-flex; align-items: center; gap: 0.5rem; }
.footer-col a:hover { color: var(--wine); }
.footer-col svg { width: 18px; height: 18px; color: var(--gold-deep); }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: space-between;
  font-size: 0.85rem; color: var(--ink-soft);
}
.footer-credit {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.footer-credit a {
  color: var(--wine);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
  transition: color 0.25s ease;
}
.footer-credit a:hover { color: var(--gold-deep); }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 70;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 14px 30px -8px rgba(37, 211, 102, 0.65);
  transition: transform 0.3s var(--ease);
  animation: wa-pulse 2.6s infinite;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; color: #fff; }
@keyframes wa-pulse {
  0% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.65), 0 0 0 0 rgba(37,211,102,.5); }
  70% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.65), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 14px 30px -8px rgba(37,211,102,.65), 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  transition: opacity 0.7s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}
.reveal.in-view { opacity: 1; transform: none; }

/* Cards de sinais: entrada em cascata mais viva */
.cards .card.reveal { transform: translateY(48px) scale(0.94); }
.cards .card.reveal.in-view { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .cards .card.reveal { opacity: 1; transform: none; }
}

/* ---------- Responsivo ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { max-width: 440px; margin-inline: auto; }
  .split, .local-grid { grid-template-columns: 1fr; }
  .split .media-frame { order: -1; }
  .fit-grid { grid-template-columns: 1fr; }
  .map-frame { min-height: 320px; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    padding: 0.5rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-card);
    transform: translateY(-120%);
    transition: transform 0.4s var(--ease);
    max-height: calc(100vh - 72px);
    overflow: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { border-bottom: 1px solid var(--line); }
  .nav-links a { display: block; padding: 1rem 0; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-desktop-cta { display: none; }
}

@media (min-width: 721px) {
  .nav-links.open { transform: none; }
}
