/* ============================================================
   BÉLARI CLINIC — Design System
   Paleta: Off White · Light Sand · Deep Charcoal · Soft Gold
   Tipografia: Playfair Display · Cormorant Garamond · Montserrat
   ============================================================ */

:root {
  --off-white: #F5F3EF;
  --sand: #EBDFD2;
  --charcoal: #2B2B2B;
  --charcoal-deep: #232323;
  --gold: #C6A769;
  --gold-light: #E8D5A8;
  --gold-dark: #A98B4F;
  --beige: #D8CBB8;
  --ink: #2B2B2B;
  --ink-soft: #6B655C;
  --white: #FDFCFA;

  --grad-gold: linear-gradient(120deg, #C6A769 0%, #E8D5A8 55%, #C6A769 100%);

  --font-display: "Playfair Display", "Didot", Georgia, serif;
  --font-sub: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", "Open Sans", sans-serif;

  --shadow-soft: 0 18px 50px -20px rgba(43, 43, 43, .22);
  --shadow-card: 0 10px 34px -16px rgba(43, 43, 43, .18);

  --radius-arch: 999px 999px 18px 18px;

  --container: 1180px;
  --gutter: clamp(20px, 5vw, 40px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--gold); color: var(--off-white); }

/* ---------- Typography ---------- */
h1, h2, .display {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.01em;
  color: var(--charcoal);
}
h1 { font-size: clamp(2.5rem, 6.4vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 {
  font-family: var(--font-sub);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  line-height: 1.3;
  color: var(--charcoal);
}
h1 em, h2 em, .display em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-dark);
}

.lead {
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.8;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--gold);
}

/* On dark backgrounds */
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark .display { color: var(--off-white); }
.on-dark h2 { color: var(--gold); }
.on-dark h2 em { color: var(--gold-light); }
.on-dark .lead, .on-dark p { color: rgba(245, 243, 239, .78); }
.on-dark .eyebrow { color: var(--gold-light); }

/* Gradient gold text */
.text-gold-grad {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(72px, 11vw, 130px); }
.section--sand { background: var(--sand); }
.section--dark { background: var(--charcoal); position: relative; overflow: hidden; }
.section--dark.on-dark { color: rgba(245, 243, 239, .85); }

.section-head { max-width: 620px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { margin-bottom: 18px; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }

/* Fine gold divider */
.gold-line {
  width: 64px; height: 1px;
  background: var(--gold);
  border: none;
  margin: 26px 0;
}
.section-head--center .gold-line { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 34px;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: transform .3s ease, box-shadow .3s ease, background-color .3s ease, color .3s ease;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--off-white);
  box-shadow: 0 12px 28px -12px rgba(198, 167, 105, .65);
}
.btn--gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -12px rgba(198, 167, 105, .75);
}
.btn--outline {
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  background: transparent;
}
.btn--outline:hover { background: var(--gold); color: var(--off-white); transform: translateY(-2px); }
.on-dark .btn--outline { color: var(--gold-light); border-color: var(--gold); }
.on-dark .btn--outline:hover { color: var(--charcoal); background: var(--gold); }
.btn--lg { padding: 20px 44px; font-size: .85rem; }
.btn svg { width: 17px; height: 17px; flex: none; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  transition: gap .3s ease;
}
.link-arrow:hover { gap: 16px; }
.on-dark .link-arrow { color: var(--gold-light); }

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background-color .35s ease, box-shadow .35s ease, padding .35s ease;
  padding-block: 18px;
}
.header.is-scrolled {
  background: rgba(245, 243, 239, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 6px 30px -18px rgba(43, 43, 43, .3);
  padding-block: 10px;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand__crown { width: 26px; height: 26px; color: var(--gold); }
.brand__logo { height: 54px; width: auto; display: block; transition: height .35s ease; }
.header.is-scrolled .brand__logo { height: 44px; }
.header--dark:not(.is-scrolled) .brand__logo { filter: brightness(0) invert(1); }
.footer__monogram { width: 84px; height: auto; display: block; }
.brand__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--charcoal);
}
.brand__name span { color: var(--gold-dark); }
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: .55rem;
  font-weight: 600;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 1px;
}

.nav { display: flex; align-items: center; gap: clamp(14px, 1.8vw, 28px); }
.nav a {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink);
  position: relative;
  padding-block: 6px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--gold-dark); }

.header__cta { flex: none; }

