/* ==========================================================================
   Vellure Locações Estéticas — estilos
   Mobile-first. Paleta: azul-marinho, off-white, champagne, cinzas neutros.
   ========================================================================== */

:root {
  --navy-950: #0c1524;
  --navy-900: #111c2e;
  --navy-850: #182433; /* igual ao fundo da logo oficial */
  --navy-800: #1d2b40;
  --navy-700: #2a3a54;
  --gold: #dcc69c;
  --gold-soft: #e9dcc0;
  --gold-line: rgba(220, 198, 156, 0.45);
  --gold-ink: #8a6a36; /* dourado legível sobre fundo claro */
  --ivory: #f7f5f0;
  --paper: #fbfaf7;
  --white: #ffffff;
  --ink: #111c2e;
  --text: #3b4453;
  --muted: #5f6878;
  --line: #e4e0d6;
  --line-dark: rgba(255, 255, 255, 0.12);
  --error: #a3302a;
  --success: #2f6b4f;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --container: 1200px;
  --gutter: 20px;
  --header-h: 68px;
  --radius: 4px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --section-y: 88px;
}

@media (min-width: 768px) {
  :root { --gutter: 40px; --section-y: 120px; }
}
@media (min-width: 1024px) {
  :root { --header-h: 84px; --section-y: 150px; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; color: var(--ink); font-weight: 500; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 2px solid var(--gold-ink); outline-offset: 3px; border-radius: 2px; }
.on-dark :focus-visible, .site-header :focus-visible, .site-footer :focus-visible { outline-color: var(--gold); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--gold); color: var(--navy-950); padding: 10px 16px; font-weight: 600; font-size: 14px;
}
.skip-link:focus { top: 12px; }

.sr-only {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Layout ---------- */
.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: var(--section-y) 0; position: relative; }
.section--ivory { background: var(--ivory); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy-900); color: rgba(255, 255, 255, 0.78); }
.section--navy h2, .section--navy h3 { color: var(--white); }

