/* Luméa Cílios — Design System */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --bg: #F8F5F0;
  --bg-elevated: #FFFCFA;
  --bg-muted: #EEE5D9;
  --ink: #302A26;
  --ink-soft: #66564A;
  --ink-mute: #8A8178;
  --line: #E4D9CC;
  --brown: #66564A;
  --brown-deep: #3F352E;
  --gold: #C8A77A;
  --gold-soft: #D9C4A5;
  --success: #4A7C59;
  --danger: #A65D57;
  --warning: #B0893E;
  --radius: 8px;
  --radius-sm: 6px;
  --shadow: 0 12px 40px rgba(42, 38, 35, 0.06);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --nav-h: 72px;
  --bottom-nav: 68px;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  background: #2A2623;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body > main { flex: 1 0 auto; }
body > .site-footer { flex-shrink: 0; }
h1,h2,h3,h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0 0 .65rem;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1rem; color: var(--ink-soft); font-size: 1rem; }
.section { padding: 3.75rem 0; }
@media (min-width: 768px) {
  .section { padding: 5.5rem 0; }
}
.section-tight { padding: 3.5rem 0; }
.container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
@media (min-width: 768px) {
  .container { width: min(100% - 3rem, var(--max)); }
}
.eyebrow {
  display: inline-block;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
  margin-bottom: 1rem;
}
.lead { font-size: 1.08rem; max-width: 34rem; line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  min-height: 48px; padding: .8rem 1.5rem;
  border-radius: 6px; border: 1px solid transparent;
  font-weight: 500; font-size: .92rem; cursor: pointer;
  transition: transform .25s ease, background .25s ease, border-color .25s ease, color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.98); }
