/* ============================================================
   STUDIO MARA CAMARGO — candlelight gold & lotus
   Paleta extraída do branding real (letreiro dourado + posts IG)
   ============================================================ */

:root {
  --noite: #201711;          /* café-escuro do letreiro */
  --noite-2: #2b1f16;
  --dourado: #d9b36c;        /* ouro champanhe */
  --dourado-claro: #f0d79f;  /* brilho */
  --dourado-escuro: #a97e3f;
  --creme: #f7f1e6;          /* fundo claro */
  --areia: #efe5d2;
  --cacau: #43332a;          /* texto sobre claro */
  --cacau-suave: #6f5c4e;
  --rose: #c5907f;           /* toque rosé dos posts */
  --branco: #fffdf9;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", sans-serif;
  --font-script: "Allura", cursive;

  --ease-out: cubic-bezier(.19, 1, .22, 1);
  --shadow-soft: 0 20px 60px -20px rgba(32, 23, 17, .25);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--cacau);
  background: var(--creme);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

/* ---------- tipografia ---------- */

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  color: inherit;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: .01em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: 1.45rem; }

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

.nowrap { white-space: nowrap; }

.eyebrow {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--dourado-escuro);
  margin-bottom: 1.1rem;
}

.eyebrow.light { color: var(--dourado); }

.center { text-align: center; }

.section-sub {
  max-width: 560px;
  margin: 1.2rem auto 0;
  color: var(--cacau-suave);
  font-size: 1.05rem;
}

/* ---------- botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out),
              background-color .3s, color .3s, border-color .3s;
  will-change: transform;
}

.btn .ico { width: 1.1em; height: 1.1em; fill: currentColor; flex: none; }

.btn-gold {
  background: linear-gradient(135deg, var(--dourado-claro), var(--dourado) 55%, var(--dourado-escuro));
  color: #2b1d10;
  box-shadow: 0 10px 30px -10px rgba(217, 179, 108, .55);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(217, 179, 108, .75);
}

.btn-ghost {
  color: var(--creme);
  border-color: rgba(247, 241, 230, .35);
}

.btn-ghost:hover { border-color: var(--dourado); color: var(--dourado-claro); }

.btn-dark {
  background: var(--noite);
  color: var(--dourado-claro);
}

.btn-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.btn-ghost-dark {
  color: var(--cacau);
  border-color: rgba(67, 51, 42, .3);
}

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

.btn-lg { padding: 1.1rem 2.1rem; font-size: 1rem; }
.btn-xl { padding: 1.25rem 2.6rem; font-size: 1.08rem; }

/* ---------- header ---------- */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background-color .4s, box-shadow .4s, backdrop-filter .4s;
}

.header.scrolled {
  background: rgba(32, 23, 17, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(217, 179, 108, .18);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: .9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.brand { display: flex; align-items: center; gap: .7rem; color: var(--creme); }

.brand-mark { width: 40px; height: 40px; color: var(--dourado); flex: none; }

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

.brand-studio {
  font-family: var(--font-body);
  font-size: .62rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--dourado);
}

.brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--creme);
}

.nav { display: flex; gap: 1.6rem; margin-left: auto; }

.nav a {
  font-size: .85rem;
  font-weight: 400;
  letter-spacing: .08em;
  color: rgba(247, 241, 230, .85);
  position: relative;
  padding: .3rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--dourado);
  transition: right .4s var(--ease-out);
}

.nav a:hover { color: var(--dourado-claro); }
.nav a:hover::after { right: 0; }

.btn-header { flex: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 7px;
  background: none;
  border: none;
  padding: .6rem;
  cursor: pointer;
  margin-left: auto;
}

.nav-toggle span {
  width: 26px; height: 1.6px;
  background: var(--dourado);
  transition: transform .35s var(--ease-out), opacity .3s;
}

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(32, 23, 17, .97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}

.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  text-align: center;
}

.mobile-menu nav > a:not(.btn) {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  color: var(--creme);
}