/* ---------- Tipografia ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-ink); margin-bottom: 22px;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }
.on-dark .eyebrow, .section--navy .eyebrow { color: var(--gold); }

.h-display {
  font-family: var(--serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em;
  font-size: clamp(2.35rem, 8vw, 4.5rem);
}
.h-section {
  font-family: var(--serif); font-weight: 500; line-height: 1.1; letter-spacing: -0.005em;
  font-size: clamp(1.9rem, 5.2vw, 3.05rem);
}
.h-card { font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; }
.lead { font-size: 1.075rem; line-height: 1.75; color: var(--muted); max-width: 40em; }
.section--navy .lead { color: rgba(255, 255, 255, 0.72); }
.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow::after { content: ''; width: 28px; height: 1px; background: currentColor; opacity: 0.7; }
.section-head .lead { margin-top: 22px; }
.section-head--center .lead { margin-left: auto; margin-right: auto; }
@media (min-width: 1024px) { .section-head { margin-bottom: 80px; } }

.note {
  font-size: 13.5px; line-height: 1.6; color: var(--muted);
  padding-left: 16px; border-left: 1px solid var(--gold-line);
}
.section--navy .note { color: rgba(255, 255, 255, 0.6); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  min-height: 54px; padding: 16px 30px; border: 1px solid transparent; border-radius: var(--radius);
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; line-height: 1.2;
  cursor: pointer; text-align: center;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn svg { width: 16px; height: 16px; flex: none; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { background: var(--navy-900); color: var(--white); }
.btn--primary:hover { background: var(--navy-700); box-shadow: 0 10px 30px -12px rgba(17, 28, 46, .55); }
.btn--gold { background: var(--gold); color: var(--navy-950); }
.btn--gold:hover { background: var(--gold-soft); box-shadow: 0 10px 30px -12px rgba(220, 198, 156, .6); }
.btn--ghost { border-color: rgba(17, 28, 46, 0.25); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--white); }
.btn--ghost-light { border-color: rgba(255, 255, 255, 0.3); color: var(--white); background: transparent; }
.btn--ghost-light:hover { border-color: var(--gold); color: var(--navy-950); background: var(--gold); }
.btn--block { width: 100%; }
.btn-row { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 560px) { .btn-row { flex-direction: row; flex-wrap: wrap; } }

.link-arrow {
  display: inline-flex; align-items: center; gap: 10px; font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink);
  padding-bottom: 6px; border-bottom: 1px solid var(--gold-line); transition: border-color .3s, gap .3s var(--ease);
}
.link-arrow:hover { border-color: currentColor; gap: 14px; }
.section--navy .link-arrow { color: var(--gold); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  background: var(--navy-850); border-bottom: 1px solid rgba(220, 198, 156, 0.14);
  transition: box-shadow .4s var(--ease);
}
.site-header.is-scrolled { box-shadow: 0 10px 30px -18px rgba(0, 0, 0, .6); }
.site-header .container { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: block; flex: none; }
.brand img {
  height: 40px; width: auto;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 3%, #000 97%, transparent 100%);
}
@media (min-width: 1024px) { .brand img { height: 48px; } }

.nav { display: none; }
.nav a {
  position: relative; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: rgba(255, 255, 255, 0.78);
  padding: 8px 0; transition: color .3s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.nav a:hover, .nav a[aria-current='true'] { color: var(--white); }
.nav a:hover::after, .nav a[aria-current='true']::after { transform: scaleX(1); }
.header-cta { display: none; }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 46px; height: 46px; margin-right: -10px;
  background: none; border: 0; cursor: pointer; color: var(--white);
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  display: block; width: 24px; height: 1.5px; background: currentColor; position: relative; transition: transform .35s var(--ease), background-color .2s;
}
.menu-toggle span::before, .menu-toggle span::after { content: ''; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-open .menu-toggle span { background: transparent; }
.menu-open .menu-toggle span::before { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99; background: var(--navy-900);
  padding: 32px var(--gutter) 40px; display: flex; flex-direction: column; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility 0s linear .35s;
}
.menu-open .mobile-menu { opacity: 1; visibility: visible; transform: none; transition-delay: 0s; }
.menu-open { overflow: hidden; }
.mobile-menu nav a {
  display: block; font-family: var(--serif); font-size: 26px; line-height: 1.25; color: var(--white);
  padding: 12px 0; border-bottom: 1px solid var(--line-dark);
}
.mobile-menu .btn { margin-top: 32px; }
.mobile-menu__meta { margin-top: 28px; font-size: 14px; color: rgba(255, 255, 255, .6); line-height: 1.9; }
.mobile-menu__meta a { color: var(--gold); font-size: 15px; }

@media (min-width: 1100px) {
  .nav { display: flex; gap: 30px; }
  .header-cta { display: inline-flex; min-height: 44px; padding: 12px 20px; font-size: 11.5px; }
  .menu-toggle, .mobile-menu { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: calc(var(--header-h) + 48px) 0 64px; background: var(--ivory); overflow: hidden;
}
.hero::before { /* grade técnica sutil */
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(17, 28, 46, .045) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 28, 46, .045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at 75% 45%, #000 0%, transparent 65%);
          mask-image: radial-gradient(ellipse at 75% 45%, #000 0%, transparent 65%);
}
.hero__grid { position: relative; display: grid; gap: 40px; align-items: center; }
.hero__title { margin-bottom: 26px; }
.hero__title em { font-style: italic; color: var(--gold-ink); }
.hero__sub { font-size: 1.08rem; line-height: 1.7; color: var(--muted); max-width: 34em; margin-bottom: 36px; }
.hero__meta { display: grid; gap: 14px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero__meta li { display: flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 500; color: var(--ink); letter-spacing: .01em; }
.hero__meta svg { width: 20px; height: 20px; color: var(--gold-ink); flex: none; }

.hero__visual { position: relative; display: grid; place-items: center; max-width: 560px; width: 100%; margin: 0 auto; }
.hero__visual::before, .hero__visual::after {
  content: ''; position: absolute; border-radius: 50%; border: 1px solid var(--gold-line); pointer-events: none;
}
.hero__visual::before { width: 92%; aspect-ratio: 1; }
.hero__visual::after { width: 70%; aspect-ratio: 1; border-color: rgba(17, 28, 46, .1); }
.hero__halo { position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, #fff 0%, rgba(255,255,255,.7) 45%, rgba(255,255,255,0) 70%); }
.hero__visual img { position: relative; width: 100%; mix-blend-mode: multiply; }
.hero__tag {
  position: absolute; left: 0; bottom: 8%; z-index: 2;
  background: var(--navy-900); color: var(--white); padding: 14px 18px; border-radius: var(--radius);
  box-shadow: 0 20px 40px -20px rgba(12, 21, 36, .6);
}
.hero__tag small { display: block; font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.hero__tag strong { font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: .01em; }
@media (max-width: 599px) {
  .hero__tag { bottom: 0; padding: 10px 14px; }
  .hero__tag strong { font-size: 17px; }
}

@media (min-width: 1024px) {
  .hero { padding: calc(var(--header-h) + 64px) 0 96px; min-height: min(100vh, 940px); display: flex; align-items: center; }
  .hero__grid { grid-template-columns: 1.05fr .95fr; gap: 56px; }
  .hero__meta { grid-template-columns: auto auto; gap: 32px; justify-content: start; }
}

/* ---------- Propósito ---------- */
.purpose { display: grid; gap: 48px; }
.purpose__title { font-size: clamp(2rem, 5.6vw, 3.5rem); line-height: 1.12; }
.purpose__title em { font-style: italic; color: var(--gold-ink); }
.purpose__text { font-size: 1.1rem; line-height: 1.85; color: var(--text); }
.purpose__text p:last-child {
  margin-top: 1.6em; font-family: var(--serif); font-size: 1.4rem; line-height: 1.4; color: var(--ink); font-style: italic;
}
.purpose__mark { width: 56px; height: 56px; margin-bottom: 36px; }
@media (min-width: 1024px) {
  .purpose { grid-template-columns: 1fr 1fr; gap: 96px; align-items: start; }
  .purpose__head { position: sticky; top: calc(var(--header-h) + 60px); }
}

/* ---------- Diferenciais ---------- */
.features { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.feature {
  position: relative; background: var(--white); padding: 40px 30px 44px; overflow: hidden;
  transition: background-color .5s var(--ease);
}
.feature::after {
  content: ''; position: absolute; left: 0; top: 0; height: 2px; width: 100%; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform .6s var(--ease);
}
.feature:hover::after { transform: scaleX(1); }
.feature__num { font-family: var(--serif); font-size: 15px; color: var(--gold-ink); letter-spacing: .06em; }
.feature__icon { width: 44px; height: 44px; margin: 22px 0 26px; color: var(--navy-900); }
.feature h3 { margin-bottom: 14px; color: var(--ink); }
.feature p { color: var(--muted); font-size: 15.5px; }
@media (min-width: 700px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .features { grid-template-columns: repeat(3, 1fr); } .feature { padding: 52px 44px 56px; } }

/* ---------- Locação ---------- */
.rental { display: grid; gap: 56px; }
.periods { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.period {
  position: relative; border: 1px solid var(--line-dark); border-radius: var(--radius); padding: 26px 22px 24px;
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,0));
  transition: border-color .4s var(--ease), transform .4s var(--ease), background-color .4s;
}
.period:hover { border-color: var(--gold-line); transform: translateY(-3px); }
.period__value { display: flex; align-items: baseline; gap: 8px; font-family: var(--serif); color: var(--white); line-height: 1; }
.period__value strong { font-size: clamp(3rem, 10vw, 4.4rem); font-weight: 400; }
.period__value span { font-size: 13px; font-family: var(--sans); letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.period__bar { margin-top: 22px; height: 2px; background: rgba(255,255,255,.1); border-radius: 2px; overflow: hidden; }
.period__bar i { display: block; height: 100%; background: var(--gold); width: var(--w); }
.period__label { margin-top: 12px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.rental__actions { margin-top: 40px; }
@media (min-width: 1024px) {
  .rental { grid-template-columns: .9fr 1.1fr; gap: 96px; align-items: center; }
  .periods { gap: 18px; }
  .period { padding: 34px 30px 30px; }
}

/* ---------- Como funciona ---------- */
.steps { display: grid; gap: 0; counter-reset: step; position: relative; }
.step { position: relative; padding: 0 0 44px 64px; }
.step:last-child { padding-bottom: 0; }
.step::before { /* linha vertical */
  content: ''; position: absolute; left: 21px; top: 44px; bottom: 0; width: 1px; background: var(--line);
}
.step:last-child::before { display: none; }
.step__num {
  position: absolute; left: 0; top: 0; width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--gold-line); background: var(--white); display: grid; place-items: center;
  font-family: var(--serif); font-size: 17px; color: var(--ink); transition: background-color .4s, color .4s, border-color .4s;
}
.step:hover .step__num { background: var(--navy-900); color: var(--gold); border-color: var(--navy-900); }
.step h3 { margin: 10px 0 10px; }
.step p { color: var(--muted); font-size: 15.5px; max-width: 26em; }
@media (min-width: 1024px) {
  .steps { grid-template-columns: repeat(5, 1fr); gap: 28px; }
  .step { padding: 0; }
  .step::before { left: 56px; right: -28px; top: 22px; bottom: auto; width: auto; height: 1px; }
  .step__num { position: relative; margin-bottom: 30px; }
  .step h3 { margin-top: 0; }
}

/* ---------- Equipamento ---------- */
.equipment { display: grid; gap: 48px; align-items: center; }
.equipment__media { position: relative; }
.equipment__media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--radius); }
.equipment__media::after {
  content: ''; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold-line); border-radius: var(--radius); z-index: -1;
}
.equipment__media { z-index: 0; }
.equipment__sub { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 3.4vw, 1.7rem); color: var(--gold); margin: 14px 0 26px; line-height: 1.25; }
.specs { margin-top: 40px; border-top: 1px solid var(--line-dark); }
.specs div { display: grid; grid-template-columns: 1fr; gap: 4px; padding: 16px 0; border-bottom: 1px solid var(--line-dark); }
.specs dt { font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.5); }
.specs dd { margin: 0; color: var(--white); font-size: 15px; }
.specs dd.is-pending { color: rgba(255,255,255,.55); font-style: italic; }
@media (min-width: 560px) { .specs div { grid-template-columns: 200px 1fr; gap: 20px; } }
@media (min-width: 1024px) { .equipment { grid-template-columns: 1fr 1fr; gap: 104px; } }

