/* ============================================================
   Studio Aura — template salao-beleza (A9 Sites)
   CSS puro: grid assimetrico, blobs organicos, serif italica.
   Mobile-first. Cores via --brand / --dark (inline no <head>).
   ============================================================ */

:root {
  --brand: #D8A7A0;
  --dark: #3A3234;
  --nude: #F7EFEA;
  --creme: #FDFAF8;
  --branco: #FFFFFF;
  --rosa-05: color-mix(in srgb, var(--brand) 8%, var(--branco));
  --rosa-10: color-mix(in srgb, var(--brand) 14%, var(--branco));
  --rosa-20: color-mix(in srgb, var(--brand) 24%, var(--branco));
  --rosa-40: color-mix(in srgb, var(--brand) 45%, var(--branco));
  --rosa-fundo: color-mix(in srgb, var(--brand) 16%, var(--nude));
  --acento: color-mix(in srgb, var(--brand) 62%, var(--dark));
  --tinta-suave: color-mix(in srgb, var(--dark) 64%, var(--nude));
  --borda: color-mix(in srgb, var(--brand) 30%, var(--nude));
  --sombra: 0 18px 45px -18px color-mix(in srgb, var(--brand) 45%, transparent);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;
  --raio: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--dark);
  background: var(--nude);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, .brand-word {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: .005em;
}

h1 { font-size: clamp(2.4rem, 6.2vw, 4.1rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.7rem); }

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--acento);
}

.wrap {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--dark);
  color: var(--nude);
  padding: .6rem 1.2rem;
  z-index: 200;
}
.skip:focus { left: 0; }

/* ---------- botoes ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .95rem;
  letter-spacing: .04em;
  text-decoration: none;
  border-radius: 999px;
  padding: .68rem 1.5rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { flex: none; }

.btn-dark {
  background: var(--dark);
  color: var(--nude);
}
.btn-dark:hover { box-shadow: 0 14px 30px -12px color-mix(in srgb, var(--dark) 55%, transparent); }

.btn-linha {
  border-color: color-mix(in srgb, var(--dark) 35%, transparent);
  color: var(--dark);
  background: transparent;
}
.btn-linha:hover { background: var(--branco); border-color: var(--dark); }

.btn-claro {
  background: var(--nude);
  color: var(--dark);
}
.btn-claro:hover { background: var(--branco); }

.btn-linha-clara {
  border-color: color-mix(in srgb, var(--nude) 45%, transparent);
  color: var(--nude);
  background: transparent;
}
.btn-linha-clara:hover { border-color: var(--nude); background: color-mix(in srgb, var(--nude) 12%, transparent); }

.btn-lg { padding: .85rem 1.9rem; font-size: 1rem; }
.btn-cheio { width: 100%; justify-content: center; }

/* ---------- kicker ---------- */
.kicker {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--acento);
  margin-bottom: 1rem;
}
.kicker-line {
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--acento);
  opacity: .6;
}
.kicker-central { justify-content: center; }

/* ---------- topo ---------- */
.topo {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--nude) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.topo.rolou {
  border-bottom-color: var(--borda);
  box-shadow: 0 10px 30px -22px color-mix(in srgb, var(--dark) 40%, transparent);
}
.topo-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  color: var(--dark);
}
.brand img { max-height: 46px; width: auto; }
.brand-spark { color: var(--acento); display: inline-flex; }
.brand-word {
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: .02em;
  white-space: nowrap;
}
.brand-word em {
  font-style: italic;
  font-weight: 400;
  color: var(--acento);
}

.topo-acoes { display: flex; align-items: center; gap: .8rem; }
.topo-cta { display: none; }

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--borda);
  border-radius: 50%;
  background: var(--branco);
  color: var(--dark);
  cursor: pointer;
}
.nav-toggle .nt-icon { grid-area: 1 / 1; display: inline-flex; transition: opacity .2s ease, transform .25s ease; }
.nav-toggle .nt-x { opacity: 0; transform: rotate(-45deg) scale(.6); }
body.menu-aberto .nav-toggle .nt-menu { opacity: 0; transform: rotate(45deg) scale(.6); }
body.menu-aberto .nav-toggle .nt-x { opacity: 1; transform: none; }