.mobile-menu nav > a:not(.btn):hover { color: var(--dourado-claro); }

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(1200px 700px at 72% 38%, #3a2a1a 0%, transparent 60%),
    radial-gradient(900px 600px at 15% 85%, #33241733 0%, transparent 60%),
    var(--noite);
  color: var(--creme);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 620px; height: 620px;
  right: max(2vw, calc(50% - 640px));
  top: 50%;
  transform: translateY(-54%);
  background: radial-gradient(circle, rgba(240, 215, 159, .16) 0%, rgba(217, 179, 108, .05) 45%, transparent 70%);
  pointer-events: none;
  animation: breathe 7s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: .85; transform: translateY(-54%) scale(1); }
  50% { opacity: 1; transform: translateY(-54%) scale(1.06); }
}

.hero-embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 8.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  align-items: center;
  gap: 3rem;
}

.hero-copy .eyebrow { color: var(--dourado); }

.hero-sub {
  max-width: 520px;
  margin-top: 1.5rem;
  font-size: 1.08rem;
  color: rgba(247, 241, 230, .82);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.2rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-top: 2rem;
  font-size: .92rem;
  color: rgba(247, 241, 230, .75);
}

.hero-proof strong { color: var(--dourado-claro); font-weight: 600; }

.stars {
  color: var(--dourado);
  letter-spacing: .18em;
  font-size: .95rem;
  text-shadow: 0 0 14px rgba(217, 179, 108, .55);
}

/* — emblema lótus — */

.hero-emblem {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--dourado);
}

.emblem-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.emblem-rings span {
  position: absolute;
  width: 340px; height: 340px;
  border: 1px solid rgba(217, 179, 108, .18);
  border-radius: 50%;
  animation: ripple 6s var(--ease-out) infinite;
}

.emblem-rings span:nth-child(2) { animation-delay: 2s; }
.emblem-rings span:nth-child(3) { animation-delay: 4s; }