/* ---------- Treinamento ---------- */
.training { display: grid; gap: 48px; }
.training__card {
  position: relative; background: var(--navy-900); color: rgba(255,255,255,.78); padding: 44px 30px; border-radius: var(--radius); overflow: hidden;
}
.training__card::before {
  content: ''; position: absolute; right: -90px; top: -90px; width: 260px; height: 260px; border-radius: 50%; border: 1px solid var(--gold-line);
}
.training__card::after {
  content: ''; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px; border-radius: 50%; border: 1px solid rgba(220,198,156,.2);
}
.badge {
  display: inline-block; font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--navy-950); background: var(--gold); padding: 9px 14px; border-radius: 2px;
}
.training__card h3 { font-family: var(--serif); font-size: clamp(1.6rem, 4.4vw, 2.1rem); font-weight: 400; margin: 26px 0 14px; color: var(--white); line-height: 1.15; }
.training__list { display: grid; gap: 14px; margin: 26px 0 0; }
.training__list li { display: flex; gap: 14px; font-size: 15px; }
.training__list svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 4px; }
@media (min-width: 1024px) {
  .training { grid-template-columns: 1.05fr .95fr; gap: 96px; align-items: center; }
  .training__card { padding: 60px 52px; }
}

/* ---------- Para quem ---------- */
.audience { display: grid; grid-template-columns: 1fr; border-top: 1px solid var(--line); }
.audience li {
  display: flex; align-items: center; gap: 18px; padding: 22px 4px; border-bottom: 1px solid var(--line);
  font-family: var(--serif); font-size: clamp(1.25rem, 3.2vw, 1.6rem); color: var(--ink); line-height: 1.25;
  transition: padding-left .45s var(--ease), color .3s;
}
.audience li span { font-family: var(--sans); font-size: 12px; letter-spacing: .12em; color: var(--gold-ink); min-width: 26px; }
.audience li:hover { padding-left: 14px; }
.audience-note { margin-top: 40px; max-width: 640px; }
@media (min-width: 900px) {
  .audience { grid-template-columns: 1fr 1fr; column-gap: 64px; }
}