/* nav: painel mobile */
.nav {
  position: fixed;
  inset: 74px 0 auto 0;
  background: var(--creme);
  border-bottom: 1px solid var(--borda);
  box-shadow: 0 30px 50px -30px color-mix(in srgb, var(--dark) 45%, transparent);
  padding: 1.4rem 1.25rem 1.8rem;
  display: none;
  z-index: 99;
}
body.menu-aberto .nav { display: block; }

.nav-links { display: flex; flex-direction: column; }
.nav-links a {
  text-decoration: none;
  font-family: var(--serif);
  font-size: 1.35rem;
  padding: .55rem 0;
  border-bottom: 1px solid var(--rosa-10);
  transition: color .2s ease, padding-left .25s ease;
}
.nav-links a:hover, .nav-links a.on { color: var(--acento); padding-left: .4rem; }
.nav-links a.on { font-style: italic; }

.nav-extra {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  align-items: flex-start;
}
.nav-hours { font-size: .85rem; color: var(--tinta-suave); }

@media (min-width: 880px) {
  .topo-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav {
    position: static;
    display: block;
    background: none;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .nav-links { flex-direction: row; gap: 1.9rem; }
  .nav-links a {
    font-family: var(--sans);
    font-size: .95rem;
    font-weight: 400;
    letter-spacing: .03em;
    padding: .3rem 0;
    border-bottom: 0;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0; right: 100%;
    bottom: 0;
    height: 1px;
    background: var(--acento);
    transition: right .3s ease;
  }
  .nav-links a:hover::after, .nav-links a.on::after { right: 0; }
  .nav-links a:hover, .nav-links a.on { padding-left: 0; font-style: normal; }
  .nav-extra { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 3rem 0 3.5rem;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--brand) 38%, transparent) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero-copy { max-width: 34rem; }
.hero-sub {
  margin-top: 1.2rem;
  font-size: 1.08rem;
  color: var(--tinta-suave);
  max-width: 30rem;
}
.hero-acoes {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}
.hero-nota {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  color: var(--tinta-suave);
}
.estrelas { display: inline-flex; gap: .1rem; color: var(--acento); }
.estrelas svg { fill: currentColor; stroke: currentColor; }

/* visual do hero: foto em blob + mini circulo */
.hero-visual {
  position: relative;
  justify-self: center;
  width: min(460px, 88vw);
  aspect-ratio: 10 / 11;
}
.blob-fundo {
  position: absolute;
  inset: 6% -4% -2% 10%;
  background: linear-gradient(135deg, var(--rosa-40), var(--rosa-10));
  border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%;
  animation: respira 12s ease-in-out infinite;
}
.blob-linha {
  position: absolute;
  inset: -3% 6% 8% -5%;
  border: 1px dashed color-mix(in srgb, var(--acento) 55%, transparent);
  border-radius: 45% 55% 48% 52% / 55% 45% 55% 45%;
  animation: respira 12s ease-in-out infinite reverse;
}
.blob-foto {
  position: absolute;
  inset: 2% 4% 4% 4%;
  border-radius: 55% 45% 52% 48% / 50% 52% 48% 50%;
  overflow: hidden;
  box-shadow: var(--sombra);
}
.blob-foto img, .hero-mini img { width: 100%; height: 100%; object-fit: cover; }
.hero-mini {
  position: absolute;
  left: -4%;
  bottom: -2%;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--nude);
  box-shadow: var(--sombra);
}
.hero-chip {
  position: absolute;
  top: 7%;
  right: -2%;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 999px;
  padding: .45rem 1rem;
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  box-shadow: var(--sombra);
  color: var(--dark);
}
.hero-chip:empty { display: none; }
.spark { position: absolute; color: var(--acento); opacity: .8; }
.spark-a { top: -2%; left: 8%; animation: cintila 3.5s ease-in-out infinite; }
.spark-b { bottom: 12%; right: 2%; animation: cintila 3.5s ease-in-out 1.2s infinite; }