@keyframes ripple {
  0% { transform: scale(.82); opacity: 0; }
  25% { opacity: .8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.lotus {
  width: min(400px, 72vw);
  filter:
    drop-shadow(0 0 6px rgba(240, 215, 159, .5))
    drop-shadow(0 0 26px rgba(217, 179, 108, .32));
}

.lotus .p {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: draw 2.6s var(--ease-out) forwards;
}

.lotus .p:nth-of-type(1) { animation-delay: .5s; }
.lotus g .p { animation-delay: .55s; }
.lotus g .p:nth-of-type(4) { animation-delay: .75s; }
.lotus g .p:nth-of-type(5) { animation-delay: .75s; }
.lotus g .p:nth-of-type(6) { animation-delay: .95s; }
.lotus g .p:nth-of-type(7) { animation-delay: .95s; }
.lotus g .p:nth-of-type(8) { animation-delay: 1.15s; }
.lotus g .p:nth-of-type(9) { animation-delay: 1.15s; }
.lotus g .f { animation-delay: 1.5s; }

@keyframes draw { to { stroke-dashoffset: 0; } }

.lotus .dot {
  fill: var(--dourado);
  stroke: none;
  opacity: 0;
  animation: flicker 3.4s ease-in-out infinite;
}

.lotus .d1 { animation-delay: 2.2s; }
.lotus .d2 { animation-delay: 2.45s; }
.lotus .d3 { animation-delay: 2.7s; }

@keyframes flicker {
  0%, 100% { opacity: .25; }
  50% { opacity: 1; }
}

.lotus-word {
  font-family: var(--font-script);
  fill: var(--dourado-claro);
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-out) forwards;
}

.w1 { font-size: 30px; animation-delay: 2s; }
.w2 { font-size: 26px; animation-delay: 2.25s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* — faixa de confiança — */

.hero-strip {
  position: relative;
  border-top: 1px solid rgba(217, 179, 108, .2);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .4rem 2.4rem;
  padding: 1.1rem 1.5rem 1.3rem;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(240, 215, 159, .68);
}

/* ---------- seções gerais ---------- */

.section { padding: 6.5rem 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- serviços ---------- */

.services { background: var(--creme); }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3.5rem;
}

.card {
  position: relative;
  background: var(--branco);
  border: 1px solid rgba(169, 126, 63, .16);
  border-radius: var(--radius);
  padding: 2rem 1.8rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .4s;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
  transform: translateX(-100%);
  transition: transform .8s var(--ease-out);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  border-color: rgba(217, 179, 108, .5);
}

.card:hover::before { transform: translateX(100%); }

.card-num {
  display: inline-block;
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: .55rem;
}

.card h3 { color: var(--noite); }

.card p { color: var(--cacau-suave); font-size: .96rem; flex: 1; }

.card-link {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .05em;
  color: var(--dourado-escuro);
  transition: color .3s, letter-spacing .4s var(--ease-out);
}

.card-link:hover { color: var(--noite); letter-spacing: .09em; }

.services-note {
  text-align: center;
  margin-top: 3rem;
  color: var(--cacau-suave);
}

.services-note a {
  color: var(--dourado-escuro);
  font-weight: 500;
  border-bottom: 1px solid rgba(169, 126, 63, .4);
  transition: color .3s, border-color .3s;
}

.services-note a:hover { color: var(--noite); border-color: var(--noite); }

/* ---------- benefícios ---------- */

.benefits { background: var(--areia); }

.benefits-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: center;
}

.benefits-media { position: relative; }

.benefits-media img {
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  box-shadow: var(--shadow-soft);
}

.polaroid {
  position: absolute;
  right: -1.2rem;
  bottom: 1.8rem;
  background: var(--branco);
  border-radius: 14px;
  padding: .8rem 1.2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cacau);
  box-shadow: 0 16px 40px -16px rgba(32, 23, 17, .35);
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.polaroid .stars { color: var(--dourado-escuro); text-shadow: none; font-size: .8rem; }

.benefit-list {
  list-style: none;
  margin: 2.2rem 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.benefit-list li {
  position: relative;
  padding-left: 2.2rem;
  color: var(--cacau-suave);
}

.benefit-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: .05rem;
  color: var(--dourado-escuro);
  font-size: 1rem;
}

.benefit-list strong { color: var(--noite); font-weight: 500; }

/* ---------- sobre ---------- */

.about { background: var(--creme); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 4rem;
  align-items: center;
}

.about-copy p + p { margin-top: 1.1rem; }

.about-copy > p:not(.eyebrow):not(.signature) { color: var(--cacau-suave); max-width: 520px; }

.about-copy h2 { margin-bottom: 1.4rem; }

.signature {
  font-family: var(--font-script);
  font-size: 3rem;
  color: var(--dourado-escuro);
  margin-top: 1.6rem;
  transform: rotate(-4deg);
  display: inline-block;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .9rem;
  margin-top: 1.4rem;
}

.about-badges span {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cacau-suave);
  border: 1px solid rgba(169, 126, 63, .28);
  border-radius: 999px;
  padding: .45rem .95rem;
  transition: border-color .3s, color .3s;
}

.about-badges span:hover { border-color: var(--dourado-escuro); color: var(--cacau); }

.about-media {
  position: relative;
  display: grid;
}

.about-photo { margin: 0; }

.about-photo.main img {
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.about-photo.detail {
  position: absolute;
  left: -2.4rem;
  bottom: -2.2rem;
  width: 46%;
  border: 6px solid var(--creme);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
  transition: transform .5s var(--ease-out);
}

.about-photo.detail:hover { transform: rotate(-1deg) translateY(-4px); }

.about-photo.detail { aspect-ratio: 1; }

.about-photo.detail img {
  width: 240%;
  max-width: none;
  margin-left: -140%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* ---------- avaliações ---------- */

.reviews {
  background:
    radial-gradient(900px 500px at 50% 0%, #382817 0%, transparent 70%),
    var(--noite);
  color: var(--creme);
  text-align: center;
}

.reviews h2 { color: var(--creme); }

.big-rating {
  font-style: normal;
  color: var(--dourado-claro);
  text-shadow: 0 0 30px rgba(217, 179, 108, .45);
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: 2rem;
  color: var(--dourado);
  margin-top: 1.2rem;
  text-shadow: 0 0 18px rgba(217, 179, 108, .5);
}

.rating-stars .star {
  opacity: 0;
  transform: scale(.4) rotate(-20deg);
  transition: opacity .5s var(--ease-out), transform .6s var(--ease-out);
}

.rating-stars.lit .star {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.rating-stars.lit .star:nth-child(1) { transition-delay: .1s; }
.rating-stars.lit .star:nth-child(2) { transition-delay: .25s; }
.rating-stars.lit .star:nth-child(3) { transition-delay: .4s; }
.rating-stars.lit .star:nth-child(4) { transition-delay: .55s; }
.rating-stars.lit .star:nth-child(5) { transition-delay: .7s; }

.reviews .section-sub { color: rgba(247, 241, 230, .8); }
.reviews .section-sub strong { color: var(--dourado-claro); }

.reviews-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.6rem;
}

/* ---------- passos ---------- */

.steps { background: var(--creme); }

.steps-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
  counter-reset: passo;
  position: relative;
}

.steps-list::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(169, 126, 63, .4), transparent);
}

