/* =========================================================
   Tatiana Lucasin · Nutricionista — folha de estilos
   Paleta: teal #054454 · creme #F4EEE3 · bordô #9C282D
   Tipografia: Fraunces (display) · Karla (texto) · Pinyon Script (logo)
   ========================================================= */

:root {
  --teal: #054454;
  --teal-mid: #0b6072;
  --teal-deep: #03323d;
  --teal-ink: #022a33;
  --cream: #f4eee3;
  --cream-2: #ece2d0;
  --paper: #fbf8f2;
  --bordo: #9c282d;
  --bordo-deep: #6e1f24;
  --sand: #e6c69c;
  --blush: #e2ac9f;
  --text: #3d4c51;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Karla", "Helvetica Neue", sans-serif;
  --font-script: "Pinyon Script", cursive;
  --radius: 20px;
  --shadow-teal: 0 18px 40px -18px rgba(5, 68, 84, 0.35);
}

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

html { scroll-behavior: smooth; }

html, body { overflow-x: clip; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 12px;
  z-index: 100;
  background: var(--teal);
  color: var(--cream);
  padding: 0.7em 1.3em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  transition: top 0.2s;
}

.skip-link:focus-visible { top: 12px; }

::selection { background: var(--teal); color: var(--cream); }

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

a { color: var(--teal); }

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

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

/* ---------- Tipografia ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--teal);
  line-height: 1.12;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2.5rem, 5.2vw, 4.3rem);
  font-weight: 340;
  line-height: 1.06;
}

h2 { font-size: clamp(1.95rem, 3.6vw, 2.9rem); font-weight: 360; }

h3 { font-size: 1.25rem; font-weight: 500; }

h1 em, h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--bordo);
}

.overline {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bordo);
  margin-bottom: 1.1rem;
}

.overline.light { color: var(--sand); }

.lead { font-size: 1.08rem; }

.text-link {
  display: inline-block;
  font-weight: 700;
  color: var(--bordo);
  text-decoration: none;
  border-bottom: 1px solid rgba(156, 40, 45, 0.35);
  padding-bottom: 2px;
  transition: border-color 0.25s, transform 0.25s;
}

.text-link:hover { border-color: var(--bordo); transform: translateX(3px); }

/* ---------- Botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05em 2em;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}

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

.btn .ic { width: 17px; height: 17px; fill: currentColor; flex-shrink: 0; }

.btn-teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  color: var(--cream);
  border: 1px solid rgba(244, 238, 227, 0.25);
  box-shadow: var(--shadow-teal);
}

.btn-teal:hover { box-shadow: 0 22px 44px -16px rgba(5, 68, 84, 0.5); }

.btn-cream {
  background: var(--cream);
  color: var(--teal);
  border: 1px solid rgba(5, 68, 84, 0.12);
  box-shadow: 0 18px 40px -18px rgba(2, 32, 40, 0.55);
}

.btn-cream:hover { background: #fff; }

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(244, 238, 227, 0.55);
}

.btn-outline-cream:hover { border-color: var(--cream); background: rgba(244, 238, 227, 0.08); }

.btn-small { padding: 0.8em 1.5em; font-size: 0.72rem; }

/* ---------- Header ---------- */

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(5, 68, 84, 0.08);
  transition: box-shadow 0.3s;
}

/* Fundo com blur num pseudo-elemento: backdrop-filter no próprio .topbar
   criaria um containing block e prenderia o .nav.open (position: fixed)
   dentro da barra em vez do viewport. */
.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(245, 240, 230, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.topbar.scrolled { box-shadow: 0 10px 30px -18px rgba(5, 68, 84, 0.35); }

.topbar-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.7rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  margin-right: auto;
}

.brand-branch { width: 34px; height: 34px; color: var(--bordo); flex-shrink: 0; }

.brand-branch.light { color: var(--sand); }

.brand-text { display: flex; flex-direction: column; line-height: 1; }