.btn-primary { background: var(--ink); color: #FBF8F4; }
.btn-primary:hover { background: var(--brown-deep); }
.btn-secondary { background: transparent; border-color: rgba(255,255,255,.4); color: inherit; }
.btn-secondary:hover { border-color: var(--gold); }
.section-light .btn-secondary,
.section-cream .btn-secondary,
.section-sand .btn-secondary {
  border-color: var(--line); color: var(--ink);
}
.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-ghost { background: transparent; color: var(--brown); padding-inline: .5rem; }
.btn-block { width: 100%; }
.btn-sm { min-height: 38px; padding: .45rem 1rem; font-size: .84rem; border-radius: 5px; }
.btn-nav { min-height: 44px; padding: .65rem 1.25rem; }
.main-panel .btn-secondary {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}
.main-panel .btn-secondary:hover {
  border-color: var(--ink);
  background: #fff;
}
.main-panel .btn-danger {
  background: #fff;
  border: 1px solid #b54a4a;
  color: #b54a4a;
}
.main-panel .btn-danger:hover {
  background: #b54a4a;
  color: #fff;
}
.table-actions {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

/* Forms */
.form-grid { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 720px) {
  .form-row.cols-2 { grid-template-columns: 1fr 1fr; }
}
label { display: block; font-size: .82rem; color: var(--ink-mute); margin-bottom: .35rem; }
.input, .select, .textarea {
  width: 100%; background: var(--bg-elevated); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: .85rem 1rem; outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.input:focus, .select:focus, .textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,165,116,.2);
}
.textarea { min-height: 110px; resize: vertical; }

/* Cards / surfaces */
.surface {
  background: rgba(255,252,250,.82);
  border: 1px solid rgba(226,216,206,.8);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
}
.card-soft {
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card-soft:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.price { font-family: var(--font-display); font-size: 1.5rem; color: var(--ink); }
.price-old { font-size: .9rem; color: var(--ink-mute); text-decoration: line-through; margin-left: .4rem; }
.badge {
  display: inline-flex; align-items: center;
  padding: .2rem .55rem; border-radius: 999px;
  font-size: .7rem; letter-spacing: .04em; text-transform: uppercase;
  background: var(--bg-muted); color: var(--brown-deep);
}
.badge-success { background: rgba(74,124,89,.12); color: var(--success); }
.badge-danger { background: rgba(166,93,87,.12); color: var(--danger); }
.badge-warn { background: rgba(176,137,62,.15); color: var(--warning); }

/* Alerts */
.alert {
  padding: .9rem 1rem; border-radius: var(--radius-sm); margin-bottom: 1rem;
  border: 1px solid var(--line); background: var(--bg-elevated);
}
.alert-error { border-color: rgba(166,93,87,.35); background: rgba(166,93,87,.08); color: var(--danger); }
.alert-success { border-color: rgba(74,124,89,.35); background: rgba(74,124,89,.08); color: var(--success); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(247,243,239,.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,216,206,.7);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: min(100% - 2rem, var(--max)); margin: 0 auto; }
.logo {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 500;
  letter-spacing: .02em;
}
.logo span { color: var(--gold); }
.nav-desktop { display: none; gap: 1.4rem; align-items: center; }
.nav-desktop a { font-size: .9rem; color: var(--ink-soft); }
.nav-desktop a:hover { color: var(--ink); }
@media (min-width: 900px) {
  .nav-desktop { display: flex; }
  .menu-toggle { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(44,42,40,.15) 0%, rgba(44,42,40,.55) 100%),
    radial-gradient(circle at 70% 30%, rgba(196,165,116,.35), transparent 45%),
    linear-gradient(135deg, #3a342f 0%, #6d5b4a 45%, #c4a574 100%);
}
.hero-with-image .hero-media {
  background: #2c2a28;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(44,42,40,.25) 0%, rgba(44,42,40,.72) 100%),
    linear-gradient(90deg, rgba(44,42,40,.45) 0%, transparent 55%);
}
.hero-media::after {
  content: none;
}
.hero-with-image .hero-media::after { content: none; }
.hero-content {
  position: relative; z-index: 1;
  padding: 3.5rem 0 4rem;
  color: #FBF8F4;
  animation: rise .8s ease both;
  max-width: 40rem;
}
.hero-content p,
.hero-lead,
.hero-desc { color: rgba(251,248,244,.88); max-width: 28rem; }
.hero-content .eyebrow { color: var(--gold-soft); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.5rem; }
.hero .btn-secondary { border-color: rgba(251,248,244,.35); color: #FBF8F4; }

.media-thumb {
  aspect-ratio: 4/3;
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: var(--bg-muted);
}
.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.card-soft:hover .media-thumb img { transform: scale(1.04); }
.media-round {
  aspect-ratio: 1;
  border-radius: 50%;
  width: 140px;
  margin: 0 auto 1rem;
}
.gallery-grid {
  display: grid;
  gap: .85rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}
.gallery-item {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-muted);
}
.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}
.gallery-item figcaption {
  padding: .55rem .7rem;
  font-size: .82rem;
  color: var(--ink-soft);
  background: var(--bg-elevated);
}
.section-muted {
  background: rgba(237, 230, 222, .45);
}
.cta-band-photo {
  background-size: cover !important;
  background-position: center !important;
}
.location-block {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .location-block { grid-template-columns: 1.1fr .9fr; }
}
.location-visual { margin: 0; aspect-ratio: 16/10; }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Grids */
.grid-3 { display: grid; gap: 1.25rem; }
.grid-4 { display: grid; gap: 1.25rem; }
@media (min-width: 700px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.service-card .meta { display: flex; justify-content: space-between; align-items: end; gap: 1rem; margin-top: 1rem; }
.thumb {
  aspect-ratio: 4/3; border-radius: 12px; margin-bottom: 1rem;
  background: linear-gradient(145deg, #d9cfc4, #b7a48c 50%, #8b7355);
  position: relative; overflow: hidden;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.15), transparent 50%);
  pointer-events: none;
}
.thumb.alt { background: linear-gradient(160deg, #cfc3b4, #9a8570 60%, #5c4b3a); }
.media-thumb + .thumb::after,
.media-thumb.thumb::after { content: none; }

/* Diff / testimonials */
.diff-list { display: grid; gap: 1rem; }
@media (min-width: 800px) { .diff-list { grid-template-columns: repeat(3, 1fr); } }
.diff-item { padding: 1.5rem; border-top: 1px solid var(--gold); }
.quote {
  font-family: var(--font-display); font-size: 1.35rem; color: var(--ink);
  font-style: italic; margin-bottom: .75rem;
}

/* CTA band */
.cta-band {
  margin: 2rem 0 0;
  padding: 3rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, #2c2a28, #4a4036 60%, #6e5a42);
  color: #FBF8F4;
  border-radius: var(--radius);
}
.cta-band p { color: rgba(251,248,244,.8); margin-inline: auto; }

/* Footer */
.site-footer {
  padding: 3rem 0 calc(2rem + var(--bottom-nav));
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer a { color: var(--ink-soft); }
.site-footer h4 { font-family: var(--font-body); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-mute); }

/* Bottom nav PWA */
.bottom-nav {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  height: var(--bottom-nav);
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: rgba(255,252,250,.94);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  padding-bottom: env(safe-area-inset-bottom);
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: .2rem; font-size: .65rem; color: var(--ink-mute);
}
.bottom-nav a.active, .bottom-nav a:hover { color: var(--brown-deep); }
.bottom-nav svg { width: 20px; height: 20px; }
@media (min-width: 900px) {
  .bottom-nav { display: none; }
  .site-footer { padding-bottom: 2rem; }
}
/* Espaço da bottom-nav fica no footer escuro — não no body (evita faixa creme) */
body.has-bottom-pad { padding-bottom: 0; }

/* Booking wizard */
.wizard-steps {
  display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.wizard-steps span {
  flex: 1; min-width: 90px; text-align: center; padding: .55rem;
  border-radius: 999px; font-size: .75rem; background: var(--bg-muted); color: var(--ink-mute);
}
.wizard-steps span.active { background: var(--ink); color: #fff; }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(72px, 1fr)); gap: .5rem; }
.slot {
  border: 1px solid var(--line); background: var(--bg-elevated); border-radius: 10px;
  padding: .7rem .4rem; text-align: center; cursor: pointer; font-size: .85rem;
}
.slot.selected, .slot:hover { border-color: var(--gold); background: rgba(196,165,116,.15); }
.choice-card {
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg-elevated); cursor: pointer; transition: border-color .2s;
}
.choice-card:has(input:checked), .choice-card.selected { border-color: var(--gold); box-shadow: 0 0 0 2px rgba(196,165,116,.25); }
.choice-card input { display: none; }
.choice-thumb {
  width: 88px; height: 66px; border-radius: 10px; overflow: hidden; flex-shrink: 0;
  background: var(--bg-muted);
}
.choice-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.choice-thumb-round { width: 64px; height: 64px; border-radius: 50%; }
.choice-body { flex: 1; min-width: 0; }
.booking-choices {
  display: grid;
  gap: .85rem;
}
@media (min-width: 720px) {
  .booking-choices { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .booking-choices { grid-template-columns: repeat(3, 1fr); }
}

/* Cliente / Admin shells */
.app-shell { display: grid; min-height: 100vh; }
@media (min-width: 960px) {
  .app-shell { grid-template-columns: 250px 1fr; }
}
.sidebar {
  background: #2C2A28; color: #F7F3EF; padding: 1.5rem 1rem;
  display: none; flex-direction: column; gap: .25rem;
}
.sidebar a {
  padding: .7rem .9rem; border-radius: 10px; color: rgba(247,243,239,.72); font-size: .9rem;
}
.sidebar a:hover, .sidebar a.active { background: rgba(196,165,116,.15); color: #fff; }
.sidebar .brand { font-family: var(--font-display); font-size: 1.5rem; padding: .5rem .9rem 1.5rem; }
@media (min-width: 960px) { .sidebar { display: flex; } }
.main-panel { padding: 1.25rem; }
.admin-page-head {
  margin-bottom: 1.25rem;
}
.admin-page-head .eyebrow {
  display: block;
  margin-bottom: .25rem;
}
.admin-page-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.admin-page-title-row h1 {
  font-size: 1.8rem;
  margin: 0;
}
.admin-page-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.admin-page-actions .admin-back {
  margin: 0;
  white-space: nowrap;
}
.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.stats-grid { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.stat-card { padding: 1.1rem 1.2rem; }
.stat-card strong { display: block; font-family: var(--font-display); font-size: 1.7rem; margin-top: .35rem; }
.table-wrap { overflow-x: auto; }
table.data { width: 100%; border-collapse: collapse; font-size: .9rem; }
table.data th, table.data td { padding: .75rem .6rem; border-bottom: 1px solid var(--line); text-align: left; }
table.data th { color: var(--ink-mute); font-weight: 500; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; }

.wa-float {
  position: fixed; right: 1rem; bottom: calc(var(--bottom-nav) + 1rem); z-index: 70;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.35);
}
@media (min-width: 900px) { .wa-float { bottom: 1.5rem; } }

.confirm-hero {
  text-align: center; padding: 2.5rem 1rem;
  animation: rise .7s ease both;
}
.confirm-hero .check {
  width: 64px; height: 64px; margin: 0 auto 1rem; border-radius: 50%;
  background: rgba(74,124,89,.12); color: var(--success);
  display: grid; place-items: center; font-size: 1.6rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: .3rem;
  height: 160px;
  padding-top: .5rem;
}
.chart-bar {
  flex: 1;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: .35rem;
}
.chart-bar-fill {
  width: 100%;
  max-width: 28px;
  background: linear-gradient(180deg, var(--gold), var(--brown));
  border-radius: 6px 6px 2px 2px;
  opacity: .9;
}
.chart-bar-fill.is-empty {
  background: var(--line);
  opacity: .55;
}
.chart-bar small {
  font-size: .65rem;
  color: var(--ink-mute);
  line-height: 1;
  white-space: nowrap;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.color-swatch-input {
  -webkit-appearance: none;
  appearance: none;
}
.color-swatch-input::-webkit-color-swatch-wrapper { padding: 4px; }
.color-swatch-input::-webkit-color-swatch {
  border: none;
  border-radius: 10px;
}
.palette-preset-btn:hover {
  border-color: var(--gold) !important;
  box-shadow: var(--shadow);
}

/* Premium card system — claro, confiável, sem excesso editorial */
.premium-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .premium-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .premium-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}
.premium-grid-3 {
  grid-template-columns: 1fr;
}
@media (min-width: 800px) {
  .premium-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.premium-card {
  display: flex;
  flex-direction: column;
  background: #FBF9F6;
  border: 1px solid #E8E1D8;
  border-radius: 10px;
  overflow: hidden;
  color: inherit;
  transition: border-color .25s ease, transform .25s ease;
}
.premium-card:hover {
  border-color: #D6CBBE;
  transform: translateY(-3px);
}
.premium-card-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #EEE7DD;
}
.premium-card-media-tall { aspect-ratio: 4/5; }
.premium-card-media-square { aspect-ratio: 1; }
.premium-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.premium-card:hover .premium-card-media img { transform: scale(1.03); }
.premium-card-body {
  padding: 1.15rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.premium-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: .45rem;
}
.premium-card-body > p {
  font-size: .98rem;
  line-height: 1.55;
  margin-bottom: .85rem;
  flex: 1;
}
.premium-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: .75rem;
  margin-bottom: .35rem;
  font-size: 1rem;
  color: var(--ink);
}
.premium-card-meta strong { font-weight: 600; }
.premium-card-meta span { color: var(--ink-soft); font-size: .95rem; }
.premium-card .text-link { margin-top: .55rem; font-size: .95rem; }
.premium-card-pro .pro-role {
  margin: 0 0 .55rem;
  font-size: .78rem;
}
.premium-card-quote {
  margin: 0;
  padding: 1.4rem 1.35rem 1.5rem;
  display: block;
}
.premium-card-quote .stars {
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: .85rem;
  font-size: .9rem;
}
.premium-card-quote > p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1.15rem;
}
.premium-card-quote footer {
  display: grid;
  gap: .15rem;
}
.premium-card-quote footer strong { font-size: 1rem; }
.premium-card-quote footer span { font-size: .9rem; color: var(--ink-mute); }

.promo-band-soft {
  background: #F3EEE6;
  border-top: 1px solid #E8E1D8;
  border-bottom: 1px solid #E8E1D8;
  padding: 2.75rem 0;
}
.promo-band-soft-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}
.promo-band-soft h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: .35rem;
}
.promo-band-soft p {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
}

/* Tipografia legível — clínica premium */
.theme-editorial h1 { font-size: clamp(2.6rem, 5.5vw, 4rem); }
.theme-editorial h2 { font-size: clamp(1.95rem, 3.4vw, 2.5rem); }
.theme-editorial h3 { font-size: 1.35rem; }
.theme-editorial p,
.theme-editorial .lead { font-size: 1.02rem; line-height: 1.6; }
.theme-editorial .hero-brand { font-size: clamp(3.2rem, 8vw, 5.4rem); }
.theme-editorial .hero-tagline { font-size: clamp(1.4rem, 2.8vw, 1.95rem); }
.theme-editorial .hero-desc { font-size: 1.05rem; }
.theme-editorial .cta-editorial { min-height: 440px; }
.theme-editorial .cta-editorial-content h2 { font-size: clamp(2.3rem, 4.6vw, 3.35rem); }
.theme-editorial .portfolio-grid {
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 900px) {
  .theme-editorial .portfolio-grid {
    grid-template-columns: 1.25fr 1fr 1fr;
    grid-template-rows: 320px 320px;
  }
}

/* ========== Editorial premium layer ========== */
.theme-editorial .container { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }

.site-header-editorial {
  height: var(--nav-h);
  background: rgba(244,239,232,.92);
  border-bottom: 1px solid rgba(221,212,200,.7);
}
.site-header-editorial .logo { font-size: 1.85rem; letter-spacing: .01em; }
.site-header-editorial .nav-desktop { gap: 1.65rem; }
.site-header-editorial .nav-desktop a { font-size: .95rem; letter-spacing: .01em; }

.hero-editorial { min-height: calc(100svh - var(--nav-h)); align-items: end; }
.hero-editorial .hero-content {
  max-width: 36rem;
  padding: 4.5rem 0 5rem;
}
.hero-kicker {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 1rem;
}
.hero-brand {
  font-size: clamp(3.4rem, 9vw, 6.2rem);
  margin-bottom: .35rem;
  line-height: .95;
}
.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: #FBF8F4 !important;
  margin-bottom: .85rem;
  font-weight: 400;
}
.hero-editorial .hero-desc {
  font-size: 1.05rem;
  max-width: 26rem;
  color: rgba(251,248,244,.82) !important;
  margin-bottom: 1.75rem;
}
.hero-editorial .hero-overlay {
  background:
    linear-gradient(180deg, rgba(42,38,35,.2) 0%, rgba(42,38,35,.78) 100%),
    linear-gradient(90deg, rgba(42,38,35,.55) 0%, transparent 60%);
}

.section-head { margin-bottom: 2.75rem; max-width: 36rem; }
.section-foot { margin-top: 2rem; }
.section-light { background: #FAF7F3; }
.section-cream { background: #F1EAE1; }
.section-sand { background: #EBE3D8; }
.section-ink {
  background: #2A2623;
  color: #F7F3EF;
}
.section-ink h2,
.section-ink h3 { color: #F7F3EF; }
.on-dark { color: rgba(247,243,239,.72) !important; }
.eyebrow.on-dark { color: var(--gold-soft); }

.text-link {
  display: inline-flex;
  margin-top: .85rem;
  font-size: .92rem;
  color: var(--brown-deep);
  letter-spacing: .02em;
  transition: color .25s ease, transform .25s ease;
}
.text-link:hover { color: var(--ink); transform: translateX(3px); }
.section-ink .text-link { color: var(--gold-soft); }

/* Services editorial */
.service-editorial { display: grid; gap: 2.5rem; }
@media (min-width: 900px) {
  .service-editorial { grid-template-columns: repeat(2, 1fr); gap: 2.75rem 2rem; }
}
.service-editorial-item {
  display: grid;
  gap: 1.1rem;
  color: inherit;
}
@media (min-width: 640px) {
  .service-editorial-item {
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 1.5rem;
  }
  .service-editorial-item:nth-child(even) .service-editorial-media { order: 2; }
}
.service-editorial-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-muted);
}
.service-editorial-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.service-editorial-item:hover .service-editorial-media img { transform: scale(1.03); }
.service-index {
  display: block;
  font-size: .75rem;
  letter-spacing: .16em;
  color: var(--ink-mute);
  margin-bottom: .55rem;
}
.service-meta-line {
  display: flex; gap: .45rem; align-items: center;
  margin-top: .85rem;
  font-size: .92rem;
  color: var(--ink);
}

/* Experience */
.experience-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 800px) {
  .experience-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.experience-item {
  padding-top: 1.25rem;
  border-top: 1px solid rgba(196,165,116,.35);
}
.experience-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: .75rem;
}
.experience-item h3 {
  font-size: 1.45rem;
  margin-bottom: .55rem;
}
.experience-item p {
  color: rgba(247,243,239,.72);
  font-size: 1.02rem;
  line-height: 1.55;
}
.section-ink .section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.75rem);
}
.section-ink .lead.on-dark {
  font-size: 1.08rem;
  max-width: 38rem;
}

/* Professionals */
.pro-editorial {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .pro-editorial { grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
}
.pro-editorial-card { color: inherit; }
.pro-editorial-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 1.15rem;
  background: var(--bg-muted);
}
.pro-editorial-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.pro-editorial-card:hover .pro-editorial-photo img { transform: scale(1.03); }
.pro-role {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brown);
  margin: -.15rem 0 .75rem;
}
.pro-tags {
  margin-top: .85rem;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Portfolio */
.portfolio-grid {
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 900px) {
  .portfolio-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-template-rows: 280px 280px;
  }
  .portfolio-item:first-child {
    grid-row: 1 / span 2;
  }
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #2A2623;
  min-height: 220px;
  margin: 0;
  width: 100%;
  min-width: 0;
}
.portfolio-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.portfolio-overlay {
  position: absolute; inset: auto 0 0 0;
  padding: 1.1rem 1.15rem;
  background: linear-gradient(180deg, transparent, rgba(42,38,35,.78));
  color: #F7F3EF;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}
.portfolio-overlay strong { display: block; font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }
.portfolio-overlay em { font-style: normal; font-size: .88rem; color: var(--gold-soft); }
.portfolio-item:hover img { transform: scale(1.04); }
.portfolio-item:hover .portfolio-overlay { opacity: 1; transform: translateY(0); }
@media (hover: none) {
  .portfolio-overlay { opacity: 1; transform: none; }
}

/* Quotes */
.quotes-editorial {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .quotes-editorial { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.quote-editorial {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}
.quote-editorial .stars {
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: .85rem;
  font-size: .85rem;
}
.quote-editorial > p {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.quote-editorial footer {
  display: grid;
  gap: .15rem;
}
.quote-editorial footer strong { color: var(--ink); font-weight: 500; }
.quote-editorial footer span { font-size: .85rem; color: var(--ink-mute); }

/* Shop */
.shop-editorial .section-head { margin-bottom: 2rem; }
.shop-row {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .shop-row { grid-template-columns: repeat(3, 1fr); }
}
.shop-item-media {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: .85rem;
  background: #fff;
}
.shop-item-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.shop-item:hover .shop-item-media img { transform: scale(1.03); }
.shop-item h3 { font-size: 1.15rem; margin-bottom: .25rem; }

.promo-row {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 800px) {
  .promo-row { grid-template-columns: repeat(2, 1fr); }
}
.promo-line {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

/* CTA */
.cta-editorial {
  position: relative;
  min-height: 420px;
  display: grid;
  align-items: center;
  padding: 0;
  overflow: hidden;
}
.cta-editorial-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(.92);
}
.cta-editorial-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(42,38,35,.78), rgba(42,38,35,.45));
}
.cta-editorial-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  color: #F7F3EF;
  max-width: 32rem;
}
.cta-editorial-content h2 {
  color: #F7F3EF;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}
.cta-editorial-content p {
  color: rgba(247,243,239,.82);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Location */
.location-editorial {
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .location-editorial { grid-template-columns: 1fr 1.05fr; gap: 3rem; }
}
.location-editorial-media {
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 5/4;
  background: var(--bg-muted);
}
.location-editorial-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hours-block {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.hours-block h3 { font-family: var(--font-body); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mute); }

/* Footer */
.site-footer-editorial {
  padding: 4rem 0 calc(2.5rem + var(--bottom-nav));
  background: #2A2623;
  color: rgba(247,243,239,.78);
  border-top: 0;
  margin-top: 0;
}
.site-footer-editorial .logo { color: #F7F3EF; margin-bottom: .85rem; }
.site-footer-editorial a { color: rgba(247,243,239,.78); }
.site-footer-editorial a:hover { color: var(--gold-soft); }
.site-footer-editorial h4 { color: rgba(247,243,239,.45); }
.site-footer-editorial p { color: rgba(247,243,239,.72); }
.footer-tagline { font-size: 1.05rem; line-height: 1.6; max-width: 22rem; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  margin-top: 2.5rem; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .85rem;
}
@media (min-width: 900px) {
  .site-footer-editorial { padding-bottom: 2.5rem; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ========== Páginas internas (mesma harmonia da home) ========== */
.page-hero {
  padding: 3.5rem 0 1.5rem;
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
}
.page-block { margin-bottom: 3.5rem; }
.page-block-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}

.detail-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .detail-layout {
    grid-template-columns: 1.15fr .85fr;
    gap: 3rem;
    align-items: start;
  }
  .detail-layout-pro {
    grid-template-columns: .9fr 1.1fr;
  }
}
.detail-media {
  overflow: hidden;
  border-radius: 6px;
  background: var(--bg-muted);
  aspect-ratio: 16/10;
}
.detail-media img,
.detail-media-portrait img,
.detail-media-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-media-portrait { aspect-ratio: 4/5; }
.detail-media-square { aspect-ratio: 1; max-width: 560px; }

.editorial-panel {
  padding: 1.5rem;
  background: #FFFCFA;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.empty-editorial {
  padding: 3rem 0;
  text-align: center;
}
.clean-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}
.clean-list li { margin-bottom: .35rem; }

.contact-editorial {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 800px) {
  .contact-editorial { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.contact-card {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}
.contact-card .experience-num { color: var(--gold); }
.contact-card p { color: var(--ink-soft); }

.theme-editorial .portfolio-grid.portfolio-grid-page {
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.theme-editorial .portfolio-grid.portfolio-grid-page .portfolio-item {
  margin: 0;
  width: 100%;
  min-width: 0;
}
@media (min-width: 900px) {
  .theme-editorial .portfolio-grid.portfolio-grid-page {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    grid-template-rows: none;
    gap: .85rem;
  }
}

.portfolio-grid-page {
  grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.portfolio-grid-page .portfolio-item {
  min-height: 0;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
}
.portfolio-grid-page .portfolio-overlay {
  opacity: 1;
  transform: none;
  padding: .85rem .9rem;
}
.portfolio-grid-page .portfolio-overlay strong {
  font-size: 1.05rem;
  line-height: 1.2;
}
.portfolio-grid-page .portfolio-overlay em {
  font-size: .75rem;
}
@media (min-width: 900px) {
  .portfolio-grid-page {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: .85rem;
  }
  .portfolio-grid-page .portfolio-item {
    aspect-ratio: auto;
    min-height: 280px;
  }
  .portfolio-grid-page .portfolio-item:first-child {
    grid-row: auto;
  }
  .portfolio-grid-page .portfolio-overlay strong {
    font-size: 1.25rem;
  }
}
.gallery-page-head {
  max-width: none;
}
.gallery-page-head .lead {
  max-width: 34rem;
}
.portfolio-grid-page .portfolio-overlay { opacity: 1; transform: none; }

.shop-row-page {
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .shop-row-page { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .shop-row-page { grid-template-columns: repeat(3, 1fr); }
}

.wizard-steps span {
  border-radius: 6px;
}
.theme-editorial .choice-card {
  border-radius: 6px;
}
.theme-editorial .surface {
  border-radius: 6px;
}

/* Área da cliente alinhada à identidade */
.cliente-shell { background: var(--bg); }
.sidebar-editorial {
  background: #2A2623;
}
.sidebar-editorial .brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: #F7F3EF;
}
.main-panel-editorial {
  background: transparent;
}
.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.panel-head h1 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0;
}
.cliente-shell .surface,
.cliente-shell .stat-card {
  border-radius: 6px;
  background: #FFFCFA;
}
.sidebar-editorial .btn-secondary {
  border-color: rgba(255,255,255,.25);
  color: #F7F3EF;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover { transform: none; }
}

/* ========== Art direction home (v2 — restaurável) ========== */
.btn-nav-outline {
  min-height: 42px;
  padding: .55rem 1.15rem;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  border-radius: 5px;
  font-size: .82rem;
  letter-spacing: .02em;
}
.btn-nav-outline:hover {
  background: var(--ink);
  color: #FBF8F4;
}

.section-index {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brown);
  font-weight: 500;
  margin-bottom: 1rem;
}
.section-index.on-dark { color: var(--gold-soft); }
.section-head { margin-bottom: 2.75rem; max-width: 38rem; }
.section-head-wide { max-width: 42rem; }
.section-head h2 { margin-bottom: .85rem; }
@media (min-width: 768px) {
  .section-head { margin-bottom: 3rem; }
}

/* Header over hero */
.site-header-editorial {
  height: var(--nav-h);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header-editorial.is-over-hero:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}
.site-header-editorial.is-over-hero:not(.is-scrolled) .logo,
.site-header-editorial.is-over-hero:not(.is-scrolled) .nav-desktop a {
  color: #F7F3EF;
}
.site-header-editorial.is-over-hero:not(.is-scrolled) .btn-nav-outline {
  border-color: rgba(247,243,239,.55);
  color: #F7F3EF;
}
.site-header-editorial.is-over-hero:not(.is-scrolled) .btn-nav-outline:hover {
  background: #F7F3EF;
  color: var(--ink);
  border-color: #F7F3EF;
}
.site-header-editorial.is-scrolled,
.site-header-editorial:not(.is-over-hero) {
  background: rgba(248,245,240,.94);
  border-bottom: 1px solid rgba(228,217,204,.8);
  backdrop-filter: blur(12px);
}
.site-header-editorial .logo { font-size: 2rem; }
.site-header-editorial .nav-desktop { gap: 1.85rem; }
.site-header-editorial .nav-desktop a {
  font-size: .8rem;
  letter-spacing: .04em;
}

/* Hero */
.hero-editorial {
  min-height: 620px;
  max-height: none;
  align-items: end;
}
@media (min-width: 900px) {
  .hero-editorial { min-height: 680px; }
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  color: #FBF8F4;
  margin: 0 0 1rem;
  font-weight: 500;
}
.hero-editorial .hero-content {
  max-width: 34rem;
  padding: 3.5rem 0 4.25rem;
}
.hero-editorial .hero-desc {
  font-size: 1.05rem;
  max-width: 28rem;
  color: rgba(251,248,244,.84) !important;
  margin-bottom: 1.75rem;
}
.hero-kicker {
  font-size: .7rem;
  letter-spacing: .22em;
}

/* Mobile hero: imagem em cima, texto abaixo */
@media (max-width: 767px) {
  .hero-editorial {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-editorial .hero-media {
    position: relative;
    inset: auto;
    height: clamp(280px, 58vw, 400px);
  }
  .hero-editorial .hero-overlay {
    background: linear-gradient(180deg, rgba(42,38,35,.15) 0%, rgba(42,38,35,.35) 100%);
  }
  .hero-editorial .hero-content {
    position: relative;
    background: #2A2623;
    max-width: none;
    width: 100%;
    padding: 2rem 0 2.75rem;
  }
  .hero-headline { font-size: clamp(2.35rem, 9vw, 3rem); }
  .hero-actions { flex-wrap: wrap; }
  .hero-actions .btn { width: 100%; }
}

/* Serviços: 1 col mobile · 2 tablet · 3 desktop */
.premium-grid,
.services-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .premium-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
@media (min-width: 1100px) {
  .premium-grid,
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.65rem; }
}
.premium-grid-3 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .premium-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .premium-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.premium-card-body { padding: 1.35rem 1.35rem 1.5rem; }
.premium-card-body h3 { font-size: 1.45rem; }
.premium-card-media { aspect-ratio: 4/5; }
.premium-card-meta .text-link { margin-top: 0; }

/* Experiência */
.experience-block .section-head h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
}
.experience-item h3 { font-size: 1.35rem; }
.experience-item p { font-size: 1.02rem; }

/* Profissionais — fotos grandes, texto enxuto */
.pro-photos {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pro-photos { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}
@media (min-width: 1100px) {
  .pro-photos { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
.pro-photo-card { color: inherit; text-align: left; }
.pro-photo-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #EEE7DD;
}
.pro-photo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.pro-photo-card:hover .pro-photo-media img { transform: scale(1.035); }
.pro-photo-card h3 {
  font-size: 1.55rem;
  margin-bottom: .2rem;
}
.pro-photo-card .pro-role {
  margin: 0;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Galeria editorial */
.portfolio-editorial {
  display: grid;
  gap: .85rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 900px) {
  .portfolio-editorial {
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: 280px;
  }
  .portfolio-editorial .portfolio-item:first-child {
    grid-row: span 2;
  }
}
@media (min-width: 1100px) {
  .portfolio-editorial { grid-auto-rows: 310px; }
}

/* Depoimentos featured */
.quotes-featured {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .quotes-featured {
    grid-template-columns: 1.35fr .9fr;
    gap: 2rem;
    align-items: stretch;
  }
}
.quote-featured {
  margin: 0;
  padding: 2.25rem 2rem;
  background: #FBF9F6;
  border: 1px solid #E8E1D8;
  border-radius: 10px;
}
.quote-featured .stars {
  color: var(--gold);
  letter-spacing: .14em;
  margin-bottom: 1.25rem;
}
.quote-featured > p {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.8vw, 2.15rem);
  line-height: 1.35;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.quote-featured footer {
  display: grid;
  gap: .15rem;
}
.quote-featured footer strong { font-size: 1.05rem; color: var(--ink); }
.quote-featured footer span { font-size: .92rem; color: var(--ink-mute); }
.quotes-side { display: grid; gap: 1rem; }
.quote-side {
  margin: 0;
  padding: 1.35rem 1.25rem;
  background: #FBF9F6;
  border: 1px solid #E8E1D8;
  border-radius: 10px;
}
.quote-side .stars {
  color: var(--gold);
  letter-spacing: .12em;
  margin-bottom: .65rem;
  font-size: .85rem;
}
.quote-side > p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: .85rem;
}
.quote-side footer strong { font-size: .95rem; color: var(--ink); }

/* Produtos editorial (não parece cards de serviço) */
.shop-editorial-layout {
  display: grid;
  gap: 2.5rem;
  align-items: end;
}
@media (min-width: 900px) {
  .shop-editorial-layout {
    grid-template-columns: .9fr 1.2fr;
    gap: 3rem;
  }
}
.shop-editorial-copy .lead { margin-bottom: 1.5rem; }
.shop-editorial-products {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) {
  .shop-editorial-products { grid-template-columns: repeat(3, 1fr); }
}
.shop-feature-item { color: inherit; }
.shop-feature-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #EDE6DC;
  margin-bottom: .85rem;
}
.shop-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.shop-feature-item:hover .shop-feature-media img { transform: scale(1.03); }
.shop-feature-item h3 {
  font-size: 1.15rem;
  margin-bottom: .25rem;
}
.shop-feature-item .price {
  color: var(--ink);
  font-size: .98rem;
  font-weight: 500;
}

/* Promo elegante */
.promo-band-elegant {
  background: #F3EEE6;
  border-top: 1px solid #E8E1D8;
  border-bottom: 1px solid #E8E1D8;
  padding: 4rem 0;
  text-align: center;
}
.promo-band-elegant-inner { max-width: 40rem; }
.promo-band-elegant h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  margin-bottom: .75rem;
}
.promo-band-title {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: .35rem;
}
.promo-band-elegant p { margin-inline: auto; max-width: 32rem; }
.promo-band-elegant .btn { margin-top: 1.25rem; }

/* CTA mais forte */
.theme-editorial .cta-editorial { min-height: 480px; }
.theme-editorial .cta-editorial-content h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
}

/* Localização */
.location-facts {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.location-facts li {
  display: grid;
  gap: .2rem;
  padding-top: .85rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 1rem;
}
.location-facts span {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Footer 4 colunas */
@media (min-width: 900px) {
  .footer-grid-brand {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  }
}
.footer-br { display: none; }
@media (max-width: 600px) {
  .footer-br { display: inline; }
}

.theme-editorial .container { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
@media (min-width: 768px) {
  .theme-editorial .container { width: min(100% - 3rem, var(--max)); }
}
.theme-editorial h2 { font-size: clamp(2rem, 3.6vw, 2.65rem); }
.theme-editorial .hero-headline { color: #FBF8F4; }
.section-light .btn-secondary,
.location-editorial .btn-secondary {
  border-color: var(--line);
  color: var(--ink);
}

/* ========== Scale + composition pass (restaurável via backup-pre-scale) ========== */
.theme-editorial {
  --bg: #F8F5F0;
  --bg-warm: #EFE6DA;
  --bg-warm-alt: #E8DDD0;
  font-size: 16px;
}
.theme-editorial h2 {
  font-size: clamp(2.15rem, 4.5vw, 3.1rem);
  line-height: 1.12;
}
.theme-editorial .lead {
  font-size: 1.08rem;
  line-height: 1.65;
}
.theme-editorial .section { padding: 4.25rem 0; }
@media (min-width: 768px) {
  .theme-editorial .section { padding: 6rem 0; }
}
.section-warm { background: var(--bg-warm); }
.section-warm-alt { background: var(--bg-warm-alt); }
.section-head-center { text-align: center; margin-inline: auto; }
.section-index {
  font-size: .78rem;
  letter-spacing: .2em;
  margin-bottom: 1.15rem;
}

/* Hero brand — mais tela */
.hero-brand {
  position: relative;
  min-height: 650px;
  display: grid;
  align-items: end;
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero-brand { min-height: 700px; }
}
.hero-brand .hero-media { position: absolute; inset: 0; }
.hero-brand .hero-photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.hero-brand .hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,38,35,.25) 0%, rgba(42,38,35,.78) 100%),
    linear-gradient(90deg, rgba(42,38,35,.55) 0%, transparent 55%);
}
.hero-brand .hero-content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
  padding: 4rem 0 4.5rem;
}
.hero-brand .hero-headline {
  font-size: clamp(2.75rem, 7vw, 4.6rem);
  line-height: 1.02;
  color: #FBF8F4;
  margin: 0 0 1.1rem;
}
.hero-brand .hero-desc {
  font-size: 1.1rem;
  color: rgba(251,248,244,.88) !important;
  max-width: 26rem;
  margin-bottom: 1.85rem;
}
.hero-brand .hero-kicker {
  color: var(--gold-soft);
  font-size: .75rem;
  margin-bottom: 1.15rem;
}
@media (max-width: 767px) {
  .hero-brand {
    min-height: 650px;
    align-items: end;
  }
  .hero-brand .hero-media { position: absolute; inset: 0; height: auto; }
  .hero-brand .hero-content {
    background: transparent;
    padding: 2.5rem 0 3.25rem;
    max-width: none;
  }
  .hero-brand .hero-headline { font-size: clamp(2.5rem, 11vw, 3.25rem); }
  .hero-brand .hero-desc { font-size: 1.05rem; }
  .hero-brand .hero-actions .btn { min-height: 52px; font-size: 1rem; }
  .hero-brand .hero-overlay {
    background: linear-gradient(180deg, rgba(42,38,35,.2) 20%, rgba(42,38,35,.82) 100%);
  }
}

/* Técnicas — cards com personalidade */
.tech-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .tech-grid { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
}
@media (min-width: 1100px) {
  .tech-grid { grid-template-columns: repeat(3, 1fr); gap: 1.85rem; }
}
.tech-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  background: transparent;
}
.tech-card-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #E8DFD4;
  margin-bottom: 1.15rem;
}
.tech-card-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.tech-card:hover .tech-card-media img { transform: scale(1.04); }
.tech-card-num {
  display: block;
  font-size: .78rem;
  letter-spacing: .16em;
  color: var(--ink-mute);
  margin-bottom: .55rem;
}
.tech-card-body h3 {
  font-size: clamp(1.55rem, 2.5vw, 1.85rem);
  margin-bottom: .4rem;
}
.tech-card-mood {
  font-size: .98rem;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}
.tech-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.05rem;
  color: var(--ink);
}
.tech-card-meta strong { font-weight: 600; font-size: 1.15rem; }
.tech-card-meta span {
  font-size: .95rem;
  color: var(--brown-deep);
}