/* ---------- Filosofia ---------- */
.philosophy { position: relative; background: var(--navy-950); color: rgba(255,255,255,.74); overflow: hidden; }
.philosophy__rings { position: absolute; left: 50%; top: 50%; width: 1100px; max-width: 180vw; aspect-ratio: 1; transform: translate(-50%, -50%); pointer-events: none; }
.philosophy__rings circle { fill: none; stroke: var(--gold); }
.philosophy__inner { position: relative; max-width: 900px; margin: 0 auto; text-align: center; }
.philosophy__quote {
  font-family: var(--serif); font-weight: 500; color: var(--white); line-height: 1.08;
  font-size: clamp(2.2rem, 7vw, 4.4rem); letter-spacing: -.01em;
}
.philosophy__quote em { display: block; font-style: italic; color: var(--gold); }
.philosophy__body { max-width: 620px; margin: 56px auto 0; font-size: 1.08rem; line-height: 1.9; }
.philosophy__body p:last-child { margin-top: 1.5em; font-family: var(--serif); font-size: 1.35rem; line-height: 1.45; color: var(--white); font-style: italic; }
.philosophy__sep { width: 1px; height: 64px; margin: 48px auto 0; background: linear-gradient(var(--gold), transparent); }

/* ---------- Depoimentos ---------- */
.reviews { display: grid; gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px 30px; }
.review-card blockquote { margin: 0 0 22px; font-family: var(--serif); font-size: 1.35rem; line-height: 1.45; color: var(--ink); }
.review-card cite { font-style: normal; font-size: 14px; color: var(--muted); }
.review-card cite strong { display: block; color: var(--ink); font-weight: 600; }
.reviews-empty {
  display: grid; gap: 22px; justify-items: center; text-align: center;
  border: 1px dashed var(--gold-line); border-radius: var(--radius); padding: 56px 24px; background: var(--white);
}
.reviews-empty svg { width: 52px; height: 52px; }
.reviews-empty p { font-family: var(--serif); font-size: clamp(1.25rem, 3.4vw, 1.6rem); color: var(--ink); line-height: 1.35; margin: 0; }
.reviews-empty small { font-size: 14px; color: var(--muted); max-width: 30em; }
@media (min-width: 900px) { .reviews { grid-template-columns: repeat(3, 1fr); } .reviews-empty { padding: 80px 40px; } }