.brand-script {
  font-family: var(--font-script);
  font-size: 1.55rem;
  color: var(--teal);
  line-height: 1;
}

.brand-caps {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 0.3rem;
}

.nav { display: flex; gap: 1.6rem; }

.nav a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  position: relative;
  padding-block: 0.3rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--bordo);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(5, 68, 84, 0.2);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  align-items: center;
  position: relative;
  z-index: 41;
}

body.menu-open .menu-toggle { border-color: rgba(244, 238, 227, 0.5); }

body.menu-open .menu-toggle span { background: var(--cream); }

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1.8px;
  background: var(--teal);
  transition: transform 0.3s, opacity 0.3s;
}

body.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
body.menu-open .menu-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  background:
    radial-gradient(60% 50% at 85% 20%, rgba(244, 238, 227, 0.06) 0%, transparent 60%),
    radial-gradient(70% 60% at 10% 90%, rgba(2, 42, 51, 0.7) 0%, transparent 65%),
    var(--teal);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 2rem;
  padding-top: 7.5rem;
  position: relative;
  z-index: 1;
}

.hero-copy { padding-bottom: 5.5rem; }

.hero-copy h1 { color: var(--cream); max-width: 15em; }

.hero-copy h1 em { color: var(--blush); }

.hero-copy .lead {
  color: rgba(244, 238, 227, 0.82);
  max-width: 34em;
  margin-top: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.2rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
  color: rgba(244, 238, 227, 0.85);
  font-size: 0.9rem;
}

.hero-proof strong { color: var(--cream); }

.stars { color: var(--sand); letter-spacing: 0.15em; font-size: 0.85rem; }

.proof-item { display: inline-flex; align-items: center; gap: 0.5em; }

.proof-sep {
  width: 1px;
  height: 1.1em;
  background: rgba(244, 238, 227, 0.3);
}

.ic-pin { width: 15px; height: 15px; fill: var(--sand); }

.hero-visual {
  position: relative;
  align-self: end;
  height: min(88svh, 820px);
  min-height: 520px;
}

.hero-photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 102%;
  width: auto;
  max-width: none;
  filter: drop-shadow(0 30px 40px rgba(2, 32, 40, 0.5));
  animation: heroIn 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) both 0.15s;
  z-index: 2;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateX(-50%) translateY(40px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ---------- Fundo animado (hero e páginas internas) ---------- */

.hero-anim {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
}

.blob-1 {
  width: clamp(320px, 40vw, 620px);
  height: clamp(320px, 40vw, 620px);
  right: -8%;
  top: -14%;
  background: radial-gradient(circle at 40% 40%, rgba(17, 116, 137, 0.75), transparent 65%);
  animation: blobDrift1 16s ease-in-out infinite alternate;
}

.blob-2 {
  width: clamp(260px, 32vw, 480px);
  height: clamp(260px, 32vw, 480px);
  right: 26%;
  bottom: -18%;
  background: radial-gradient(circle at 55% 45%, rgba(10, 96, 114, 0.8), transparent 65%);
  animation: blobDrift2 21s ease-in-out infinite alternate;
}

.blob-3 {
  width: clamp(220px, 26vw, 400px);
  height: clamp(220px, 26vw, 400px);
  left: -6%;
  top: 32%;
  background: radial-gradient(circle at 50% 50%, rgba(226, 172, 159, 0.4), transparent 65%);
  animation: blobDrift3 26s ease-in-out infinite alternate;
}

@keyframes blobDrift1 {
  to { translate: -70px 60px; scale: 1.18; }
}

@keyframes blobDrift2 {
  to { translate: 60px -50px; scale: 0.92; }
}

@keyframes blobDrift3 {
  to { translate: 50px 40px; scale: 1.12; }
}

.floaty {
  position: absolute;
  color: rgba(244, 238, 227, 0.13);
  animation: floatDrift 12s ease-in-out infinite alternate;
}

.floaty-1 { width: clamp(200px, 24vw, 380px); height: auto; right: 3%; top: 5%; rotate: 14deg; }

.floaty-2 {
  width: clamp(90px, 10vw, 150px);
  height: auto;
  left: 5%;
  bottom: 24%;
  rotate: -38deg;
  animation-duration: 15s;
  animation-delay: 1.4s;
}

.floaty-3 {
  width: clamp(70px, 8vw, 120px);
  height: auto;
  right: 32%;
  bottom: 8%;
  rotate: 108deg;
  animation-duration: 18s;
  animation-delay: 0.6s;
}

@keyframes floatDrift {
  from { translate: 0 14px; }
  to { translate: 0 -22px; }
}

.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--cream);
  background: rgba(244, 238, 227, 0.1);
  border: 1px solid rgba(244, 238, 227, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 0.6em 1.1em;
  animation: chipFloat 5s ease-in-out infinite;
}