/* Experiência cinematográfica */
.experience-cinema {
  padding: 5rem 0 !important;
  min-height: 420px;
  display: flex;
  align-items: center;
}
@media (min-width: 900px) {
  .experience-cinema {
    padding: 6.5rem 0 !important;
    min-height: 480px;
  }
}
.experience-cinema-inner {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
}
.experience-cinema h2 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
}
.experience-manifesto {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  color: rgba(247,243,239,.78) !important;
  line-height: 1.45;
  margin: 0 auto 1.75rem;
  max-width: 28rem;
}
.experience-divider {
  width: 48px;
  height: 1px;
  background: rgba(200,167,122,.55);
  margin: 0 auto 2.25rem;
}
.experience-grid-cinema {
  display: grid;
  gap: 1.75rem;
  text-align: left;
}
@media (min-width: 800px) {
  .experience-grid-cinema {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    text-align: center;
  }
}
.experience-grid-cinema .experience-item {
  border-top: 0;
  padding-top: 0;
}
.experience-grid-cinema .experience-num {
  font-size: 1.35rem;
  margin-bottom: .55rem;
}
.experience-grid-cinema h3 {
  font-size: 1.25rem;
  margin: 0;
}

/* Profissionais carousel */
.pro-carousel { position: relative; }
.pro-carousel-track {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  transition: transform .35s ease;
}
@media (min-width: 768px) {
  .pro-carousel-track {
    grid-template-columns: repeat(2, 1fr);
    transform: none !important;
  }
  .pro-carousel .carousel-nav { display: none; }
}
@media (min-width: 1100px) {
  .pro-carousel-track { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}
@media (max-width: 767px) {
  .pro-carousel { overflow: hidden; }
  .pro-carousel-track {
    display: flex;
    gap: 0;
  }
  .pro-slide {
    flex: 0 0 100%;
    min-width: 100%;
  }
}
.pro-slide { color: inherit; }
.pro-slide-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 1.15rem;
  background: #E4D9CC;
}
.pro-slide-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.pro-slide:hover .pro-slide-media img { transform: scale(1.03); }
.pro-slide h3 {
  font-size: clamp(1.55rem, 2.5vw, 1.9rem);
  margin-bottom: .25rem;
}
.pro-slide .pro-role {
  margin: 0;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* Galeria com foto principal */
.portfolio-feature {
  display: grid;
  gap: .75rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 900px) {
  .portfolio-feature {
    grid-template-columns: 1.45fr 1fr;
    grid-template-rows: 260px 260px;
  }
  .portfolio-feature-item.is-hero {
    grid-row: 1 / span 2;
  }
}
.portfolio-feature-item {
  overflow: hidden;
  background: #DDD3C6;
  min-height: 180px;
}
.portfolio-feature-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.portfolio-feature-item:hover img { transform: scale(1.03); }

/* Depoimento em palco */
.quote-stage {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
.quote-stage-track {
  display: flex;
  transition: transform .4s ease;
}
.quote-stage-item {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  padding: 1rem 0 0;
}
.quote-stage-item .stars {
  color: var(--gold);
  letter-spacing: .18em;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.quote-stage-item > p {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3.5vw, 2.45rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 auto 1.75rem;
  max-width: 34rem;
}
.quote-stage-item footer {
  display: grid;
  gap: .2rem;
}
.quote-stage-item footer strong {
  font-size: 1.1rem;
  color: var(--ink);
}
.quote-stage-item footer span {
  font-size: .95rem;
  color: var(--ink-mute);
}

.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.75rem;
}
.carousel-btn {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--ink);
}
.carousel-btn:hover { border-color: var(--ink); }
.carousel-count {
  font-size: .9rem;
  letter-spacing: .08em;
  color: var(--ink-mute);
  min-width: 4rem;
  text-align: center;
}

/* Produtos — grandes, sem aperto */
.section-products .section-head { max-width: 36rem; }
.product-stage-track {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .product-stage-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    transform: none !important;
  }
  .carousel-nav-mobile { display: none; }
}
@media (max-width: 767px) {
  .product-stage { overflow: hidden; }
  .product-stage-track { display: flex; gap: 0; }
  .product-slide { flex: 0 0 100%; min-width: 100%; }
}
.product-slide { color: inherit; }
.product-slide-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #EDE4D8;
  margin-bottom: 1.15rem;
}
.product-slide-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-slide h3 {
  font-size: 1.45rem;
  margin-bottom: .35rem;
}
.product-slide .price {
  display: block;
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: .55rem;
}