.steps-list li {
  text-align: center;
  padding: 0 1rem;
  position: relative;
}

.step-mark {
  display: inline-grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(169, 126, 63, .5);
  background: var(--branco);
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--dourado-escuro);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}

.steps-list li:hover .step-mark {
  transform: scale(1.12);
  box-shadow: 0 0 0 8px rgba(217, 179, 108, .14);
}

.steps-list h3 { color: var(--noite); margin-bottom: .6rem; }
.steps-list p { color: var(--cacau-suave); font-size: .96rem; }

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

/* ---------- localização ---------- */

.location { background: var(--areia); }

.location-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}

.location address {
  font-style: normal;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--noite);
  margin-top: 1.4rem;
}

.location-note { color: var(--cacau-suave); margin-top: .8rem; max-width: 380px; }

.hours {
  margin-top: 1.8rem;
  border-collapse: collapse;
  width: 100%;
  max-width: 380px;
}

.hours caption {
  text-align: left;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--dourado-escuro);
  padding-bottom: .7rem;
}

.hours th, .hours td {
  padding: .55rem 0;
  border-bottom: 1px solid rgba(169, 126, 63, .22);
  font-size: .95rem;
}

.hours th { text-align: left; font-weight: 400; color: var(--cacau); }
.hours td { text-align: right; color: var(--cacau-suave); }

.location-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(169, 126, 63, .25);
  background: #e7ddc9;
}

.location-map iframe {
  width: 100%;
  height: 460px;
  border: 0;
  display: block;
  filter: sepia(.22) saturate(.9);
}

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

.faq { background: var(--creme); }

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

.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: .8rem; }

.faq details {
  background: var(--branco);
  border: 1px solid rgba(169, 126, 63, .18);
  border-radius: 14px;
  padding: 1.1rem 1.5rem;
  transition: border-color .3s, box-shadow .3s;
}

.faq details[open] {
  border-color: rgba(217, 179, 108, .55);
  box-shadow: var(--shadow-soft);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--noite);
}

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

.faq-icon {
  position: relative;
  width: 14px; height: 14px;
  flex: none;
}

.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%; height: 1.6px;
  background: var(--dourado-escuro);
  transition: transform .4s var(--ease-out);
}

.faq-icon::after { transform: rotate(90deg); }

.faq details[open] .faq-icon::after { transform: rotate(0); }

.faq details p {
  padding: .9rem .2rem .3rem;
  color: var(--cacau-suave);
  font-size: .98rem;
}

.faq details p a {
  color: var(--dourado-escuro);
  border-bottom: 1px solid rgba(169, 126, 63, .4);
}

/* ---------- CTA final ---------- */