.hero-chip .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ed3a2;
  box-shadow: 0 0 0 3px rgba(126, 211, 162, 0.25);
}

.chip-1 { top: 22%; left: -4%; }

.chip-2 { bottom: 26%; right: -2%; animation-delay: 2.5s; }

@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---------- Marquee ---------- */

.marquee {
  background: var(--bordo);
  color: var(--cream);
  overflow: hidden;
  padding-block: 0.85rem;
  border-block: 1px solid rgba(244, 238, 227, 0.15);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  white-space: nowrap;
}

.marquee-track i { font-style: normal; font-size: 0.7rem; opacity: 0.7; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Seções ---------- */

.section { padding-block: 6.5rem; }

.section-alt { background: var(--cream-2); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.6rem;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1.3rem;
  color: var(--bordo);
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: 70px;
  background: rgba(156, 40, 45, 0.35);
}

.divider svg { width: 26px; height: 26px; transform: rotate(-8deg); }

/* ---------- Sobre ---------- */

.sobre-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.sobre-visual { position: relative; }

.arch-frame {
  position: relative;
  border-radius: 999px 999px var(--radius) var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5.1;
  box-shadow: var(--shadow-teal);
}

.arch-frame img { width: 100%; height: 100%; object-fit: cover; }

.sobre-visual::before {
  content: "";
  position: absolute;
  inset: -14px 14px 14px -14px;
  border: 1.5px solid rgba(156, 40, 45, 0.4);
  border-radius: 999px 999px var(--radius) var(--radius);
  z-index: -1;
}

.sobre-branch {
  position: absolute;
  bottom: -20px;
  right: -24px;
  width: 74px;
  height: 74px;
  color: var(--bordo);
  transform: rotate(95deg);
}

.sobre-copy h2 { margin-bottom: 0; }

.sobre-copy h2 em {
  font-family: var(--font-script);
  font-style: normal;
  font-weight: 400;
  font-size: 1.28em;
  line-height: 0;
}

.sobre-copy .divider { justify-content: flex-start; margin-bottom: 1.6rem; }

.sobre-copy .divider::after { display: none; }

.sobre-copy p + p { margin-top: 1rem; }

.sobre-points {
  list-style: none;
  margin-block: 1.6rem;
  display: grid;
  gap: 0.65rem;
}

.sobre-points li {
  position: relative;
  padding-left: 1.5em;
}

.sobre-points li::before {
  content: "✦";
  position: absolute;
  left: 0.2em;
  top: 0.15em;
  color: var(--bordo);
  font-size: 0.7rem;
}

.sobre-points strong { color: var(--teal); }

/* ---------- Cards ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.3rem;
}

.card {
  background: var(--paper);
  border: 1px solid rgba(156, 40, 45, 0.14);
  border-radius: var(--radius);
  padding: 2.1rem 1.7rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-teal);
}

.card-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1.5px solid rgba(5, 68, 84, 0.25);
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  background: rgba(5, 68, 84, 0.04);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--teal);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card { position: relative; display: flex; flex-direction: column; }

.card h3 { margin-bottom: 0.6rem; }

.card p { font-size: 0.93rem; }

.card-mais {
  margin-top: auto;
  padding-top: 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordo);
  text-decoration: none;
}

.card-mais span {
  display: inline-block;
  transition: transform 0.25s ease;
}

.card:hover .card-mais span { transform: translateX(4px); }

/* Torna o card inteiro clicável */
.card-mais::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
}

