:root {
  --ink:          #121011;
  --ink-soft:     #1C1917;
  --ink-elev:     #24201D;
  --border:       rgba(243,233,221,0.08);
  --border-light: rgba(243,233,221,0.16);
  --border-gold:  rgba(173,138,84,0.35);
  --cream:        #F3E9DD;
  --text-muted:   rgba(243,233,221,0.50);
  --text-dim:     rgba(243,233,221,0.24);
  --blush:        #D8A9A3;
  --blush-dim:    rgba(216,169,163,0.14);
  --gold:         #AD8A54;
  --gold-light:   #C9A876;
  --gold-dim:     rgba(173,138,84,0.14);
  --terracotta:   #A85C3B;
  --red:          rgba(239,68,68,0.7);
  --sheet:        #FBF6EF;
  --sheet-text:   #2A211B;
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-accent:  'Instrument Serif', serif;
  --font-sans:    'Inter', sans-serif;
  --w:            480px;
  --r:            14px;
  --r-lg:         20px;
}

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

html { scroll-behavior: smooth; }

body {
  background: #000;
  color: var(--cream);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  position: relative;
  max-width: var(--w);
  margin: 0 auto;
  background: var(--ink);
  background-image:
    radial-gradient(ellipse 80% 40% at 50% 0%,  rgba(173,138,84,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 60% 30% at 80% 60%, rgba(216,169,163,0.05) 0%, transparent 70%);
}

@media (min-width: 560px) {
  .page {
    margin: 28px auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(243,233,221,0.06),
      0 40px 120px rgba(0,0,0,0.85);
  }
}

/* ═══════════════════════════════════════════════════════════
   HERO — recorte das fundadoras sobre fundo ink, sem foto de estúdio
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  max-width: var(--w);
  margin: 0 auto;
  overflow: hidden;
  padding-top: 22px;
  background-image:
    radial-gradient(ellipse 90% 50% at 50% 0%,  rgba(173,138,84,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 70% 40% at 85% 70%, rgba(216,169,163,0.09) 0%, transparent 70%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}

.hero__top {
  position: relative;
  z-index: 2;
  padding: 0 26px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero__logo {
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.hero__tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(243,233,221,0.06);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  padding: 7px 12px;
}

/* recorte com "DESTRAVE" já embutido na arte — só flutua sobre o fundo ink */
.hero__art-wrap {
  position: relative;
  z-index: 1;
}

.hero__art {
  display: block;
  width: 92%;
  margin: 0 auto;
}

.hero__pill-float {
  position: absolute;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--cream);
  background: rgba(18,16,17,0.55);
  border: 1px solid var(--border-gold);
  border-radius: 999px;
  padding: 7px 14px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}

.hero__pill-float--a { left: 4%;  top: 44%; }
.hero__pill-float--b { right: 5%; top: 82%; }

.hero__overlay {
  position: relative;
  z-index: 2;
  padding: 6px 26px 24px;
  text-align: center;
}

.hero__caption {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 15px;
  color: var(--cream);
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════
   IDENTITY
═══════════════════════════════════════════════════════════ */
.identity {
  max-width: var(--w);
  margin: 0 auto;
  padding: 30px 24px 8px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.identity__eyebrow {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

.identity__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 21px;
  line-height: 1.42;
  color: var(--cream);
  max-width: 320px;
  margin: 0 auto 18px;
}

.social-pills {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 4px;
}

.social-pills a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--ink-soft);
  color: var(--text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}

.social-pills a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: var(--gold-dim);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   SECTION LABEL
═══════════════════════════════════════════════════════════ */
.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════
   QUEM SOMOS
═══════════════════════════════════════════════════════════ */
.about-wrap {
  max-width: var(--w);
  margin: 44px auto 48px;
  padding: 0 20px;
}

.about-card {
  background: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.about-card__photo-frame {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.about-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 22% 35%;
  filter: brightness(0.94) contrast(1.02);
}

.about-card__photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,16,17,0.85), transparent 55%);
}

.about-card__names {
  position: absolute;
  left: 20px; bottom: 14px;
  display: inline-block;
  background: rgba(18,16,17,0.62);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 8px 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.4px;
  color: var(--cream);
  text-transform: uppercase;
  line-height: 1.5;
}

.about-card__body {
  padding: 22px 22px 26px;
}

.about-card__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
}