/* Promo em destaque */
.promo-stage {
  background: #2A2623;
  color: #F7F3EF;
  padding: 5rem 0;
  text-align: center;
}
@media (min-width: 768px) {
  .promo-stage { padding: 6rem 0; }
}
.promo-stage-inner { max-width: 36rem; }
.promo-stage .section-index { color: var(--gold-soft); }
.promo-stage h2 {
  color: #F7F3EF;
  font-size: clamp(2.2rem, 4.5vw, 3.1rem);
  margin-bottom: 1.25rem;
}
.promo-stage-offer {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--gold-soft) !important;
  margin-bottom: .5rem;
}
.promo-stage-desc {
  color: rgba(247,243,239,.72) !important;
  font-size: 1.05rem;
  margin: 0 auto 1.75rem;
  max-width: 28rem;
}
.promo-stage .btn-primary {
  background: var(--gold);
  color: var(--ink);
  border: 0;
}
.promo-stage .btn-primary:hover { background: var(--gold-soft); }

/* CTA forte */
.cta-stage {
  position: relative;
  min-height: 500px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
.cta-stage-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-stage-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(42,38,35,.82), rgba(42,38,35,.5));
}
.cta-stage-content {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  max-width: 34rem;
  color: #F7F3EF;
}
.cta-stage-content h2 {
  color: #F7F3EF;
  font-size: clamp(2.6rem, 6vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.cta-stage-content p {
  color: rgba(247,243,239,.85);
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
}

/* Localização */
.location-stage {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .location-stage { grid-template-columns: 1fr 1.1fr; gap: 3.5rem; }
}
.location-stage-media {
  overflow: hidden;
  min-height: 320px;
}
@media (min-width: 900px) {
  .location-stage-media { min-height: 460px; }
}
.location-stage-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.location-stage .location-facts li {
  border-top: 0;
  padding-top: 0;
  padding-bottom: 1rem;
  margin-bottom: .35rem;
  border-bottom: 1px solid var(--line);
}
.location-stage .btn-secondary {
  border-color: var(--line);
  color: var(--ink);
}

/* Footer slim */
.footer-slim {
  padding: 3.5rem 0 2rem;
}
.footer-slim-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 800px) {
  .footer-slim-grid {
    grid-template-columns: 1.4fr 1fr;
    align-items: end;
  }
}
.footer-slim .footer-tagline {
  font-size: 1.15rem;
  max-width: 18rem;
}
.footer-social {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
}
.footer-social a {
  font-size: .95rem;
  color: rgba(247,243,239,.78);
}
.footer-slim-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.5rem;
}
.footer-slim-nav a {
  font-size: .95rem;
  color: rgba(247,243,239,.78);
}
.footer-bottom-slim {
  font-size: .9rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}