/* ---------- Cozinha ---------- */

.cozinha {
  background:
    radial-gradient(50% 45% at 90% 8%, rgba(244, 238, 227, 0.06) 0%, transparent 60%),
    radial-gradient(55% 50% at 5% 95%, rgba(2, 42, 51, 0.6) 0%, transparent 60%),
    var(--teal);
}

.cozinha-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.cozinha h2 { color: var(--cream); margin-bottom: 1.1rem; }

.cozinha h2 em { color: var(--blush); }

.cozinha-copy p { color: rgba(244, 238, 227, 0.85); }

.cozinha-list {
  list-style: none;
  margin-block: 1.5rem 2rem;
  display: grid;
  gap: 0.65rem;
  color: rgba(244, 238, 227, 0.9);
}

.cozinha-list li {
  position: relative;
  padding-left: 1.5em;
}

.cozinha-list li::before {
  content: "✦";
  position: absolute;
  left: 0.2em;
  top: 0.15em;
  color: var(--sand);
  font-size: 0.7rem;
}

.cozinha-fotos {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: min(72vh, 620px);
}

.cf {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(244, 238, 227, 0.2);
}

.cf img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.94) sepia(0.04);
}

.cf:hover img { transform: scale(1.04); }

.cf-1 { grid-row: 1 / 3; }

/* ---------- Como funciona ---------- */

.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  counter-reset: step;
  max-width: 1000px;
  margin-inline: auto;
}

.steps li { position: relative; }

.step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--bordo);
  opacity: 0.85;
  margin-bottom: 0.9rem;
}

.steps h3 { margin-bottom: 0.5rem; }

.steps p { font-size: 0.95rem; }

.steps-cta { text-align: center; margin-top: 3.2rem; }

/* ---------- Galeria consultório ---------- */

.avaliacoes-inner {
  position: relative;
  text-align: center;
  max-width: 620px;
}

.galeria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  height: min(60vh, 480px);
}

.g {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 34px -20px rgba(5, 68, 84, 0.4);
}

.g img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  filter: saturate(0.92) sepia(0.05) brightness(0.99);
}

.g:hover img { transform: scale(1.04); }

/* ---------- Avaliações ---------- */

.avaliacoes {
  position: relative;
  background: var(--bordo-deep);
  overflow: hidden;
  padding-block: 5rem;
}

.google-stars {
  color: var(--sand);
  font-size: 1.3rem;
  letter-spacing: 0.3em;
  margin-bottom: 1rem;
}

.avaliacoes h2 { color: var(--cream); }

.avaliacoes h2 em { color: var(--sand); }

.avaliacoes p {
  color: rgba(244, 238, 227, 0.85);
  margin-block: 1rem 2rem;
}

/* ---------- FAQ ---------- */

.faq-container { max-width: 780px; }

.faq-list details {
  border-bottom: 1px solid rgba(5, 68, 84, 0.15);
}

.faq-list summary {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--teal);
  padding: 1.3rem 2.6rem 1.3rem 0.2rem;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color 0.25s;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary:hover { color: var(--bordo); }

.plus {
  position: absolute;
  right: 0.4rem;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
}

.plus::before, .plus::after {
  content: "";
  position: absolute;
  background: var(--bordo);
  transition: transform 0.3s ease;
}

.plus::before { inset: 50% 0 auto 0; height: 1.8px; margin-top: -0.9px; }
.plus::after { inset: 0 50% 0 auto; width: 1.8px; margin-right: -0.9px; }