@keyframes respira {
  0%, 100% { border-radius: 58% 42% 55% 45% / 48% 55% 45% 52%; }
  50% { border-radius: 48% 52% 45% 55% / 55% 45% 55% 45%; }
}
@keyframes cintila {
  0%, 100% { opacity: .35; transform: scale(.85) rotate(0deg); }
  50% { opacity: .9; transform: scale(1.1) rotate(18deg); }
}

@media (min-width: 880px) {
  .hero { padding: 4.5rem 0 5rem; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; gap: 2rem; }
  .hero-visual { justify-self: end; }
}

/* ---------- faixa (ticker) ---------- */
.faixa {
  background: var(--dark);
  color: var(--nude);
  overflow: hidden;
  padding: .85rem 0;
}
.faixa-trilho {
  display: flex;
  width: max-content;
  animation: desfila 28s linear infinite;
}
.faixa-grupo { display: flex; align-items: center; }
.faixa-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  letter-spacing: .05em;
  padding: 0 1.4rem;
  white-space: nowrap;
}
.faixa-spark { display: inline-flex; color: var(--brand); }
@keyframes desfila {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- numeros ---------- */
.numeros { padding: 3rem 0 1rem; }
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 1rem;
}
.num { text-align: center; position: relative; }
.num strong {
  display: inline-flex;
  align-items: baseline;
  gap: .3rem;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4.5vw, 2.9rem);
  line-height: 1;
}
.num-star { display: inline-flex; color: var(--acento); }
.num-star svg { fill: currentColor; stroke: currentColor; }
.num span {
  display: block;
  margin-top: .35rem;
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--tinta-suave);
}
@media (min-width: 720px) {
  .numeros-grid { grid-template-columns: repeat(4, 1fr); }
  .num + .num::before {
    content: '';
    position: absolute;
    left: -0.5rem;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--borda);
  }
}

/* ---------- secoes ---------- */
.secao { padding: 4.5rem 0; }
.secao-apertada { padding: 3.2rem 0; }
.secao-rosada {
  background: var(--rosa-fundo);
  border-block: 1px solid var(--borda);
}
.secao-cabeca {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2.5rem;
  margin-bottom: 2.4rem;
}
.secao-cabeca-central {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.secao-intro { max-width: 26rem; color: var(--tinta-suave); }
.secao-rodape { margin-top: 2.2rem; text-align: center; }

.link-seta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-decoration: none;
  color: var(--acento);
  border-bottom: 1px solid color-mix(in srgb, var(--acento) 40%, transparent);
  padding-bottom: .15rem;
  transition: gap .25s ease, border-color .25s ease;
}
.link-seta:hover { gap: .8rem; border-color: var(--acento); }

.prosa { color: var(--tinta-suave); margin-top: 1rem; max-width: 32rem; }

/* ---------- studio (sobre) ---------- */
.studio-grid {
  display: grid;
  gap: 3.2rem;
  align-items: center;
}
.studio-visual {
  position: relative;
  justify-self: center;
  width: min(400px, 86vw);
}
.arco-fundo {
  position: absolute;
  inset: -5% -6% 10% 8%;
  border: 1px solid color-mix(in srgb, var(--acento) 45%, transparent);
  border-radius: 999px 999px var(--raio) var(--raio);
}
.arco-foto {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 999px 999px var(--raio) var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra);
}
.arco-foto img { width: 100%; height: 100%; object-fit: cover; }
.selo {
  position: absolute;
  right: -4%;
  bottom: 6%;
  width: 108px;
  height: 108px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--nude);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .1rem;
  text-align: center;
  box-shadow: var(--sombra);
}
.selo em {
  font-family: var(--serif);
  font-style: italic;
  font-size: .85rem;
  color: var(--brand);
}
.selo strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
}
.mimos {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: .8rem;
}
.mimos li { display: flex; align-items: center; gap: .8rem; font-weight: 400; }
.mimo-icone {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rosa-20);
  color: var(--acento);
}
@media (min-width: 880px) {
  .studio-grid { grid-template-columns: .9fr 1.1fr; gap: 4.5rem; }
  .studio-visual { justify-self: start; }
}