@media (max-width: 767px) {
  .theme-editorial {
    font-size: 16px;
  }
  .theme-editorial p,
  .theme-editorial .lead,
  .tech-card-mood,
  .product-slide .price {
    font-size: 1rem;
  }
  .section-foot { margin-top: 2.25rem; }
}

/* ========== Narrative lux pass (backup-pre-narrative) ========== */
.theme-editorial .container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
@media (min-width: 768px) {
  .theme-editorial .container {
    width: min(1180px, calc(100% - 64px));
  }
}
.section-pad { padding: 4.5rem 0 !important; }
.section-pad-lg { padding: 5.5rem 0 !important; }
@media (min-width: 768px) {
  .section-pad { padding: 6.25rem 0 !important; }
  .section-pad-lg { padding: 7.5rem 0 !important; }
}
.theme-editorial h2 {
  font-size: clamp(2.15rem, 4.8vw, 3.2rem);
  line-height: 1.1;
}
.theme-editorial .lead { font-size: 1.1rem; line-height: 1.65; max-width: 34rem; }

/* Header lux */
.site-header-lux {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 76px;
  display: flex;
  align-items: center;
  background: rgba(248,245,240,.92);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header-lux.is-over-hero:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
}
.site-header-lux.is-over-hero:not(.is-scrolled) .logo,
.site-header-lux.is-over-hero:not(.is-scrolled) .nav-lux a {
  color: #F7F3EF;
}
.site-header-lux.is-over-hero:not(.is-scrolled) .btn-nav-outline {
  border-color: rgba(247,243,239,.55);
  color: #F7F3EF;
}
.site-header-lux.is-over-hero:not(.is-scrolled) .menu-toggle span {
  background: #F7F3EF;
}
.site-header-lux.is-scrolled,
.site-header-lux:not(.is-over-hero) {
  background: rgba(248,245,240,.94);
  border-bottom-color: rgba(228,217,204,.75);
  backdrop-filter: blur(12px);
}
.header-lux-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.site-header-lux .logo {
  font-size: 1.85rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.nav-lux {
  display: none !important;
  justify-content: center;
  gap: 1.75rem;
  flex: 1;
}
.nav-lux a {
  font-size: .82rem;
  letter-spacing: .05em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.nav-lux a:hover { color: var(--ink); }
.header-lux-actions {
  display: flex;
  align-items: center;
  gap: .55rem;
  justify-content: flex-end;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.header-lux-actions .btn-nav-outline {
  display: none;
  min-height: 40px;
  padding: .45rem 1rem;
  font-size: .8rem;
}
.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  display: inline-grid !important;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: background .25s ease;
}
@media (min-width: 900px) {
  .header-lux-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
  }
  .nav-lux { display: flex !important; }
  .header-lux-actions .btn-nav-outline { display: inline-flex; }
  .menu-toggle { display: none !important; }
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(42,38,35,.45);
}
.nav-drawer-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(86vw, 340px);
  background: #F8F5F0;
  padding: 4.5rem 1.75rem 2rem;
  display: grid;
  gap: 1.15rem;
  align-content: start;
}
.nav-drawer-panel a {
  font-size: 1.15rem;
  color: var(--ink);
}
.nav-drawer-close {
  position: absolute;
  top: 1rem; right: 1rem;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  color: var(--ink);
}
body.menu-open { overflow: hidden; }

