/* ═══════════════════════════════════════════════════════
   Studio Eliane Boll — Pilates & Move Flow
   Paleta derivada da identidade da marca (creme/dourado/vinho/girassol)
   ═══════════════════════════════════════════════════════ */

:root {
  --paper: #F9F4EB;
  --paper-2: #F2EADB;
  --card: #FFFDF8;
  --ink: #33281F;
  --ink-soft: #6E5F51;
  --wine: #6D2739;
  --wine-deep: #571E2D;
  --gold: #AD8434;
  --gold-line: rgba(173, 132, 52, 0.38);
  --sombra: 0 1px 2px rgba(51, 40, 31, 0.05), 0 12px 32px -12px rgba(51, 40, 31, 0.18);
  --f-display: "Fraunces", Georgia, serif;
  --f-corpo: "Albert Sans", -apple-system, sans-serif;
  --raio: 20px;
  --larg: 1120px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: var(--f-corpo);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { font-family: var(--f-display); font-weight: 520; line-height: 1.12; letter-spacing: -0.01em; }

h2 { font-size: clamp(1.75rem, 1.3rem + 2vw, 2.6rem); }

section { padding: clamp(4rem, 3rem + 3vw, 6.5rem) 1.5rem; }

/* ── Olho de seção (eyebrow) ─────────────────────────── */
.olho {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.olho-flor { width: 15px; height: 15px; color: var(--gold); flex: none; }
.olho-claro { color: #D9BC7E; }

.secao-cabeca { max-width: var(--larg); margin: 0 auto 2.75rem; text-align: center; }
.secao-cabeca .olho { justify-content: center; }
.secao-sub { max-width: 34em; margin: 1rem auto 0; color: var(--ink-soft); }

/* ── Botões ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.btn:active { transform: scale(0.98); }

.btn-primario {
  background: var(--wine);
  color: #FBF6EC;
  box-shadow: 0 8px 20px -8px rgba(109, 39, 57, 0.55);
}
.btn-primario:hover { background: var(--wine-deep); transform: translateY(-2px); }

.btn-fantasma {
  color: var(--wine);
  border: 1.5px solid var(--gold-line);
  background: transparent;
}
.btn-fantasma:hover { border-color: var(--gold); transform: translateY(-2px); }

.btn-claro { background: #FBF6EC; color: var(--wine-deep); }
.btn-claro:hover { background: #fff; transform: translateY(-2px); }

.btn-fantasma-claro { color: #FBF6EC; border: 1.5px solid rgba(251, 246, 236, 0.4); }
.btn-fantasma-claro:hover { border-color: #FBF6EC; transform: translateY(-2px); }

/* ── Topo ────────────────────────────────────────────── */
.topo {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 244, 235, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(173, 132, 52, 0.18);
}
.topo-inner {
  max-width: var(--larg);
  margin: 0 auto;
  padding: 0.7rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.marca { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; color: var(--ink); }
.marca-texto { display: flex; flex-direction: column; line-height: 1.15; }
.marca-nome { font-family: var(--f-display); font-size: 1.1rem; font-weight: 560; }
.marca-sub { font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; }

.menu { display: flex; gap: 1.4rem; margin-left: auto; }
.menu a { text-decoration: none; color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; transition: color 0.15s; }
.menu a:hover { color: var(--wine); }

.topo-acoes { display: flex; align-items: center; gap: 1rem; }
.tel-topo { text-decoration: none; color: var(--ink); font-weight: 600; font-size: 0.95rem; white-space: nowrap; }
.tel-topo:hover { color: var(--wine); }
.btn-topo { padding: 0.6rem 1.2rem; font-size: 0.92rem; gap: 0.28em; }

/* ── Hero ────────────────────────────────────────────── */
.hero { padding-top: clamp(3rem, 2rem + 3vw, 5.5rem); padding-bottom: clamp(3.5rem, 2.5rem + 3vw, 6rem); }
.hero-inner {
  max-width: var(--larg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2.5rem, 2rem + 3vw, 5rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.4rem, 1.6rem + 3.6vw, 4rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.hero h1 em { font-style: italic; color: var(--wine); font-weight: 560; }
.hero-sub { color: var(--ink-soft); font-size: 1.125rem; max-width: 32em; margin-bottom: 2rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 1.75rem; }
.hero-prova { display: flex; align-items: center; gap: 0.6rem; color: var(--ink-soft); font-size: 0.98rem; }
.hero-prova strong { color: var(--ink); }

.estrelas { display: inline-flex; gap: 2px; color: var(--gold); }
.estrelas svg { width: 16px; height: 16px; }

/* Moldura em arco — a janela do 18º andar */
.arco {
  border-radius: 999px 999px var(--raio) var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra);
  position: relative;
}
.arco::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(251, 246, 236, 0.55);
  border-radius: 999px 999px calc(var(--raio) - 8px) calc(var(--raio) - 8px);
  pointer-events: none;
}
.arco img { width: 100%; height: 100%; object-fit: cover; }

.hero-foto { position: relative; }
.hero-foto .arco { aspect-ratio: 4 / 5.1; }
.hero-foto .arco img { object-position: 58% 42%; }
.hero-legenda {
  margin-top: 0.9rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--f-display);
}

/* ── Para o seu momento ──────────────────────────────── */
.momento { background: var(--paper); padding-top: 2rem; }
.momento-grade {
  max-width: var(--larg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.carta {
  background: var(--card);
  border: 1px solid rgba(173, 132, 52, 0.22);
  border-radius: var(--raio);
  padding: 2rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.carta:hover { transform: translateY(-4px); box-shadow: var(--sombra); }
.carta h3 { font-size: 1.35rem; margin-bottom: 0.75rem; color: var(--wine); }
.carta p { color: var(--ink-soft); font-size: 1rem; }

/* ── Move Flow ───────────────────────────────────────── */
.moveflow { background: var(--wine); color: #F5EBDD; }
.moveflow-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.moveflow h2 { color: #FBF6EC; margin-bottom: 1.25rem; }
.moveflow p { color: rgba(245, 235, 221, 0.85); max-width: 40em; margin: 0 auto 1.75rem; }
.link-claro {
  color: #E8CE96;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 206, 150, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.link-claro:hover { border-color: #E8CE96; }

/* ── Eliane ──────────────────────────────────────────── */
.eliane { background: var(--paper-2); }
.eliane-inner {
  max-width: var(--larg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  align-items: center;
}
.arco-mini { aspect-ratio: 3 / 4.3; max-width: 340px; }
.eliane h2 { margin-bottom: 1.25rem; }
.eliane blockquote {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--wine);
  border-left: 2px solid var(--gold-line);
  padding-left: 1.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}
.credenciais { list-style: none; margin-bottom: 1.5rem; }
.credenciais li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(173, 132, 52, 0.18);
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.credenciais li span { color: var(--gold); font-weight: 600; white-space: nowrap; }
.eliane-corpo { color: var(--ink-soft); }

/* ── Galeria ─────────────────────────────────────────── */
.galeria-grade {
  max-width: var(--larg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 1.2rem;
  align-items: stretch;
}
.galeria-item {
  border-radius: var(--raio);
  overflow: hidden;
  box-shadow: var(--sombra);
}
.galeria-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.galeria-item:hover img { transform: scale(1.03); }
.g-a { border-radius: 999px 999px var(--raio) var(--raio); }
.g-c { border-radius: 999px 999px var(--raio) var(--raio); }
.galeria-grade figure { min-height: 380px; }

/* ── Depoimentos ─────────────────────────────────────── */
.depoimentos { background: var(--paper); }
.selo-nota {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1rem;
  color: var(--ink-soft);
}
.selo-nota strong { color: var(--ink); }
.depo-grade {
  max-width: var(--larg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.depo {
  background: var(--card);
  border: 1px solid rgba(173, 132, 52, 0.22);
  border-radius: var(--raio);
  padding: 1.9rem 1.8rem;
}
.depo blockquote {
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 1.1rem;
  line-height: 1.55;
}
.depo figcaption { font-weight: 600; color: var(--wine); font-size: 0.95rem; }
.depo figcaption::before { content: "— "; color: var(--gold); }
.depo-link { text-align: center; margin-top: 2.25rem; }
.depo-link a { color: var(--wine); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--gold-line); padding-bottom: 2px; }
.depo-link a:hover { border-color: var(--gold); }

/* ── Vista ───────────────────────────────────────────── */
.vista { padding: 0; position: relative; }
.vista img { width: 100%; height: clamp(300px, 46vw, 520px); object-fit: cover; }
.vista-legenda {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(51, 40, 31, 0.55);
  backdrop-filter: blur(6px);
  color: #F5EBDD;
  font-size: 0.85rem;
  font-style: italic;
  font-family: var(--f-display);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  white-space: nowrap;
}

/* ── Passos ──────────────────────────────────────────── */
.passos { background: var(--paper); }
.passos-lista {
  max-width: var(--larg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  list-style: none;
  counter-reset: passo;
}
.passos-lista li {
  counter-increment: passo;
  background: var(--card);
  border: 1px solid rgba(173, 132, 52, 0.22);
  border-radius: var(--raio);
  padding: 2rem 1.75rem;
  position: relative;
}
.passos-lista li::before {
  content: counter(passo);
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  display: block;
  margin-bottom: 0.6rem;
  line-height: 1;
}
.passos-lista h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.passos-lista p { color: var(--ink-soft); font-size: 0.98rem; }

/* ── Onde fica ───────────────────────────────────────── */
.onde { background: var(--paper-2); }
.onde-inner {
  max-width: var(--larg);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(2.5rem, 2rem + 3vw, 4.5rem);
  align-items: start;
}
.onde h2 { margin-bottom: 1.25rem; }
.onde address {
  font-style: normal;
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  color: var(--ink);
}
.onde-botoes { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.onde-horarios {
  background: var(--card);
  border: 1px solid rgba(173, 132, 52, 0.22);
  border-radius: var(--raio);
  padding: 1.9rem 1.8rem;
}
.onde-horarios h3 { font-size: 1.3rem; margin-bottom: 1rem; color: var(--wine); }
.onde-horarios table { width: 100%; border-collapse: collapse; }
.onde-horarios td { padding: 0.6rem 0; border-bottom: 1px solid rgba(173, 132, 52, 0.16); }
.onde-horarios td:last-child { text-align: right; font-weight: 600; }
.onde-horarios tr:last-child td { border-bottom: none; color: var(--ink-soft); font-weight: 500; }

/* ── FAQ ─────────────────────────────────────────────── */
.faq-lista { max-width: 780px; margin: 0 auto; }
.faq details {
  background: var(--card);
  border: 1px solid rgba(173, 132, 52, 0.22);
  border-radius: 14px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-weight: 600;
  font-size: 1.02rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--f-display);
  font-size: 1.4rem;
  color: var(--gold);
  flex: none;
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq details[open] summary { color: var(--wine); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.4rem 1.3rem; color: var(--ink-soft); }

/* ── CTA final ───────────────────────────────────────── */
.fim { background: var(--wine); }
.fim-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.fim h2 { color: #FBF6EC; margin-bottom: 0.9rem; }
.fim p { color: rgba(245, 235, 221, 0.85); margin-bottom: 2rem; }
.fim-ctas { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ── Rodapé ──────────────────────────────────────────── */
.rodape { background: var(--wine-deep); color: rgba(245, 235, 221, 0.75); padding: 2.5rem 1.5rem; }
.rodape-inner {
  max-width: var(--larg);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
}
.rodape-marca { display: flex; align-items: center; gap: 0.75rem; }
.rodape-marca div { display: flex; flex-direction: column; line-height: 1.35; }
.rodape-marca strong { color: #FBF6EC; font-family: var(--f-display); font-size: 1.05rem; }
.rodape-marca span { font-size: 0.85rem; }
.rodape-info { font-size: 0.9rem; text-align: right; }
.rodape-info a { color: #E8CE96; text-decoration: none; }
.rodape-info a:hover { text-decoration: underline; }

/* ── Revelação ao rolar ──────────────────────────────── */
.revela { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.revela.visivel { opacity: 1; transform: none; }

/* ── Acessibilidade ──────────────────────────────────── */
:focus-visible { outline: 2px solid var(--wine); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .revela { opacity: 1; transform: none; transition: none; }
  .btn, .carta, .galeria-item img { transition: none; }
}

/* ── Responsivo ──────────────────────────────────────── */
@media (max-width: 960px) {
  .menu { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-texto { text-align: center; }
  .hero .olho { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-prova { justify-content: center; }
  .hero-foto { max-width: 460px; margin: 0 auto; width: 100%; }
  .momento-grade, .passos-lista { grid-template-columns: 1fr; max-width: 560px; }
  .depo-grade { grid-template-columns: 1fr; max-width: 640px; }
  .galeria-grade { grid-template-columns: 1fr 1fr; max-width: 640px; }
  .galeria-grade .g-c { display: none; }
  .eliane-inner, .onde-inner { grid-template-columns: 1fr; }
  .eliane-foto { display: flex; justify-content: center; }
  .rodape-inner { flex-direction: column; text-align: center; }
  .rodape-info { text-align: center; }
}

@media (max-width: 560px) {
  .tel-topo { display: none; }
  .so-desktop { display: none; }
  .galeria-grade { grid-template-columns: 1fr; }
  .galeria-grade .g-c { display: block; }
  .galeria-grade figure { min-height: 300px; }
  .btn { width: 100%; }
  .topo-acoes .btn-topo { width: auto; }
  .credenciais li { flex-direction: column; gap: 0.1rem; }
}