/* ---------- Galeria ---------- */
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery__item { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--ivory); aspect-ratio: 1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item--contain img { object-fit: contain; padding: 8%; mix-blend-mode: multiply; }
.gallery__item figcaption {
  position: absolute; left: 12px; bottom: 12px; font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(255,255,255,.92); color: var(--ink); padding: 7px 10px; border-radius: 2px;
}
.gallery__item--pending {
  display: grid; place-items: center; text-align: center; border: 1px solid var(--line); background: var(--paper);
}
.gallery__item--pending .gp { display: grid; gap: 10px; justify-items: center; padding: 16px; }
.gallery__item--pending svg { width: 34px; height: 34px; opacity: .8; }
.gallery__item--pending strong { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); font-weight: 600; }
.gallery__item--pending span { font-size: 12.5px; color: var(--muted); }
@media (min-width: 900px) {
  .gallery { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.gallery__item--wide { grid-column: span 2; aspect-ratio: 2 / 1; }

/* ---------- Região ---------- */
.region { display: grid; gap: 56px; align-items: center; }
.region__graphic { width: 100%; max-width: 480px; margin: 0 auto; }
.region__graphic .ring { fill: none; stroke: var(--gold); }
.region__graphic text { font-family: var(--sans); fill: rgba(255,255,255,.75); font-size: 11px; letter-spacing: .16em; }
.region__cities { margin-top: 36px; padding: 24px; border: 1px solid var(--line-dark); border-radius: var(--radius); }
.region__cities h3 { font-family: var(--sans); font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 10px; }
.region__cities p { font-size: 15px; }
.city-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.city-list li { border: 1px solid var(--line-dark); border-radius: 40px; padding: 6px 14px; font-size: 14px; color: var(--white); }
@media (min-width: 1024px) { .region { grid-template-columns: 1fr 1fr; gap: 96px; } }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 48px; }
.faq__list { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 24px 0; font-family: var(--serif); font-size: clamp(1.1rem, 3vw, 1.3rem); color: var(--ink); line-height: 1.35;
  transition: color .3s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--gold-ink); }