/* Hero lux */
.hero-lux {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  overflow: hidden;
}
@media (min-width: 900px) {
  .hero-lux { min-height: 700px; }
}
.hero-lux .hero-media { position: absolute; inset: 0; }
.hero-lux .hero-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 65% 25%;
}
.hero-lux .hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,38,35,.22) 0%, rgba(42,38,35,.78) 100%),
    linear-gradient(90deg, rgba(42,38,35,.5) 0%, transparent 58%);
}
.hero-lux .hero-content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  padding: 4rem 0 4.75rem;
}
.hero-lux .hero-kicker {
  color: var(--gold-soft);
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}
.hero-lux .hero-headline {
  font-size: clamp(3rem, 7.5vw, 5rem);
  line-height: 1.02;
  color: #FBF8F4;
  margin: 0 0 1.15rem;
}
.hero-lux .hero-desc {
  font-size: 1.12rem;
  color: rgba(251,248,244,.88) !important;
  max-width: 28rem;
  margin-bottom: 1.85rem;
}
@media (max-width: 767px) {
  .hero-lux { min-height: 680px; }
  .hero-lux .hero-photo { object-position: center 20%; }
  .hero-lux .hero-headline { font-size: clamp(2.7rem, 12vw, 3.4rem); }
  .hero-lux .hero-content { padding: 2.75rem 0 3.25rem; }
  .hero-lux .hero-actions .btn { width: 100%; min-height: 52px; }
}

/* Serviços lux — editorial */
.service-lux-track {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .service-lux-track {
    grid-template-columns: repeat(2, 1fr);
    transform: none !important;
  }
}
@media (min-width: 1100px) {
  .service-lux-track { grid-template-columns: repeat(3, 1fr); gap: 2.25rem; }
}
@media (max-width: 767px) {
  .service-lux { overflow: hidden; }
  .service-lux-track { display: flex; gap: 0; }
  .service-lux-card { flex: 0 0 100%; min-width: 100%; }
}
.service-lux-card { color: inherit; }
.service-lux-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 1.2rem;
  background: #E8DFD4;
}
.service-lux-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-lux-card:hover .service-lux-media img { transform: scale(1.035); }
.service-lux-card h3 {
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  margin-bottom: .45rem;
}
.service-lux-card > p {
  font-size: 1.02rem;
  margin-bottom: .85rem;
  max-width: 22rem;
}

/* Why block */
.why-block { text-align: center; }
.why-inner { max-width: 52rem; margin-inline: auto; }
.why-block h2 {
  color: #F7F3EF;
  font-size: clamp(2.35rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}
.why-lead {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  color: rgba(247,243,239,.78) !important;
  margin: 0 auto 1.5rem;
}
.why-divider {
  width: 40px; height: 1px;
  background: rgba(200,167,122,.5);
  margin: 0 auto 2.5rem;
}
.why-grid {
  display: grid;
  gap: 2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 800px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
}
.why-mark {
  display: block;
  color: var(--gold);
  margin-bottom: .75rem;
  font-size: 1rem;
}
.why-grid h3 {
  color: #F7F3EF;
  font-size: 1.3rem;
  margin-bottom: .4rem;
}
.why-grid p {
  color: rgba(247,243,239,.7);
  font-size: 1rem;
  margin: 0;
}

/* Resultados: mosaico desktop / carrossel mobile */
.results-mosaic { display: none; }
.results-carousel { display: block; overflow: hidden; }
@media (min-width: 768px) {
  .results-mosaic {
    display: grid;
    gap: .85rem;
    grid-template-columns: 1.45fr 1fr;
    grid-template-rows: 250px 250px;
  }
  .results-mosaic-item.is-hero { grid-row: 1 / span 2; }
  .results-carousel { display: none; }
}
@media (min-width: 1100px) {
  .results-mosaic { grid-template-rows: 290px 290px; }
}
.results-mosaic-item,
.results-carousel-item {
  overflow: hidden;
  background: #DDD3C6;
  display: block;
}
.results-mosaic-item img,
.results-carousel-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.results-mosaic-item:hover img { transform: scale(1.03); }
.results-carousel-track { display: flex; transition: transform .35s ease; }
.results-carousel-item {
  flex: 0 0 100%;
  min-width: 100%;
  aspect-ratio: 4/5;
}

/* Sobre editorial */
.about-split {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1.05fr .95fr;
    gap: 4rem;
  }
}
.about-split-media {
  overflow: hidden;
  min-height: 360px;
  background: #E4D9CC;
}
.about-split-media img {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 4/5;
}
.about-mini-pros {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.about-mini-pros a {
  display: grid;
  gap: .4rem;
  width: 88px;
  color: inherit;
  text-align: center;
  font-size: .78rem;
}
.about-mini-pros img {
  width: 88px; height: 88px;
  object-fit: cover;
}

/* Depoimentos lux */
.quote-lux {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
.quote-lux-track {
  display: flex;
  transition: transform .4s ease;
}
.quote-lux-item {
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  padding: .5rem 0 0;
}
.quote-lux-item > p {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.8vw, 2.55rem);
  line-height: 1.3;
  color: var(--ink);
  margin: 0 auto 1.35rem;
  max-width: 34rem;
}
.quote-lux-item .stars {
  color: var(--gold);
  letter-spacing: .16em;
  margin-bottom: 1.15rem;
}
.quote-lux-item footer strong {
  display: block;
  font-size: 1.08rem;
  color: var(--ink);
}
.quote-lux-item footer span {
  font-size: .95rem;
  color: var(--ink-mute);
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: #D6CBBE;
  cursor: pointer;
  padding: 0;
}
.carousel-dot.is-active { background: var(--ink); }

/* Produtos */
.product-lux-track {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .product-lux-track {
    grid-template-columns: repeat(3, 1fr);
    transform: none !important;
  }
}
@media (max-width: 767px) {
  .product-lux { overflow: hidden; }
  .product-lux-track { display: flex; }
  .product-lux-card { flex: 0 0 100%; min-width: 100%; }
}
.product-lux-card { color: inherit; text-align: left; }
.product-lux-media {
  aspect-ratio: 1;
  overflow: hidden;
  background: #EDE4D8;
  margin-bottom: 1.15rem;
}
.product-lux-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.product-lux-card h3 { font-size: 1.45rem; margin-bottom: .35rem; }
.product-lux-card > p { font-size: 1rem; margin-bottom: .65rem; }
.product-lux-card .price {
  display: block;
  font-size: 1.12rem;
  color: var(--ink);
  margin-bottom: .55rem;
}

/* Promo CTA */
.promo-lux {
  background: #2A2623;
  color: #F7F3EF;
  text-align: center;
}
.promo-lux-inner { max-width: 38rem; margin-inline: auto; }
.promo-lux h2 {
  color: #F7F3EF;
  font-size: clamp(2.3rem, 4.8vw, 3.3rem);
  margin-bottom: 1rem;
}
.promo-lux-lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  color: rgba(247,243,239,.88) !important;
  margin-bottom: .65rem;
}
.promo-lux p { color: rgba(247,243,239,.72); }
.promo-lux-offer {
  font-size: 1.2rem !important;
  color: var(--gold-soft) !important;
  margin: 1rem 0 1.75rem !important;
}