.final-cta {
  position: relative;
  background:
    radial-gradient(800px 460px at 50% 110%, #3d2c19 0%, transparent 70%),
    var(--noite);
  color: var(--creme);
  padding: 7rem 0 7.5rem;
  text-align: center;
  overflow: hidden;
}

.final-lotus {
  width: 74px; height: 74px;
  color: var(--dourado);
  margin: 0 auto 1.6rem;
  filter: drop-shadow(0 0 18px rgba(217, 179, 108, .5));
  animation: breathe-sm 5s ease-in-out infinite;
}

@keyframes breathe-sm {
  0%, 100% { transform: scale(1); opacity: .92; }
  50% { transform: scale(1.06); opacity: 1; }
}

.final-cta h2 { color: var(--creme); }

.final-cta p {
  margin: 1.2rem auto 2.4rem;
  max-width: 460px;
  color: rgba(247, 241, 230, .8);
}

.final-alt { font-size: .92rem; margin-top: 1.6rem !important; }

.final-alt a {
  color: var(--dourado-claro);
  border-bottom: 1px solid rgba(240, 215, 159, .4);
}

/* ---------- footer ---------- */

.footer {
  background: #17100b;
  color: rgba(247, 241, 230, .75);
  padding: 4.5rem 0 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
}

.footer .brand-mark { width: 44px; height: 44px; color: var(--dourado); margin-bottom: .9rem; }

.footer .brand-text { display: block; }
.footer .brand-studio { display: block; }
.footer .brand-name { font-size: 1.5rem; }

.footer-tag { margin-top: .9rem; font-size: .9rem; line-height: 1.7; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 1.1rem;
}

.footer-col a, .footer-col p {
  display: block;
  font-size: .95rem;
  margin-bottom: .55rem;
  line-height: 1.7;
}

.footer-col a { transition: color .3s; }
.footer-col a:hover { color: var(--dourado-claro); }

.footer-note {
  text-align: center;
  margin-top: 3.5rem;
  padding: 1.8rem 1.5rem 0;
  border-top: 1px solid rgba(217, 179, 108, .14);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(240, 215, 159, .5);
}

/* ---------- FAB WhatsApp ---------- */

.wa-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: .55rem;
  background: linear-gradient(135deg, var(--dourado-claro), var(--dourado) 55%, var(--dourado-escuro));
  color: #2b1d10;
  border-radius: 999px;
  padding: .9rem 1.3rem;
  font-weight: 500;
  font-size: .9rem;
  letter-spacing: .04em;
  box-shadow: 0 14px 34px -10px rgba(217, 179, 108, .65);
  transform: translateY(120px);
  transition: transform .6s var(--ease-out), box-shadow .4s;
}

.wa-fab.visible { transform: translateY(0); }

.wa-fab:hover {
  box-shadow: 0 20px 44px -12px rgba(217, 179, 108, .85);
}

.wa-fab svg { width: 22px; height: 22px; fill: currentColor; position: relative; z-index: 1; }
.wa-fab-label { position: relative; z-index: 1; }

.wa-fab-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(217, 179, 108, .5);
  animation: fab-pulse 2.6s ease-out infinite;
  pointer-events: none;
}

@keyframes fab-pulse {
  0% { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(1.35); opacity: 0; }
}

/* ---------- reveals ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}

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

/* ---------- responsivo ---------- */

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 7.5rem; }
  .hero-copy .eyebrow { letter-spacing: .22em; }
  .hero-sub, .hero-ctas, .hero-proof { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-proof { justify-content: center; }
  .hero-emblem { order: -1; margin-top: 1rem; }
  .lotus { width: min(280px, 62vw); }
  .emblem-rings span { width: 250px; height: 250px; }
  .hero-glow { right: 50%; transform: translate(50%, -60%); }

  .cards { grid-template-columns: repeat(2, 1fr); }

  .benefits-grid, .about-grid, .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .benefits-media { max-width: 480px; margin: 0 auto; }
  .polaroid { right: .6rem; }
  .about-media { max-width: 480px; margin: 0 auto; padding-left: 2.4rem; }

  .steps-list { grid-template-columns: 1fr; gap: 2.6rem; }
  .steps-list::before { display: none; }
}

@media (max-width: 760px) {
  .nav, .btn-header { display: none; }
  .nav-toggle { display: flex; }

  .section { padding: 4.5rem 0; }

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

  .hero-strip { gap: .35rem 1.4rem; font-size: .7rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.4rem; }

  .location-map iframe { height: 340px; }

  .about-photo.detail { left: -.6rem; }

  .wa-fab-label { display: none; }
  .wa-fab { padding: 1rem; }
}

/* ---------- reduced motion ---------- */

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

  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .lotus .p { stroke-dashoffset: 0; animation: none; }
  .lotus .dot, .lotus-word { opacity: 1; animation: none; }
  .reveal { opacity: 1; transform: none; }
  .rating-stars .star { opacity: 1; transform: none; }
  .wa-fab { transform: none; }
}