details[open] .plus::after { transform: rotate(90deg); }

.faq-list details p {
  padding: 0 2.6rem 1.4rem 0.2rem;
  font-size: 0.96rem;
}

/* ---------- Contato ---------- */

.contato {
  background:
    radial-gradient(55% 50% at 92% 10%, rgba(244, 238, 227, 0.06) 0%, transparent 60%),
    radial-gradient(60% 55% at 8% 100%, rgba(2, 42, 51, 0.65) 0%, transparent 60%),
    var(--teal);
}

.contato-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}

.contato h2 { color: var(--cream); }

.contato h2 em { color: var(--blush); }

.contato-sub {
  color: rgba(244, 238, 227, 0.85);
  margin-block: 1.2rem 2rem;
  max-width: 30em;
}

.contato-info {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2rem;
  margin-top: 2.6rem;
}

.contato-info p {
  font-size: 0.92rem;
  color: rgba(244, 238, 227, 0.85);
  line-height: 1.6;
}

.contato-info strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.5rem;
}

.contato-info a { color: var(--cream); }

.contato-mapa {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(244, 238, 227, 0.25);
  box-shadow: 0 24px 50px -24px rgba(2, 32, 40, 0.7);
}

.contato-mapa iframe {
  display: block;
  width: 100%;
  height: 440px;
  border: 0;
  filter: saturate(0.82);
}

/* ---------- Páginas de especialidade ---------- */

.page-hero {
  position: relative;
  background:
    radial-gradient(70% 60% at 10% 90%, rgba(2, 42, 51, 0.7) 0%, transparent 65%),
    var(--teal);
  padding: 9.5rem 0 5.5rem;
  overflow: hidden;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--cream);
  font-size: clamp(2.2rem, 4.2vw, 3.5rem);
}

.page-hero h1 em { color: var(--blush); }

.page-hero .lead {
  color: rgba(244, 238, 227, 0.85);
  margin-top: 1.3rem;
  max-width: 32em;
}

.page-hero .btn { margin-top: 2.2rem; }

.crumb {
  color: var(--sand);
  text-decoration: none;
}

.crumb:hover { text-decoration: underline; }

.page-hero-foto {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(244, 238, 227, 0.25);
  box-shadow: 0 24px 50px -24px rgba(2, 32, 40, 0.7);
  aspect-ratio: 4 / 4.5;
}

.page-hero-foto img { width: 100%; height: 100%; object-fit: cover; }

.check-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 3rem;
  max-width: 880px;
  margin-inline: auto;
}

.check-grid li {
  position: relative;
  padding-left: 1.5em;
}

.check-grid li::before {
  content: "✦";
  position: absolute;
  left: 0.2em;
  top: 0.15em;
  color: var(--bordo);
  font-size: 0.7rem;
}

.check-grid strong { color: var(--teal); }

.cta-band {
  position: relative;
  background:
    radial-gradient(60% 55% at 88% 12%, rgba(244, 238, 227, 0.07) 0%, transparent 60%),
    linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
  overflow: hidden;
}

.cta-band h2 { color: var(--cream); }

.cta-band h2 em { color: var(--blush); }

.cta-band p {
  color: rgba(244, 238, 227, 0.85);
  margin-block: 1rem 2rem;
  max-width: 34em;
  margin-inline: auto;
}

.cta-band .cta-branch {
  position: absolute;
  width: 120px;
  height: 120px;
  right: -20px;
  bottom: -26px;
  color: rgba(244, 238, 227, 0.14);
  transform: rotate(90deg);
}

/* ---------- Footer ---------- */

.footer {
  background: var(--teal-ink);
  padding-block: 4rem 2.5rem;
  text-align: center;
}