/* Header sobre hero escuro: elementos claros até rolar */
.header--dark:not(.is-scrolled) .brand__name { color: var(--off-white); }
.header--dark:not(.is-scrolled) .brand__tag { color: rgba(245, 243, 239, .6); }
.header--dark:not(.is-scrolled) .nav a { color: var(--off-white); }
.header--dark:not(.is-scrolled) .nav-toggle span { background: var(--off-white); }
@media (max-width: 1060px) {
  .header--dark:not(.is-scrolled) .nav.is-open a { color: var(--ink); }
}
.nav-toggle[aria-expanded="true"] span { background: var(--charcoal) !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  z-index: 120;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--charcoal);
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 1060px) {
  .header__cta { display: none; }
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    background: var(--off-white);
    background-image: radial-gradient(circle at 80% 12%, rgba(198,167,105,.12), transparent 55%);
    transform: translateX(100%);
    transition: transform .45s cubic-bezier(.65, 0, .35, 1);
    z-index: 110;
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 1rem; letter-spacing: .2em; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding-block: 160px 110px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__bg picture { display: block; width: 100%; height: 100%; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 65% 30%; }
@media (max-width: 760px) {
  .hero__bg img { object-position: center top; }
  /* A arte mobile do hero tem fade branco na base — texto ancorado embaixo, sem overlay */
  .hero--home { align-items: flex-end; min-height: 100svh; padding-block: 120px 48px; }
  .hero--home .hero__overlay { background: none !important; }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(100deg, rgba(245,243,239,.96) 0%, rgba(245,243,239,.88) 42%, rgba(245,243,239,.45) 100%);
}
.hero__content { max-width: 640px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 26px;
}
.hero__badge svg { width: 18px; height: 18px; color: var(--gold); }
.hero h1 { margin-bottom: 24px; }
.hero .lead { margin-bottom: 38px; max-width: 520px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }

/* Hero dark variant (ARMÔNI) */
.hero--dark { background: var(--charcoal); }
.hero--dark .hero__overlay {
  background:
    radial-gradient(1000px 520px at 85% -10%, rgba(198,167,105,.28), transparent 60%),
    radial-gradient(700px 420px at -10% 110%, rgba(198,167,105,.14), transparent 60%),
    linear-gradient(120deg, rgba(35,35,35,.97), rgba(43,43,43,.88));
}

/* ---------- Crown watermark & pattern ---------- */
.crown-watermark {
  position: absolute;
  pointer-events: none;
  color: var(--gold);
  opacity: .09;
  z-index: 0;
}
.crown-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='96' viewBox='0 0 96 96'%3E%3Cpath d='M30 58 L33 40 L42 50 L48 34 L54 50 L63 40 L66 58 Z M30 62 h36 v4 h-36 Z' fill='%23C6A769'/%3E%3C/svg%3E");
  background-size: 96px 96px;
}

/* ---------- Arch frames (molduras em arco) ---------- */
.arch {
  position: relative;
  border-radius: var(--radius-arch);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 3 / 4;
}
.arch--wide { aspect-ratio: 4 / 4.4; }
.arch::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(198, 167, 105, .55);
  border-radius: inherit;
  pointer-events: none;
}
.arch img { width: 100%; height: 100%; object-fit: cover; }
.arch iframe { width: 100%; height: 100%; border: 0; display: block; }

/* Placeholder interior (até chegarem as fotos reais) */
.ph {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  padding: 28px;
  background:
    radial-gradient(circle at 30% 20%, rgba(232,213,168,.5), transparent 60%),
    linear-gradient(160deg, var(--beige), var(--sand));
  color: var(--gold-dark);
}
.ph svg { width: 34px; height: 34px; opacity: .8; }
.ph span {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  line-height: 1.7;
  max-width: 230px;
  opacity: .85;
}
/* No hero, o placeholder fica atrás do overlay — suaviza para não competir com a copy */
.hero__bg .ph svg, .hero__bg .ph span { opacity: .3; }
.ph--dark {
  background:
    radial-gradient(circle at 30% 20%, rgba(198,167,105,.25), transparent 60%),
    linear-gradient(160deg, #3a3a3a, var(--charcoal-deep));
  color: var(--gold-light);
}

/* ---------- Cards ---------- */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.6vw, 30px);
}
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.6vw, 30px); }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2vw, 24px); }
@media (max-width: 900px) {
  .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .cards-3, .cards-2, .cards-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid rgba(198, 167, 105, .25);
  border-radius: 14px;
  padding: clamp(26px, 3.4vw, 40px) clamp(22px, 3vw, 32px);
  box-shadow: var(--shadow-card);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 167, 105, .6);
  box-shadow: var(--shadow-soft);
}
.card__icon {
  width: 46px; height: 46px;
  color: var(--gold);
  margin-bottom: 20px;
}
.card__icon svg { width: 100%; height: 100%; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .92rem; font-weight: 300; color: var(--ink-soft); }
.card .link-arrow { margin-top: 18px; font-size: .72rem; }