.about-card__text strong {
  color: var(--cream);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   TRIAGE CARD
═══════════════════════════════════════════════════════════ */
.triage-wrap {
  max-width: var(--w);
  margin: 0 auto 48px;
  padding: 0 20px;
}

.triage-card {
  position: relative;
  background: var(--ink-soft);
  border-radius: var(--r-lg);
  padding: 30px 26px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.25s;
  box-shadow:
    0 0 0 1px rgba(173,138,84,0.22),
    0 24px 60px rgba(0,0,0,0.45);
}

.triage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent 100%);
}

.triage-card::after {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 160px;
  background: radial-gradient(ellipse, rgba(216,169,163,0.16), transparent 70%);
  pointer-events: none;
}

.triage-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 0 0 1px rgba(173,138,84,0.4),
    0 32px 80px rgba(0,0,0,0.5),
    0 0 60px rgba(173,138,84,0.08);
}

.triage-card__icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--blush));
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 17px;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(173,138,84,0.35);
}

.triage-card__title {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 22px;
  line-height: 1.32;
  margin-bottom: 10px;
  color: var(--cream);
  position: relative;
  z-index: 1;
}

.triage-card__sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.triage-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  color: var(--cream);
  border-radius: 999px;
  padding: 12px 22px;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
  transition: filter 0.2s, transform 0.15s;
}

.triage-card:hover .triage-card__btn {
  filter: brightness(1.08);
  transform: translateX(2px);
}

/* ═══════════════════════════════════════════════════════════
   VITRINE — carrossel de cards (imagem · nome · botão), como
   a fileira "Como posso te ajudar hoje" da referência
═══════════════════════════════════════════════════════════ */
.vitrine-wrap {
  max-width: var(--w);
  margin: 0 auto 48px;
  padding: 0 20px;
}

.vitrine-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 -20px;
  padding: 2px 20px 6px;
}
.vitrine-track::-webkit-scrollbar { display: none; }

.vtile {
  flex: 0 0 46%;
  scroll-snap-align: start;
  cursor: pointer;
}

.vtile__art {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  transition: transform 0.2s;
  background: var(--ink-soft);
}

.vtile:hover .vtile__art { transform: translateY(-3px); }

/* foto real, tonalizada pra casar com a paleta da página */
.vtile__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) saturate(0.85) contrast(1.08) brightness(0.86);
}

/* lavagem de cor por categoria, sobre a foto */
.vtile__tint {
  position: absolute;
  inset: 0;
  mix-blend-mode: color;
}
.vtile--massagem .vtile__tint { background: var(--blush);      opacity: 0.55; }
.vtile--facial   .vtile__tint { background: var(--gold-light); opacity: 0.45; }
.vtile--corporal .vtile__tint { background: var(--terracotta); opacity: 0.5; }

/* grão sutil por cima, mesma textura do hero */
.vtile__art::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
}

/* legenda minimalista sobre a capa — itálico fino, branco */
.vtile__caption {
  position: absolute;
  left: 14px; right: 14px; bottom: 12px;
  z-index: 2;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 16px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}

.vtile__split-label {
  position: absolute;
  bottom: 12px;
  z-index: 2;
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 14px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.55);
}
.vtile__split-label--left  { left: 12px; }
.vtile__split-label--right { right: 12px; }

.vtile__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.2px;
  color: var(--cream);
  text-transform: uppercase;
  margin: 12px 0 2px;
}

.vtile__desc {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 10px;
}

.vtile__btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}

.vtile:hover .vtile__btn { background: var(--gold-light); transform: translateX(2px); }

/* ═══════════════════════════════════════════════════════════
   AGENDA — 4 passos
═══════════════════════════════════════════════════════════ */
.calendar-wrap {
  max-width: var(--w);
  margin: 0 auto 48px;
  padding: 0 20px;
}

.scarcity-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #fca5a5;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.22);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}

.scarcity-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #f87171;
  flex-shrink: 0;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.cal-widget {
  background: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

/* step tabs — "1 Dia · 2 Horário · 3 Serviço · 4 Dados" */
.step-tabs {
  display: flex;
  padding: 16px 14px 0;
  gap: 4px;
}

.step-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: transparent;
  border: none;
  color: var(--text-dim);
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 0 0 12px;
  cursor: default;
  border-bottom: 2px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
}

.step-tab__num {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--ink-elev);
  color: var(--text-dim);
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-tab--reached { cursor: pointer; color: var(--text-muted); }
.step-tab--active {
  color: var(--cream);
  border-color: var(--gold);
}
.step-tab--active .step-tab__num {
  background: var(--gold);
  color: var(--ink);
}
.step-tab--done .step-tab__num {
  background: var(--gold-dim);
  color: var(--gold-light);
}