/* CTA cinematográfico */
.cta-lux {
  position: relative;
  min-height: 480px;
  display: grid;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-lux { min-height: 520px; }
}
.cta-lux-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.cta-lux-bg::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(42,38,35,.72);
}
.cta-lux-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 4.5rem 0;
}
.cta-lux-content h2 {
  color: #F7F3EF;
  font-size: clamp(2.7rem, 6vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 1.75rem;
}

/* Localização */
.location-lux {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .location-lux { grid-template-columns: 1fr 1.1fr; gap: 3.5rem; }
}
.location-lux-media {
  overflow: hidden;
  min-height: 340px;
  background: #E4D9CC;
}
@media (min-width: 900px) {
  .location-lux-media { min-height: 480px; }
}
.location-lux-media img {
  width: 100%; height: 100%; object-fit: cover;
}
.location-lux .btn-secondary {
  border-color: var(--line);
  color: var(--ink);
}

/* Footer lux */
.footer-lux { padding: 3.75rem 0 2rem; }
.footer-lux-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 800px) {
  .footer-lux-grid {
    grid-template-columns: 1.2fr 1.4fr auto;
    align-items: end;
  }
}
.footer-lux-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem 1.5rem;
}
.footer-lux-nav a,
.footer-lux .footer-social a {
  font-size: .98rem;
  color: rgba(247,243,239,.8);
}
.footer-lux .footer-social {
  display: flex;
  gap: 1.25rem;
}

/* ========== Image radius polish (backup-pre-radius) ========== */
.service-lux-media,
.service-lux-media img {
  border-radius: 14px;
}
.product-lux-media,
.product-lux-media img {
  border-radius: 14px;
}
.results-mosaic-item,
.results-mosaic-item img,
.results-carousel-item,
.results-carousel-item img {
  border-radius: 12px;
}
.about-split-media,
.about-split-media img {
  border-radius: 16px;
}
.about-mini-pros img {
  border-radius: 12px;
}
.location-lux-media,
.location-lux-media img {
  border-radius: 12px;
}
.quote-lux-item {
  border-radius: 12px;
}
.btn,
.btn-nav-outline {
  border-radius: 7px;
}
.hero-lux .hero-media,
.hero-lux .hero-photo,
.cta-lux-bg {
  border-radius: 0;
}
/* overflow hidden already clips; ensure overflow for radius */
.service-lux-media,
.product-lux-media,
.results-mosaic-item,
.results-carousel-item,
.about-split-media,
.location-lux-media {
  overflow: hidden;
}

/* ========== Page shell harmony (inner pages = same brand language) ========== */
.page-shell {
  padding-top: 3.5rem !important;
}
@media (min-width: 768px) {
  .page-shell { padding-top: 4.5rem !important; }
}
.page-intro {
  margin-bottom: 2.5rem;
  max-width: 38rem;
}
.page-intro h1 {
  font-size: clamp(2.3rem, 5vw, 3.4rem);
  line-height: 1.1;
  margin-bottom: .85rem;
}
.page-intro .lead {
  margin-bottom: 0;
}
.page-block { margin-bottom: 3rem; }
.page-block-title {
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  border-bottom: 1px solid var(--line);
  padding-bottom: .85rem;
  margin-bottom: 1.5rem;
}

/* Grids estáticos (sem carrossel) nas páginas internas */
.service-lux-track-static,
.product-lux-track-static {
  display: grid !important;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  transform: none !important;
}
@media (min-width: 768px) {
  .service-lux-track-static,
  .product-lux-track-static {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}
@media (min-width: 1100px) {
  .service-lux-track-static,
  .product-lux-track-static {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pro-photos {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .pro-photos { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .pro-photos { grid-template-columns: repeat(3, 1fr); }
}
.pro-photo-media {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 14px;
  margin-bottom: 1.1rem;
  background: #E8DFD4;
}
.pro-photo-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.pro-photo-card:hover .pro-photo-media img { transform: scale(1.03); }
.pro-photo-card h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.8rem);
  margin-bottom: .25rem;
}
.pro-photo-card > p:not(.pro-role) {
  font-size: 1rem;
  margin-bottom: .55rem;
}

/* Detalhe serviço / produto / profissional */
.detail-lux {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}
@media (min-width: 900px) {
  .detail-lux {
    grid-template-columns: 1.05fr .95fr;
    gap: 3.5rem;
  }
  .detail-lux-pro {
    grid-template-columns: .95fr 1.05fr;
  }
}
.detail-lux-media {
  overflow: hidden;
  border-radius: 14px;
  background: #E8DFD4;
  aspect-ratio: 4/5;
}
.detail-lux-media-tall { aspect-ratio: 4/5; }
.detail-lux-media-square { aspect-ratio: 1; }
.detail-lux-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.detail-lux-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  margin-bottom: .85rem;
}
.detail-lux-copy .btn-secondary,
.page-shell .btn-secondary {
  border-color: var(--line);
  color: var(--ink);
}

/* Contato / location nas internas */
.page-shell .location-lux {
  margin-top: .5rem;
}
.page-shell .location-lux-media {
  border-radius: 14px;
}

/* Agendar painel alinhado */
.page-shell .editorial-panel,
.page-shell .wizard-steps span {
  border-radius: 10px;
}
.page-shell .choice-thumb,
.page-shell .choice-thumb img {
  border-radius: 10px;
}

.booking-products {
  margin-top: 1rem;
  display: grid;
  gap: .75rem;
}
@media (min-width: 720px) {
  .booking-products {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-pick-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: .85rem;
  align-items: center;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  transition: border-color .2s, box-shadow .2s;
}
.product-pick-card.is-selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(196,165,116,.22);
}
.product-pick-media {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-muted);
}
.product-pick-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-pick-body {
  min-width: 0;
  display: grid;
  gap: .35rem;
}
.product-pick-body strong {
  font-size: 1rem;
  color: var(--ink);
}
.product-pick-price {
  font-size: .92rem;
  color: var(--ink-soft);
}
.product-pick-qty .select {
  max-width: 140px;
  min-height: 40px;
  padding: .4rem .65rem;
}
.confirm-items {
  list-style: none;
  margin: .5rem 0 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.confirm-items li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--ink-soft);
}
.confirm-items strong { color: var(--ink); }

/* Checkout — escolha de pagamento */
.pay-step-lead {
  margin: .5rem 0 1.25rem;
  font-size: 1rem;
}
.pay-options {
  display: grid;
  gap: .85rem;
}
.pay-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  align-items: start;
  padding: 1.15rem 1.2rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.pay-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.pay-card-check {
  width: 22px;
  height: 22px;
  margin-top: .15rem;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: #fff;
  transition: border-color .2s, background .2s;
}
.pay-card-check::after {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: transparent;
  transition: background .2s;
}
.pay-card:has(input:checked),
.pay-card.selected {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(196,165,116,.28);
  background: #fff;
}
.pay-card:has(input:checked) .pay-card-check,
.pay-card.selected .pay-card-check {
  border-color: var(--ink);
  background: var(--ink);
}
.pay-card:has(input:checked) .pay-card-check::after,
.pay-card.selected .pay-card-check::after {
  content: '✓';
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
}
.pay-card-body {
  min-width: 0;
}
.pay-card-eyebrow {
  display: block;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: .45rem;
}
.pay-card-title-row {
  display: flex;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: .35rem;
}
.pay-card-body > strong,
.pay-card-title-row strong {
  display: block;
  font-size: 1.08rem;
  color: var(--ink);
  font-weight: 600;
}
.pay-card-body > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.45;
}
.pix-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .28rem .5rem;
  border-radius: 8px;
  background: rgba(50, 180, 180, .08);
  border: 1px solid rgba(50, 180, 180, .22);
}
.pix-badge img {
  display: block;
  height: 20px;
  width: auto;
  max-width: 72px;
  object-fit: contain;
}
.pay-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-top: .9rem;
  padding-top: .85rem;
  border-top: 1px solid var(--line);
  font-size: .95rem;
}
.pay-card-meta span { color: var(--ink-soft); }
.pay-card-meta strong { font-size: 1.05rem; color: var(--ink); }
.pay-card-note {
  margin: .7rem 0 0 !important;
  font-size: .86rem !important;
  color: var(--ink-mute) !important;
}
.booking-summary-card {
  margin-top: 1.25rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius);
  background: var(--bg-muted);
  border: 1px solid var(--line);
}
.booking-summary-card h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
}
.booking-summary-empty {
  margin: 0;
  color: var(--ink-mute);
  font-size: .95rem;
}
.booking-summary-main {
  display: grid;
  gap: .85rem;
}
@media (min-width: 640px) {
  .booking-summary-main {
    grid-template-columns: 1fr 1fr;
  }
}
.booking-summary-item span {
  display: block;
  font-size: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: .2rem;
}
.booking-summary-item strong {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.booking-summary-totals {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .55rem;
}
.booking-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: .95rem;
  color: var(--ink-soft);
}
.booking-summary-row strong { color: var(--ink); font-weight: 600; }
.booking-summary-total {
  margin-top: .25rem;
  padding-top: .55rem;
  border-top: 1px dashed var(--line);
  color: var(--ink);
  font-size: 1rem;
}
.pay-policy-note {
  margin: .9rem 0 0;
  font-size: .84rem;
  color: var(--ink-mute);
  line-height: 1.4;
}
.pay-actions {
  margin-top: 1.25rem;
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}
@media (max-width: 640px) {
  .pay-card {
    padding: 1rem;
  }
  .pay-actions .btn {
    flex: 1;
    min-width: 140px;
  }
}