.footer-hairline {
  width: 80px;
  height: 1px;
  background: rgba(230, 198, 156, 0.5);
  margin: 0 auto 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.footer-brand .brand-branch { width: 40px; height: 40px; }

.footer-brand .brand-script { font-size: 2.2rem; color: var(--cream); }

.footer-brand .brand-caps { color: rgba(244, 238, 227, 0.6); font-size: 0.6rem; }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(244, 238, 227, 0.7);
  margin-top: 1.2rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 2rem;
}

.footer-nav a {
  color: rgba(244, 238, 227, 0.75);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s;
}

.footer-nav a:hover { color: var(--cream); }

.footer-note {
  margin-top: 2.4rem;
  font-size: 0.78rem;
  color: rgba(244, 238, 227, 0.65);
}

/* ---------- WhatsApp flutuante ---------- */

.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 60;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #17944e;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(23, 148, 78, 0.6);
  transition: transform 0.25s ease;
}

.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(23, 148, 78, 0.5);
  animation: waPulse 2.4s ease-out infinite;
}

@keyframes waPulse {
  from { transform: scale(1); opacity: 1; }
  to { transform: scale(1.55); opacity: 0; }
}

.wa-float:hover { transform: translateY(-3px) scale(1.05); }

.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- Reveal on scroll ----------
   Estados iniciais só com JS ativo (classe .js no <html>):
   sem JS, todo o conteúdo permanece visível. */

.js .reveal, .js .reveal-visual {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal-visual { transform: translateY(24px) scale(0.98); }

.reveal.visible, .reveal-visual.visible {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ---------- Responsivo ---------- */

@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .topbar-cta { display: none; }
  .menu-toggle { display: flex; }

  .nav.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--teal);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 40;
  }

  .nav.open a {
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
  }
}

@media (max-width: 860px) {
  .section { padding-block: 4.5rem; }

  .hero { min-height: auto; }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 6.5rem;
    gap: 0;
  }

  .hero-copy { padding-bottom: 3rem; }

  .hero-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 4.4;
    max-width: 480px;
    margin-inline: auto;
    width: 100%;
  }

  .hero-chip { display: none; }

  .hero-photo {
    -webkit-mask-image: linear-gradient(to bottom, #000 84%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 84%, transparent 100%);
  }

  .hero-proof { row-gap: 0.4rem; }

  .proof-sep { display: none; }

  .sobre-branch { right: -6px; }

  .sobre-grid, .cozinha-grid, .contato-grid, .page-hero-grid { grid-template-columns: 1fr; }

  .page-hero { padding-top: 7.5rem; }

  .page-hero-foto { max-width: 480px; margin-inline: auto; width: 100%; aspect-ratio: 4 / 3.6; }

  .check-grid { grid-template-columns: 1fr; }

  .floaty-1 { right: -6%; }

  .sobre-visual { max-width: 380px; margin-inline: auto; }

  .cozinha-fotos { height: auto; aspect-ratio: 1 / 1.05; }

  .steps { grid-template-columns: 1fr; max-width: 480px; }

  .galeria {
    grid-template-columns: 1fr 1fr;
    height: auto;
  }

  .g-1 { grid-column: 1 / 3; aspect-ratio: 16 / 9; }
  .g-2, .g-3 { aspect-ratio: 4 / 3.4; }

  .contato-info { grid-template-columns: 1fr 1fr; gap: 1.4rem; }

  .contato-mapa iframe { height: 340px; }
}

@media (max-width: 520px) {
  .cards { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .contato-info { grid-template-columns: 1fr; }
  .brand-script { font-size: 1.35rem; }
  .footer-nav { gap: 0.8rem 1.4rem; }
  .wa-float { width: 50px; height: 50px; right: 1rem; bottom: 1rem; }
  .wa-float svg { width: 25px; height: 25px; }
}

/* ---------- Acessibilidade ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal, .reveal-visual {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-photo, .hero-chip, .marquee-track, .wa-float::before,
  .blob, .floaty {
    animation: none;
  }

  .btn, .card, .cf img, .g img { transition: none; }
}