.faq__icon { position: relative; width: 32px; height: 32px; flex: none; border: 1px solid var(--line); border-radius: 50%; transition: background-color .35s, border-color .35s, transform .45s var(--ease); }
.faq__icon::before, .faq__icon::after { content: ''; position: absolute; left: 50%; top: 50%; width: 11px; height: 1px; background: var(--ink); transform: translate(-50%, -50%); transition: transform .4s var(--ease), background-color .3s; }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { background: var(--navy-900); border-color: var(--navy-900); }
.faq__item[open] .faq__icon::before, .faq__item[open] .faq__icon::after { background: var(--gold); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq__answer { padding: 0 48px 28px 0; color: var(--muted); font-size: 15.5px; }
.faq__item[open] .faq__answer { animation: faqIn .45s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
@media (min-width: 1024px) {
  .faq { grid-template-columns: .8fr 1.2fr; gap: 96px; align-items: start; }
  .faq__head { position: sticky; top: calc(var(--header-h) + 60px); }
}

/* ---------- CTA final ---------- */
.final-cta { position: relative; background: var(--navy-850); padding: var(--section-y) 0; overflow: hidden; text-align: center; color: rgba(255,255,255,.75); }
.final-cta__mark { width: 72px; height: 72px; margin: 0 auto 36px; }
.final-cta h2 { color: var(--white); font-family: var(--serif); font-weight: 500; font-size: clamp(2.2rem, 7vw, 4.2rem); line-height: 1.1; max-width: 14em; margin: 0 auto; }
.final-cta h2 em { color: var(--gold); font-style: italic; }
.final-cta p { font-size: 1.1rem; max-width: 34em; margin: 26px auto 44px; }
.final-cta .btn-row { justify-content: center; }

/* ---------- Contato / Formulário ---------- */
.contact { display: grid; gap: 56px; }
.contact__channels { display: grid; gap: 0; margin-top: 40px; border-top: 1px solid var(--line); }
.channel { display: flex; align-items: center; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); transition: padding-left .4s var(--ease); }
.channel:hover { padding-left: 8px; }
.channel__icon { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--gold-line); display: grid; place-items: center; color: var(--navy-900); flex: none; }
.channel__icon svg { width: 20px; height: 20px; }
.channel small { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.channel strong { font-weight: 500; color: var(--ink); font-size: 16px; word-break: break-word; }

.form { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 22px; box-shadow: 0 40px 80px -60px rgba(17, 28, 46, .35); }
.form__grid { display: grid; gap: 20px; }
.field { display: grid; gap: 8px; }
.field label, .field legend { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); }
.field label .opt { font-weight: 400; letter-spacing: .02em; text-transform: none; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 14px 16px; border: 1px solid #d8d3c7; border-radius: var(--radius);
  background: var(--paper); font-size: 16px; color: var(--ink); transition: border-color .3s, background-color .3s, box-shadow .3s;
  -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23111c2e' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: #bdb5a4; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--navy-900); background: var(--white); box-shadow: 0 0 0 3px rgba(17, 28, 46, .08); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--error); background: #fdf7f6; }
.field__error { font-size: 13px; color: var(--error); min-height: 0; }
.field__error:empty { display: none; }
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: 12px; }
.field--check input { width: 20px; height: 20px; min-height: 0; padding: 0; margin: 3px 0 0; accent-color: var(--navy-900); -webkit-appearance: checkbox; appearance: auto; }
.field--check label { font-size: 14px; font-weight: 400; letter-spacing: 0; text-transform: none; color: var(--text); line-height: 1.55; }
.field--check label a { text-decoration: underline; text-underline-offset: 3px; }
.field--check .field__error { grid-column: 1 / -1; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; border: 0; padding: 0; margin: 0; }
.chips legend { margin-bottom: 10px; padding: 0; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; inset: 0; margin: 0; cursor: pointer; }
.chip span {
  display: inline-flex; align-items: center; min-height: 46px; padding: 10px 18px; border: 1px solid #d8d3c7; border-radius: 40px;
  font-size: 14px; color: var(--ink); background: var(--paper); cursor: pointer; transition: all .3s var(--ease);
}
.chip input:hover + span { border-color: var(--navy-900); }
.chip input:checked + span { background: var(--navy-900); color: var(--white); border-color: var(--navy-900); }
.chip input:focus-visible + span { outline: 2px solid var(--gold-ink); outline-offset: 2px; }
.field.has-error .chip span { border-color: var(--error); }