/* Card com foto (tratamentos) */
.card--photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.card--photo .card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  border-bottom: 1px solid rgba(198,167,105,.25);
}
.card--photo .card__media img { width: 100%; height: 100%; object-fit: cover; }
.card--photo .card__media .ph { gap: 8px; }
.card--photo .card__media .ph svg { width: 26px; height: 26px; }
.card--photo .card__body { padding: 24px 26px 30px; }

/* ---------- Feature split (texto + arco) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.split--reverse { grid-template-columns: .95fr 1.05fr; }
.split--reverse .split__media { order: -1; }
.split__media { max-width: 460px; margin-inline: auto; width: 100%; }
.split__content .eyebrow { margin-bottom: 18px; }
.split__content h2 { margin-bottom: 20px; }
.split__content .lead { margin-bottom: 26px; }
@media (max-width: 880px) {
  .split, .split--reverse { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media { max-width: 400px; }
}

/* ---------- Lista com ícone de coroa ---------- */
.crown-list { display: grid; gap: 14px; }
.crown-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-weight: 300;
  color: var(--ink-soft);
}
.crown-list li strong { color: var(--charcoal); font-weight: 600; }
.crown-list svg {
  width: 18px; height: 18px;
  flex: none;
  color: var(--gold);
  margin-top: 5px;
}
.on-dark .crown-list li { color: rgba(245,243,239,.8); }
.on-dark .crown-list li strong { color: var(--off-white); }

/* ---------- Carrossel ---------- */
.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: clamp(16px, 2.4vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 14px 4px 34px;
  scrollbar-width: none;
  cursor: grab;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.carousel__item {
  flex: 0 0 min(78vw, 320px);
  scroll-snap-align: center;
}
.carousel__item figcaption {
  margin-top: 16px;
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.on-dark .carousel__item figcaption { color: var(--gold-light); }
.carousel__nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 8px;
}
.carousel__btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s ease, color .3s ease;
}
.carousel__btn:hover { background: var(--gold); color: var(--off-white); }
.carousel__btn svg { width: 16px; height: 16px; }
.on-dark .carousel__btn { color: var(--gold-light); }
.on-dark .carousel__btn:hover { color: var(--charcoal); background: var(--gold); }

/* Página Facial e Corporal: molduras 4:5 (1080×1350, padrão Instagram) — foto inteira, sem corte */
.page-facial .card--photo .card__media { aspect-ratio: 4 / 5; }
.page-facial .carousel .arch {
  aspect-ratio: 4 / 5;
  border-radius: 18px;
}
.page-facial .carousel .arch::after { inset: 8px; border-radius: 12px; }

/* Carrossel compacto dentro de um split (1 foto por vez) */
.carousel--split .carousel__item { flex: 0 0 100%; }
.carousel--split .carousel__track { padding-bottom: 20px; }

/* ---------- Depoimentos ---------- */
.testimonial {
  flex: 0 0 min(84vw, 400px);
  scroll-snap-align: center;
  background: var(--white);
  border: 1px solid rgba(198,167,105,.25);
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial__stars { display: flex; gap: 4px; color: var(--gold); }
.testimonial__stars svg { width: 15px; height: 15px; }
.testimonial p {
  font-family: var(--font-sub);
  font-size: 1.12rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--charcoal);
}
.testimonial footer {
  margin-top: auto;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.testimonial footer span {
  display: block;
  margin-top: 3px;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--ink-soft);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 14px 26px;
  border: 1px solid rgba(198,167,105,.4);
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color .3s ease, transform .3s ease;
}
.google-badge:hover { border-color: var(--gold); transform: translateY(-2px); }
.google-badge .stars { color: var(--gold); letter-spacing: .1em; }

/* ---------- Bloco A Avaliação ---------- */
.avaliacao {
  position: relative;
  overflow: hidden;
}
.avaliacao__box {
  position: relative;
  background: var(--charcoal);
  border-radius: 24px;
  padding: clamp(44px, 7vw, 90px) clamp(26px, 6vw, 90px);
  overflow: hidden;
}
.avaliacao__box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 400px at 90% -20%, rgba(198,167,105,.3), transparent 60%),
    radial-gradient(500px 300px at 0% 120%, rgba(198,167,105,.16), transparent 60%);
  pointer-events: none;
}
.avaliacao__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: center;
}
@media (max-width: 880px) { .avaliacao__grid { grid-template-columns: 1fr; } }
.avaliacao__price {
  text-align: center;
  padding: clamp(30px, 4vw, 50px) clamp(24px, 3vw, 40px);
  border: 1px solid rgba(198,167,105,.5);
  border-radius: var(--radius-arch);
  background: rgba(198,167,105,.07);
}
.avaliacao__price .value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.2rem);
  color: var(--gold-light);
  line-height: 1;
}
.avaliacao__price .value sup { font-size: .4em; margin-right: 4px; }
.avaliacao__price .note {
  margin-top: 16px;
  font-size: .82rem;
  font-weight: 300;
  color: rgba(245,243,239,.8);
  line-height: 1.7;
}
.avaliacao__price .note strong { color: var(--gold-light); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; display: grid; gap: 14px; }
.faq details {
  background: var(--white);
  border: 1px solid rgba(198,167,105,.3);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color .3s ease;
}
.faq details[open] { border-color: var(--gold); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-sub);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform .3s ease;
  flex: none;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq__body {
  padding: 0 26px 24px;
  font-size: .94rem;
  font-weight: 300;
  color: var(--ink-soft);
}