/* ---------- cartoes de servicos ---------- */
.cartoes {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
}
.cartao {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cartao:hover {
  transform: translateY(-5px);
  box-shadow: var(--sombra);
  border-color: var(--rosa-40);
}
.cartao-icone {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
  background: var(--rosa-20);
  color: var(--acento);
  margin-bottom: .3rem;
}
.cartao h3 { font-size: 1.35rem; }
.cartao p { font-size: .92rem; color: var(--tinta-suave); flex: 1; }
.cartao-base {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-top: .6rem;
}
.cartao-tempo {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .82rem;
  color: var(--tinta-suave);
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .3rem .95rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.02rem;
  background: var(--rosa-20);
  border: 1px solid var(--rosa-40);
  color: var(--dark);
  white-space: nowrap;
}
.pill-escura { background: var(--dark); border-color: var(--dark); color: var(--nude); }

/* ---------- depoimentos ---------- */
.depos {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
}
.depo {
  position: relative;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: 2.2rem 1.7rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}
.depo-aspas {
  position: absolute;
  top: .2rem;
  left: 1.2rem;
  font-family: var(--serif);
  font-size: 4.6rem;
  line-height: 1;
  color: var(--rosa-40);
  pointer-events: none;
}
.depo blockquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.5;
  flex: 1;
}
.depo figcaption { display: flex; flex-direction: column; }
.depo figcaption strong { font-weight: 500; letter-spacing: .03em; }
.depo figcaption span { font-size: .82rem; color: var(--tinta-suave); }

/* ---------- galeria ---------- */
.galeria {
  display: grid;
  gap: 1.4rem;
  grid-template-columns: 1fr;
}
.foto {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
  aspect-ratio: 4 / 3;
  box-shadow: var(--sombra);
}
.foto-arco { border-radius: 999px 999px var(--raio) var(--raio); aspect-ratio: 4 / 4.4; }
.foto-blob { border-radius: 52% 48% 45% 55% / 48% 52% 48% 52%; }
.foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.foto:hover img, .foto:focus-visible img { transform: scale(1.05); }
.foto figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.4rem 1.4rem .9rem;
  background: linear-gradient(to top, color-mix(in srgb, var(--dark) 72%, transparent), transparent);
  color: var(--nude);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  text-align: center;
}
@media (min-width: 720px) {
  .galeria { grid-template-columns: repeat(2, 1fr); align-items: end; }
  .foto-blob { margin-bottom: 2.5rem; }
}

/* ---------- convite (CTA escuro) ---------- */
.convite {
  position: relative;
  background: var(--dark);
  color: var(--nude);
  padding: 4.5rem 0;
  overflow: hidden;
}
.convite-blob {
  position: absolute;
  border-radius: 55% 45% 52% 48% / 50% 52% 48% 50%;
  background: color-mix(in srgb, var(--brand) 24%, transparent);
  pointer-events: none;
}
.convite-blob-a { width: 380px; height: 380px; top: -180px; left: -120px; }
.convite-blob-b { width: 300px; height: 300px; bottom: -150px; right: -90px; }
.convite-in {
  position: relative;
  text-align: center;
  max-width: 42rem;
}
.convite h2 em { color: var(--brand); }
.convite p { margin-top: .9rem; color: color-mix(in srgb, var(--nude) 78%, transparent); }
.convite-acoes {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
}