/* Pagamento no agendamento / confirmação */
.payment-choices {
  margin-top: 1rem;
}
.payment-choice {
  cursor: pointer;
  padding: 1.15rem 1.25rem !important;
}
.payment-choice-head {
  display: flex;
  align-items: center;
  gap: .65rem;
  min-height: 1.6rem;
}
.pix-logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 110px;
  object-fit: contain;
}
.payment-choice strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: .15rem;
}
.confirm-panel {
  max-width: 720px;
  margin: 0 auto;
}
.confirm-value {
  color: var(--ink);
  margin: 0;
}
.confirm-pay-box {
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.confirm-pay-box h3 {
  margin-bottom: .5rem;
}
.confirm-pix-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink);
  margin: .35rem 0 .75rem;
  line-height: 1.1;
}
.pix-qr-wrap {
  margin: 1.25rem 0 .5rem;
  display: flex;
  justify-content: center;
}
.pix-qr-wrap img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: .5rem;
}
.page-shell .btn-secondary {
  border-color: var(--line);
  color: var(--ink);
}

/* —— Booking UX compact (mobile) — toggle: body.booking-ux-compact —— */
.wizard-progress { display: none; }
.booking-panel-hint { display: none; }
.booking-intro-lead { display: none; }
.booking-sticky-bar { display: none; }
.choice-check { display: none; }
.choice-desc { display: none; }
.choice-duration,
.choice-price { font-size: .9rem; color: var(--ink-soft); }
.choice-body {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .15rem .75rem;
}
.choice-body strong {
  flex: 1 1 100%;
  font-size: 1rem;
  color: var(--ink);
}
.choice-duration { flex: 1; }
.choice-price {
  margin-left: auto;
  font-weight: 600;
  color: var(--ink);
}

body.booking-ux-compact .booking-intro-lead { display: block; }
body.booking-ux-compact .booking-intro-lead-classic { display: none; }

@media (max-width: 899.98px) {
  body.booking-ux-compact.booking-page .wa-float {
    display: none !important;
  }

  body.booking-ux-compact .booking-shell.section-pad {
    padding-top: 1.15rem !important;
    padding-bottom: calc(5.5rem + var(--bottom-nav)) !important;
  }

  body.booking-ux-compact .page-intro {
    margin-bottom: 1rem;
  }
  body.booking-ux-compact .page-intro h1 {
    font-size: clamp(1.65rem, 6.5vw, 2.1rem);
    margin-bottom: .35rem;
  }
  body.booking-ux-compact .page-intro .lead {
    font-size: .95rem;
    line-height: 1.45;
  }
  body.booking-ux-compact .section-index {
    margin-bottom: .35rem;
    font-size: .72rem;
  }

  body.booking-ux-compact #wizardSteps {
    display: none !important;
  }
  body.booking-ux-compact .wizard-progress {
    display: block;
    margin-bottom: 1rem;
  }
  body.booking-ux-compact .wizard-progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: .75rem;
    margin-bottom: .45rem;
  }
  body.booking-ux-compact .wizard-progress-count {
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-mute);
  }
  body.booking-ux-compact .wizard-progress-count strong {
    color: var(--ink);
    font-weight: 600;
  }
  body.booking-ux-compact .wizard-progress-label {
    font-size: .92rem;
    font-weight: 600;
    color: var(--ink);
  }
  body.booking-ux-compact .wizard-progress-track {
    height: 4px;
    border-radius: 999px;
    background: rgba(44, 42, 40, .1);
    overflow: hidden;
  }
  body.booking-ux-compact .wizard-progress-fill {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--brown), var(--gold));
    transition: width .35s ease;
  }

  body.booking-ux-compact .booking-form-panel.editorial-panel {
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
  }

  body.booking-ux-compact .booking-panel-hint {
    display: block;
    margin: .25rem 0 0;
    font-size: .9rem;
    color: var(--ink-mute);
  }
  body.booking-ux-compact .wizard-panel > h3 {
    font-size: 1.2rem;
    margin: 0;
  }

  body.booking-ux-compact .booking-choices {
    gap: .7rem;
  }
  body.booking-ux-compact .choice-card {
    position: relative;
    align-items: flex-start;
    gap: .85rem;
    padding: .85rem;
    border-radius: 14px;
    background: #FFFCFA;
    border: 1px solid rgba(44, 42, 40, .08);
    box-shadow: none;
    transition: border-color .2s ease, transform .2s ease, background .2s ease;
  }
  body.booking-ux-compact .choice-card:active {
    transform: scale(.992);
  }
  body.booking-ux-compact .choice-card.selected,
  body.booking-ux-compact .choice-card:has(input:checked) {
    border-color: var(--brown);
    background: #fff;
    box-shadow: 0 0 0 1px var(--brown);
  }
  body.booking-ux-compact .choice-check {
    display: grid;
    place-items: center;
    position: absolute;
    top: .55rem;
    right: .55rem;
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    font-size: .7rem;
    background: var(--brown);
    color: #fff;
    opacity: 0;
    transform: scale(.7);
    transition: opacity .2s ease, transform .2s ease;
  }
  body.booking-ux-compact .choice-card.selected .choice-check,
  body.booking-ux-compact .choice-card:has(input:checked) .choice-check {
    opacity: 1;
    transform: scale(1);
  }
  body.booking-ux-compact .choice-thumb {
    width: 110px;
    height: 86px;
    border-radius: 12px;
  }
  body.booking-ux-compact .choice-thumb-round {
    width: 72px;
    height: 72px;
    border-radius: 50%;
  }
  body.booking-ux-compact .choice-body {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title title"
      "desc desc"
      "dur price";
    gap: .2rem .5rem;
    align-items: end;
    padding-right: 1.1rem;
  }
  body.booking-ux-compact .choice-body strong {
    grid-area: title;
    font-size: 1.02rem;
    line-height: 1.25;
  }
  body.booking-ux-compact .choice-desc {
    display: block;
    grid-area: desc;
    font-size: .82rem;
    line-height: 1.35;
    color: var(--ink-mute);
    margin: 0;
  }
  body.booking-ux-compact .choice-duration {
    grid-area: dur;
    font-size: .84rem;
    color: var(--ink-mute);
  }
  body.booking-ux-compact .choice-price {
    grid-area: price;
    font-size: 1.05rem;
    font-weight: 650;
    color: var(--ink);
    margin: 0;
  }

  body.booking-ux-compact .wizard-nav {
    display: none !important;
  }

  body.booking-ux-compact .booking-sticky-bar {
    display: flex;
    align-items: center;
    gap: .65rem;
    position: fixed;
    left: 0;
    right: 0;
    bottom: var(--bottom-nav);
    z-index: 65;
    padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 252, 250, .94);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(44, 42, 40, .08);
    box-shadow: 0 -8px 28px rgba(44, 42, 40, .06);
  }
  body.booking-ux-compact .booking-sticky-bar[hidden] {
    display: none !important;
  }
  body.booking-ux-compact .booking-sticky-back {
    flex: 0 0 auto;
    min-width: 2.6rem;
    padding-left: .7rem;
    padding-right: .7rem;
  }
  body.booking-ux-compact .booking-sticky-info {
    flex: 1;
    min-width: 0;
    display: grid;
    gap: .1rem;
  }
  body.booking-ux-compact .booking-sticky-info strong {
    font-size: .88rem;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  body.booking-ux-compact .booking-sticky-info span {
    font-size: .78rem;
    color: var(--ink-mute);
  }
  body.booking-ux-compact .booking-sticky-bar .btn-primary {
    flex: 0 0 auto;
    white-space: nowrap;
  }
  body.booking-ux-compact .booking-sticky-bar .btn-primary:disabled {
    opacity: .45;
  }
}

@media (min-width: 900px) {
  body.booking-ux-compact .wizard-progress,
  body.booking-ux-compact .booking-sticky-bar,
  body.booking-ux-compact .booking-panel-hint {
    display: none !important;
  }
  body.booking-ux-compact #wizardSteps {
    display: flex !important;
  }
  body.booking-ux-compact .choice-check {
    display: none;
  }
  body.booking-ux-compact .choice-desc {
    display: block;
    width: 100%;
    font-size: .85rem;
    color: var(--ink-mute);
    margin: .15rem 0 0;
  }
}