/* ---------- Passos (linha do tempo) ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 4vw, 44px);
  position: relative;
  counter-reset: step;
}
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; text-align: center; padding-top: 10px; }
.step__num {
  width: 62px; height: 62px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-dark);
  background: var(--white);
  position: relative;
  z-index: 1;
}
.on-dark .step__num { background: transparent; color: var(--gold-light); }
.step h3 { margin-bottom: 10px; }
.step p { font-size: .92rem; font-weight: 300; color: var(--ink-soft); }
.on-dark .step p { color: rgba(245,243,239,.75); }
@media (min-width: 761px) {
  .steps::before {
    content: "";
    position: absolute;
    top: 41px; left: 16%; right: 16%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold) 15%, var(--gold) 85%, transparent);
    opacity: .5;
  }
}

/* ---------- Galeria mosaico ---------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}
.mosaic > * { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-card); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic > *:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mosaic > *:nth-child(4) { grid-row: span 2; }
@media (max-width: 760px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
}

/* ---------- Rodapé ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(245,243,239,.75);
  position: relative;
  overflow: hidden;
  padding: clamp(60px, 8vw, 90px) 0 0;
}
.footer .crown-watermark {
  right: -60px; bottom: -80px;
  width: 340px; height: 340px;
  opacity: .06;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 50px);
  padding-bottom: 54px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer__grid { grid-template-columns: 1fr; } }
.footer .brand__name { color: var(--off-white); }
.footer__tagline {
  font-family: var(--font-sub);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  margin-top: 16px;
  max-width: 260px;
  line-height: 1.5;
}
.footer h4 {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer li { margin-bottom: 12px; }
.footer a { font-size: .88rem; font-weight: 300; transition: color .3s ease; }
.footer a:hover { color: var(--gold-light); }
.footer address { font-style: normal; font-size: .88rem; font-weight: 300; line-height: 1.9; }
.footer__bottom {
  border-top: 1px solid rgba(198,167,105,.25);
  padding: 24px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .74rem;
  font-weight: 300;
  color: rgba(245,243,239,.5);
  position: relative;
  z-index: 1;
}

/* ---------- WhatsApp flutuante + barra mobile ---------- */
.wa-float {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px -10px rgba(37, 211, 102, .6);
  transition: transform .3s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(37, 211, 102, .5);
  animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse {
  0% { transform: scale(.9); opacity: 1; }
  100% { transform: scale(1.35); opacity: 0; }
}

.cta-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(43,43,43,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cta-bar .btn { width: 100%; }
@media (max-width: 760px) {
  .cta-bar { display: block; }
  .wa-float { bottom: 88px; }
  body { padding-bottom: 74px; }
}

/* ---------- Selo discreto ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  border: 1px solid rgba(198,167,105,.5);
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(245,243,239,.6);
}
.on-dark .chip { color: var(--gold-light); background: rgba(198,167,105,.08); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22, .61, .36, 1), transform .8s cubic-bezier(.22, .61, .36, 1);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Página de contato ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--white);
  border: 1px solid rgba(198,167,105,.3);
  border-radius: 16px;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-card);
}
.contact-card + .contact-card { margin-top: 24px; }
.contact-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding-block: 14px;
}
.contact-row + .contact-row { border-top: 1px solid rgba(198,167,105,.2); }
.contact-row svg { width: 20px; height: 20px; color: var(--gold); flex: none; margin-top: 4px; }
.contact-row strong { display: block; font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 4px; }
.contact-row p, .contact-row a { font-size: .95rem; font-weight: 300; color: var(--ink-soft); }
.contact-row a:hover { color: var(--gold-dark); }

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(198,167,105,.3);
}
.map-embed iframe { width: 100%; height: 420px; border: 0; display: block; }

/* Formulário */
.form-grid { display: grid; gap: 18px; }
.form-field label {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 8px;
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid rgba(198,167,105,.4);
  border-radius: 8px;
  background: var(--off-white);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--charcoal);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,167,105,.18);
}

/* ---------- Utilitários ---------- */
.center { text-align: center; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 48px; }
.mb-2 { margin-bottom: 32px; }
.stack > * + * { margin-top: 18px; }