.cal-top {
  padding: 16px 20px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cal-top__eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3px;
  opacity: 0.9;
}

.cal-top__month {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.2px;
  color: var(--cream);
}

.cal-top__nav {
  display: flex;
  gap: 6px;
}

.cal-top__nav button {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 11px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s;
}

.cal-top__nav button:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 0 14px;
}

.cal-wd {
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-dim);
  padding: 2px 0 8px;
}

.cal-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.cal-track::-webkit-scrollbar { display: none; }

.cal-month {
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 0 14px 12px;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 500;
  gap: 1px;
  position: relative;
}

.cal-day--empty   { pointer-events: none; }
.cal-day--past    { color: var(--text-dim); }
.cal-day--weekend { color: var(--text-dim); }

.cal-day--lotado { color: rgba(243,233,221,0.32); }
.cal-day--lotado::after {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--red);
}

.cal-day--disponivel {
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
}
.cal-day--disponivel:hover { background: rgba(173,138,84,0.24); transform: scale(1.05); }

.cal-day--selected {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.cal-day--selected .cal-day__slots { color: var(--ink); opacity: 0.7; }

.cal-day__slots {
  font-size: 8px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.cal-day--today { box-shadow: 0 0 0 1.5px var(--gold); }

.cal-hint {
  text-align: center;
  font-size: 10.5px;
  color: var(--text-dim);
  padding: 2px 14px 10px;
}

.cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 12px 18px 16px;
  border-top: 1px solid var(--border);
}

.cal-legend__item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--text-muted);
}

.cal-legend__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.cal-legend__dot--disp { background: var(--gold); }
.cal-legend__dot--lot  { background: var(--red); }

/* passo 2 — horário */
.step-panel { padding: 20px; }

.step-panel__title {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.step-panel__title strong { color: var(--cream); }

.horario-grid, .servico-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.horario-btn, .servico-btn {
  background: var(--ink-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
  text-align: left;
}

.horario-btn { text-align: center; }

.horario-btn:hover, .servico-btn:hover {
  border-color: var(--gold);
  background: var(--gold-dim);
}

.servico-btn__name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.servico-btn__hint {
  display: block;
  font-size: 11.5px;
  color: var(--text-muted);
  font-weight: 400;
}

.dados-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dados-input {
  background: var(--ink-elev);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--cream);
  outline: none;
  transition: border-color 0.15s;
}
.dados-input::placeholder { color: var(--text-dim); }
.dados-input:focus { border-color: var(--gold); }

.dados-summary {
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.dados-summary strong { color: var(--gold-light); }

.dados-disclaimer {
  font-size: 11px;
  color: var(--text-dim);
  text-align: center;
  line-height: 1.6;
}

.step-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-family: var(--font-sans);
  cursor: pointer;
  margin-bottom: 14px;
  padding: 0;
}
.step-back:hover { color: var(--cream); }

/* ═══════════════════════════════════════════════════════════
   DEPOIMENTOS
═══════════════════════════════════════════════════════════ */
.testimonials-wrap {
  max-width: var(--w);
  margin: 0 auto 48px;
  padding: 0 20px;
}

.testimonials-track {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  margin: 0 -20px;
  padding: 0 20px 4px;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.t-card {
  flex: 0 0 78%;
  scroll-snap-align: start;
  background: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px 20px;
}

.t-card__quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--cream);
  margin-bottom: 14px;
}

.t-card__author {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL SECTION
═══════════════════════════════════════════════════════════ */
.social-section {
  max-width: var(--w);
  margin: 0 auto 40px;
  padding: 0 20px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--ink-soft);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 16px 18px;
  text-decoration: none;
  color: var(--cream);
  transition: border-color 0.2s, transform 0.15s, box-shadow 0.2s;
}

.social-link:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.social-link__icon {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink-elev);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.social-link[data-platform="instagram"]:hover .social-link__icon {
  background: rgba(216,169,163,0.16);
  color: var(--blush);
}

.social-link__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  line-height: 1;
}

.social-link__handle {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1;
  margin-top: 3px;
  display: block;
}

.social-link__icon + span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
}