/* ---------- contato ---------- */
.contato-grid { display: grid; gap: 3rem; }
.contato-lista {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: .9rem;
}
.contato-lista li { display: flex; align-items: flex-start; gap: .8rem; }
.contato-lista .mimo-icone { margin-top: .1rem; }
.contato-lista a { text-decoration: none; }
.contato-lista a:hover { color: var(--acento); }

.social { display: flex; gap: .7rem; margin-top: 1.5rem; }
.social a {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--borda);
  background: var(--branco);
  color: var(--dark);
  transition: background .25s ease, color .25s ease;
}
.social a:hover { background: var(--dark); color: var(--nude); }

.form-carta {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 28px;
  padding: 2rem 1.7rem 1.9rem;
  box-shadow: var(--sombra);
  display: grid;
  gap: 1.1rem;
}
.form-carta h3 {
  font-size: 1.7rem;
  text-align: center;
}
.form-carta h3 em { font-style: italic; color: var(--acento); }
.form-carta label {
  display: grid;
  gap: .35rem;
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--tinta-suave);
}
.form-carta input:not(.hp):not([type=hidden]),
.form-carta textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--dark);
  background: var(--creme);
  border: 1px solid var(--borda);
  border-radius: 14px;
  padding: .8rem 1rem;
  width: 100%;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.form-carta textarea { resize: vertical; min-height: 110px; }
.form-carta input:focus, .form-carta textarea:focus {
  outline: none;
  border-color: var(--acento);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--brand) 25%, transparent);
}
.hp { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }

.ok {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  background: #EDF6EE;
  border: 1px solid #BBDcbf;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  margin-bottom: 1.2rem;
  color: #2F5233;
}
.ok svg { flex: none; margin-top: .2rem; }
.ok p { font-size: .9rem; }

@media (min-width: 880px) {
  .contato-grid { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
}

/* ---------- rodape ---------- */
.rodape {
  background: var(--dark);
  color: color-mix(in srgb, var(--nude) 80%, transparent);
  padding: 3.5rem 0 0;
}
.rodape-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.rodape .brand-word { color: var(--nude); }
.rodape .brand-spark { color: var(--brand); }
.rodape-brand p { margin-top: .7rem; font-size: .9rem; max-width: 20rem; }
.rodape h4 {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .8rem;
}
.rodape p { font-size: .95rem; }
.rodape a { color: inherit; text-decoration: none; }
.rodape a:hover { color: var(--nude); }
.rodape-nav { display: flex; flex-direction: column; gap: .45rem; }
.rodape-base {
  border-top: 1px solid color-mix(in srgb, var(--nude) 14%, transparent);
  padding: 1.3rem 0;
  font-size: .85rem;
  text-align: center;
}
.rodape-base a { text-decoration: underline; text-underline-offset: 3px; }
@media (min-width: 880px) {
  .rodape-grid { grid-template-columns: 1.4fr 1fr 1fr .8fr; gap: 2.5rem; }
}

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: color-mix(in srgb, var(--dark) 88%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--raio);
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
}
.lb-fechar {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--nude) 35%, transparent);
  background: transparent;
  color: var(--nude);
  cursor: pointer;
}
.lb-fechar:hover { background: color-mix(in srgb, var(--nude) 15%, transparent); }

/* ---------- capa de pagina interna ---------- */
.pagina-capa {
  position: relative;
  padding: 3.5rem 0 3rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--rosa-fundo), var(--nude));
}
.capa-blob {
  position: absolute;
  border-radius: 55% 45% 52% 48% / 50% 52% 48% 50%;
  background: color-mix(in srgb, var(--brand) 22%, transparent);
  pointer-events: none;
}
.capa-blob-a { width: 300px; height: 300px; top: -140px; left: -100px; }
.capa-blob-b { width: 240px; height: 240px; bottom: -130px; right: -70px; }
.capa-in { position: relative; max-width: 44rem; }
.capa-sub { margin-top: 1rem; color: var(--tinta-suave); max-width: 34rem; margin-inline: auto; }