.form__footer { margin-top: 28px; display: grid; gap: 16px; }
.form__hint { font-size: 13px; color: var(--muted); text-align: center; }
.form__status { display: none; padding: 18px 20px; border-radius: var(--radius); font-size: 15px; line-height: 1.6; }
.form__status.is-visible { display: block; }
.form__status--success { background: #eef5f0; color: var(--success); border: 1px solid #cfe3d6; }
.form__status--error { background: #fbeeed; color: var(--error); border: 1px solid #f0d2cf; }
.form__status a { text-decoration: underline; font-weight: 600; }
.btn[aria-busy='true'] { opacity: .7; pointer-events: none; }

@media (min-width: 640px) {
  .form { padding: 44px 40px; }
  .form__grid { grid-template-columns: 1fr 1fr; column-gap: 18px; row-gap: 22px; }
  .field--full { grid-column: 1 / -1; }
}
@media (min-width: 1024px) {
  .contact { grid-template-columns: .8fr 1.2fr; gap: 88px; align-items: start; }
  .contact__intro { position: sticky; top: calc(var(--header-h) + 60px); }
  .form { padding: 52px 48px; }
}

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-850); color: rgba(255,255,255,.62); padding: 80px 0 110px; font-size: 14.5px; }
.footer__grid { display: grid; gap: 44px; }
.footer__brand img {
  width: 260px; max-width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
.footer__tagline { font-family: var(--serif); font-style: italic; font-size: 1.2rem; line-height: 1.45; color: var(--white); margin: 26px 0 16px; max-width: 20em; }
.site-footer h3 { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer__links li, .footer__contact li { margin-bottom: 10px; }
.site-footer a { transition: color .3s; }
.site-footer a:hover { color: var(--white); }
.footer__bottom { margin-top: 64px; padding-top: 28px; border-top: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: 14px; font-size: 13px; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 24px; }
@media (min-width: 768px) {
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; gap: 56px; }
  .footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 90; width: 58px; height: 58px; border-radius: 50%;
  display: grid; place-items: center; background: #1f9d55; color: #fff;
  box-shadow: 0 14px 30px -10px rgba(12, 21, 36, .55), 0 0 0 4px rgba(255,255,255,.9);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 20px 36px -12px rgba(12, 21, 36, .6), 0 0 0 4px rgba(255,255,255,.95); }
.wa-float__label {
  position: absolute; right: 70px; white-space: nowrap; background: var(--navy-900); color: var(--white);
  font-size: 13px; padding: 9px 14px; border-radius: var(--radius); opacity: 0; transform: translateX(6px);
  pointer-events: none; transition: opacity .3s, transform .3s var(--ease);
}
.wa-float:hover .wa-float__label, .wa-float:focus-visible .wa-float__label { opacity: 1; transform: none; }
@media (min-width: 1024px) { .wa-float { right: 28px; bottom: 28px; width: 62px; height: 62px; } }

/* ---------- Páginas legais ---------- */
.legal { padding: calc(var(--header-h) + 72px) 0 var(--section-y); background: var(--paper); }
.legal .container { max-width: 820px; }
.legal h1 { font-family: var(--serif); font-size: clamp(2.4rem, 7vw, 3.6rem); line-height: 1.1; margin-bottom: 28px; }
.legal h2 { font-family: var(--serif); font-size: 1.7rem; margin: 40px 0 12px; }
.placeholder-box { border: 1px dashed var(--gold-ink); background: #fbf6ec; padding: 18px 20px; border-radius: var(--radius); color: var(--ink); font-size: 15px; margin-bottom: 32px; }

/* ---------- Reveal ao scroll ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .hero .reveal { transition-duration: 1.1s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
  .js .reveal { opacity: 1; transform: none; }
}