.social-link__arrow {
  font-size: 12px;
  color: var(--text-dim);
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.social-link:hover .social-link__arrow {
  color: var(--text-muted);
  transform: translate(2px, -2px);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
footer {
  text-align: center;
  padding: 30px 24px 34px;
  border-top: 1px solid var(--border);
  max-width: var(--w);
  margin: 0 auto;
}

.footer__logo {
  height: 64px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: 12px;
}

footer p {
  color: var(--text-dim);
  font-size: 11.5px;
  letter-spacing: 0.3px;
}

/* ═══════════════════════════════════════════════════════════
   MODAL — folha de produto (fundo claro, sempre)
═══════════════════════════════════════════════════════════ */
.product-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18,16,17,0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1001;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.product-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.product-modal {
  position: relative;
  width: 100%;
  max-width: var(--w);
  background: var(--sheet);
  border-radius: 24px 24px 0 0;
  padding: 32px 24px 36px;
  transform: translateY(40px);
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
  color: var(--sheet-text);
  max-height: 86vh;
  overflow-y: auto;
}

.product-overlay.active .product-modal { transform: translateY(0); }

@media (min-width: 520px) {
  .product-overlay { align-items: center; }
  .product-modal   { border-radius: 24px; }
}

.product-modal__close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(42,33,27,0.06);
  border: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sheet-text);
  transition: background 0.15s;
}
.product-modal__close:hover { background: rgba(42,33,27,0.12); }

.product-modal__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.product-modal__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--sheet-text);
  padding-right: 32px;
  letter-spacing: 0.2px;
}

.product-modal__summary {
  font-size: 14px;
  color: #55483F;
  line-height: 1.78;
  margin-bottom: 18px;
}

.product-modal__list {
  list-style: none;
  background: rgba(173,138,84,0.08);
  border-radius: 14px;
  padding: 6px 18px;
  margin-bottom: 24px;
}

.product-modal__list li {
  font-size: 13.5px;
  color: #55483F;
  padding: 11px 0;
  border-bottom: 1px solid rgba(42,33,27,0.08);
}
.product-modal__list li:last-child { border-bottom: none; }
.product-modal__list li::before {
  content: '·';
  color: var(--gold);
  margin-right: 8px;
  font-weight: 700;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  color: var(--cream);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: filter 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(168,92,59,0.3);
}

.whatsapp-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.whatsapp-btn:disabled { opacity: 0.5; cursor: not-allowed; }

/* entrada pro quiz, dentro da view de lista */
.quiz-entry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  background: transparent;
  border: 1px dashed rgba(42,33,27,0.25);
  border-radius: 999px;
  padding: 13px 18px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--terracotta);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.quiz-entry-btn:hover { background: rgba(168,92,59,0.06); border-color: var(--terracotta); }

/* ═══════════════════════════════════════════════════════════
   QUIZ DE INDICAÇÃO — dentro do mesmo sheet claro do modal
═══════════════════════════════════════════════════════════ */
.qz-progress {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.qz-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 21px;
  text-transform: uppercase;
  line-height: 1.22;
  margin-bottom: 18px;
  color: var(--sheet-text);
  padding-right: 24px;
}

.qz-options {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.qz-option {
  text-align: left;
  background: rgba(173,138,84,0.08);
  border: 1px solid rgba(42,33,27,0.1);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--sheet-text);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}
.qz-option:hover {
  border-color: var(--gold);
  background: rgba(173,138,84,0.16);
  transform: translateX(2px);
}

.qz-input {
  width: 100%;
  background: rgba(42,33,27,0.04);
  border: 1px solid rgba(42,33,27,0.16);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--sheet-text);
  outline: none;
  margin-bottom: 12px;
  transition: border-color 0.15s;
}
.qz-input::placeholder { color: rgba(42,33,27,0.35); }
.qz-input:focus { border-color: var(--terracotta); }

.qz-next {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: linear-gradient(135deg, var(--terracotta), var(--gold));
  color: var(--cream);
  border: none;
  border-radius: 999px;
  padding: 14px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: filter 0.2s, transform 0.15s;
}
.qz-next:hover { filter: brightness(1.08); transform: translateY(-1px); }

.qz-reveal-art {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 18px;
}
.qz-reveal-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) saturate(0.9) contrast(1.04);
}

.qz-reveal-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}

.qz-reveal-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1.08;
  color: var(--sheet-text);
  margin-bottom: 14px;
}

.qz-reveal-why {
  font-size: 14px;
  color: #55483F;
  line-height: 1.75;
  margin-bottom: 20px;
}

.qz-reveal-quote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 17px;
  color: #55483F;
  background: rgba(173,138,84,0.08);
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 22px;
  line-height: 1.5;
}
.qz-reveal-quote span {
  display: block;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gold);
}