/* ---------- tabela de precos (servicos.php) ---------- */
.wrap-menu { max-width: 880px; }
.menu-lista { display: grid; gap: .9rem; }
.menu-grupo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: 1.6rem;
  font-style: italic;
  color: var(--acento);
  margin: 1.6rem 0 .3rem;
}
.menu-lista .menu-grupo:first-child { margin-top: 0; }
.menu-grupo-spark { display: inline-flex; color: var(--brand); }

.prato {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .3rem 1rem;
  align-items: center;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.prato:hover { transform: translateX(4px); box-shadow: var(--sombra); }
.prato-icone {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  background: var(--rosa-20);
  color: var(--acento);
  grid-row: span 2;
}
.prato-texto h3 { font-size: 1.3rem; }
.prato-texto p { font-size: .88rem; color: var(--tinta-suave); }
.prato-fio { display: none; }
.prato-meta {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: .8rem;
  justify-content: flex-start;
}
.prato-tempo {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .8rem;
  color: var(--tinta-suave);
}
@media (min-width: 720px) {
  .prato { grid-template-columns: auto minmax(0, auto) 1fr auto; }
  .prato-icone { grid-row: auto; }
  .prato-fio {
    display: block;
    height: 1px;
    border-bottom: 1px dashed var(--rosa-40);
    align-self: center;
    min-width: 30px;
  }
  .prato-meta { grid-column: auto; }
}

.menu-nota {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-top: 1.6rem;
  font-size: .88rem;
  color: var(--tinta-suave);
}
.menu-nota svg { flex: none; margin-top: .25rem; color: var(--acento); }

.menu-extras {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.4rem;
}
.extra {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: 1.7rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.extra-destaque {
  background: var(--dark);
  color: var(--nude);
  border-color: var(--dark);
}
.extra-destaque p { color: color-mix(in srgb, var(--nude) 78%, transparent); }
.extra-destaque .link-seta { color: var(--brand); border-color: color-mix(in srgb, var(--brand) 45%, transparent); }
.extra-icone {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--rosa-20);
  color: var(--acento);
}
.extra-destaque .extra-icone { background: color-mix(in srgb, var(--brand) 30%, transparent); color: var(--brand); }
.extra h3 { font-size: 1.4rem; }
.extra p { font-size: .93rem; flex: 1; }
.extra-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-top: .5rem;
}
.extra-destaque .pill-escura { background: var(--brand); border-color: var(--brand); color: var(--dark); }
@media (min-width: 720px) {
  .menu-extras { grid-template-columns: 1fr 1.2fr; }
}

/* ---------- passos (contato.php) ---------- */
.passos {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
}
.passo {
  position: relative;
  background: var(--branco);
  border: 1px solid var(--borda);
  border-radius: var(--raio);
  padding: 1.8rem 1.6rem 1.5rem;
  overflow: hidden;
}
.passo-num {
  position: absolute;
  top: .4rem;
  right: 1rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 3.6rem;
  line-height: 1;
  color: var(--rosa-20);
}
.passo h2 { font-size: 1.45rem; margin-bottom: .4rem; position: relative; }
.passo p { font-size: .92rem; color: var(--tinta-suave); position: relative; }

/* ---------- mapa ---------- */
.mapa {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--borda);
  box-shadow: var(--sombra);
}
.mapa iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: saturate(.85);
}

/* ---------- reveal ---------- */
html.js .rv {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
html.js .rv.d1 { transition-delay: .12s; }
html.js .rv.d2 { transition-delay: .24s; }
html.js .rv.d3 { transition-delay: .36s; }
html.js .rv.d4 { transition-delay: .48s; }
html.js .rv.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html.js .rv { opacity: 1; transform: none; transition: none; }
  .blob-fundo, .blob-linha, .spark-a, .spark-b { animation: none; }
  .faixa-trilho { animation-duration: 90s; }
  html { scroll-behavior: auto; }
}
