:root {
  --primary: #1a1a1a;
  --secondary: #c9a227;
  --bg: #0f0f10;
  --bg-alt: #18181a;
  --card: #201f22;
  --text: #f2f0ec;
  --text-muted: #a8a5a0;
  --border: #2c2b2e;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --font: 'Poppins', 'Segoe UI', system-ui, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15,15,16,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: .3px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.brand .badge {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--secondary);
  color: #16150f;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: .92rem;
  color: var(--text-muted);
}

.nav-links a:hover { color: var(--text); }
.nav-links .nav-cta-mobile { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  transition: transform .15s ease, opacity .15s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, opacity .15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--secondary);
  color: #16150f;
}

.btn-primary:hover { opacity: .92; }

.btn-outline {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover { border-color: var(--secondary); }

.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: .85rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,162,39,.14), transparent 45%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 56px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  color: var(--secondary);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.12;
  margin: 0 0 18px;
  font-weight: 700;
}

.hero p.lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 46ch;
  margin: 0 0 32px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-cover {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(160deg, #2a2a2d, #131314);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cover img { width: 100%; height: 100%; object-fit: cover; }
.hero-cover .placeholder { color: var(--text-muted); font-size: .9rem; text-align: center; padding: 24px; }

/* ---------- Sections ---------- */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }

.section-head { margin-bottom: 40px; text-align: center; }
.section-head h2 { font-size: 1.9rem; margin: 0 0 10px; font-weight: 700; }
.section-head p { color: var(--text-muted); margin: 0; }

.grid {
  display: grid;
  gap: 22px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: border-color .15s ease, transform .15s ease;
}

.card:hover { border-color: var(--secondary); transform: translateY(-3px); }

.service-card { display: flex; flex-direction: column; gap: 10px; }
.service-card .name { font-weight: 600; font-size: 1.05rem; }
.service-card .desc { color: var(--text-muted); font-size: .88rem; flex: 1; }
.service-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: .9rem;
}
.service-card .price { color: var(--secondary); font-weight: 700; font-size: 1.05rem; }

.pro-card { text-align: center; }
.pro-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: linear-gradient(160deg, #333, #1c1c1e);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--secondary);
  overflow: hidden;
}
.pro-avatar img { width: 100%; height: 100%; object-fit: cover; }
.pro-card .name { font-weight: 600; }
.pro-card .bio { color: var(--text-muted); font-size: .85rem; margin-top: 6px; }

.hours-list { display: flex; flex-direction: column; gap: 10px; max-width: 420px; margin: 0 auto; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: .9rem;
}
.hours-row .closed { color: #d16b6b; }

/* ---------- Footer ---------- */
.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: .85rem;
}
.site-footer .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.social-links { display: flex; gap: 14px; }

/* ---------- Booking flow ---------- */
.booking-shell {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 0 100px;
}

.booking-intro { margin-bottom: 28px; }
.booking-back {
  display: inline-block;
  color: var(--text-muted);
  font-size: .85rem;
  margin-bottom: 14px;
}
.booking-back:hover { color: var(--secondary); }
.booking-intro h1 { font-size: 1.6rem; margin: 0 0 8px; }
.booking-intro .sub { color: var(--text-muted); margin: 0; }
.booking-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 16px;
  padding: 12px 16px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--text-muted);
}

.booking-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  max-width: 140px;
  color: var(--text-muted);
}
.step-dot .dot-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
}
.step-dot .dot-label { font-size: .74rem; text-align: center; }
.step-dot.active .dot-num { background: var(--secondary); color: #16150f; border-color: var(--secondary); }
.step-dot.active .dot-label { color: var(--text); font-weight: 600; }
.step-dot.done .dot-num { background: rgba(201,162,39,.18); border-color: var(--secondary); color: var(--secondary); }

.wizard-recap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  padding: 10px 16px;
  background: rgba(201,162,39,.08);
  border: 1px solid var(--secondary);
  border-radius: var(--radius);
  font-size: .85rem;
  color: var(--text);
}
.wizard-recap .recap-sep { color: var(--text-muted); margin: 0 4px; }

.step-eyebrow { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; color: var(--secondary); font-weight: 700; margin-bottom: 6px; }
.step-desc { color: var(--text-muted); font-size: .88rem; margin: 6px 0 0; }
.form-note { color: var(--text-muted); font-size: .82rem; margin: -6px 0 20px; }

.option-group-title { font-size: .95rem; color: var(--secondary); margin: 24px 0 12px; }
.option-group-title:first-child { margin-top: 0; }

.selection-total {
  margin-top: 20px;
  padding: 12px 16px;
  background: rgba(201,162,39,.1);
  border: 1px solid var(--secondary);
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.pro-avatar-sm {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.pro-avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #16150f;
  font-weight: 700;
}

.option-list { display: flex; flex-direction: column; gap: 12px; }

.option-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.option-item:hover { border-color: var(--secondary); }
.option-item.selected { border-color: var(--secondary); background: rgba(201,162,39,.08); }
.option-item .title { font-weight: 600; }
.option-item .sub { color: var(--text-muted); font-size: .85rem; }
.option-item .price { color: var(--secondary); font-weight: 700; white-space: nowrap; }
.option-item-main { display: flex; align-items: center; gap: 14px; min-width: 0; }
.option-thumb { width: 52px; height: 52px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.slot-btn {
  padding: 10px 0;
  text-align: center;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  font-size: .88rem;
}
.slot-btn:hover { border-color: var(--secondary); }
.slot-btn.selected { background: var(--secondary); color: #16150f; border-color: var(--secondary); }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; margin-bottom: 8px; font-size: .88rem; color: var(--text-muted); }
.field-hint { display: block; margin-top: 6px; font-size: .78rem; color: var(--text-muted); }
.field-error { display: none; margin-top: 6px; font-size: .78rem; color: #e05d5d; }
.form-field.has-error input { border-color: #e05d5d; }
.form-field.has-error .field-error { display: block; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 13px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  font-family: var(--font);
  font-size: .95rem;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--secondary);
}

.summary-box {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.summary-box .row { display: flex; justify-content: space-between; padding: 6px 0; font-size: .92rem; }
.summary-box .row .k { color: var(--text-muted); }

.wizard-nav { display: flex; justify-content: space-between; margin-top: 32px; }

.alert {
  padding: 14px 18px;
  border-radius: 10px;
  margin-bottom: 22px;
  font-size: .9rem;
}
.alert-error { background: rgba(209,107,107,.12); border: 1px solid rgba(209,107,107,.4); color: #e79b9b; }
.alert-success { background: rgba(90,178,120,.12); border: 1px solid rgba(90,178,120,.4); color: #9fdcb6; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.success-shell {
  max-width: 560px;
  margin: 90px auto;
  text-align: center;
  padding: 0 24px;
}
.success-icon {
  width: 76px; height: 76px; border-radius: 50%;
  background: rgba(201,162,39,.15);
  color: var(--secondary);
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
}

/* ---------- Galeria ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.gallery-item {
  display: block;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.service-thumb { border-radius: 10px; overflow: hidden; aspect-ratio: 16/10; margin-bottom: 4px; }
.service-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Depoimentos ---------- */
.testimonial-card { display: flex; flex-direction: column; gap: 10px; }
.testimonial-card .stars { color: var(--secondary); letter-spacing: 2px; }
.testimonial-card .quote { color: var(--text-muted); font-size: .92rem; flex: 1; font-style: italic; }
.testimonial-card .author { font-weight: 600; font-size: .88rem; }

@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-cover { order: -1; aspect-ratio: 1/1; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .nav-toggle { display: flex; }
  .nav-cta-desktop { display: none; }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links a { padding: 14px 24px; border-top: 1px solid var(--border); }
  .nav-links .nav-cta-mobile { display: inline-flex; margin: 14px 24px; }
}

@media (max-width: 520px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 64px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Compatibilidade mobile ---------- */
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 1.5rem; }
  .card { padding: 20px; }

  .booking-shell { padding: 32px 0 72px; }
  .option-item { padding: 15px 16px; gap: 10px; }
  .wizard-nav { gap: 12px; }
  .wizard-nav .btn { flex: 1; }
  .summary-box { padding: 18px; }
  .success-shell { margin: 48px auto; }

  .hours-list { max-width: 100%; }

  .booking-intro h1 { font-size: 1.3rem; }
  .booking-info-bar { flex-direction: column; gap: 6px; }
  .step-dot .dot-label { display: none; }
  .step-dot.active .dot-label { display: block; }
  .wizard-recap { font-size: .78rem; padding: 8px 12px; }
}

/* Evita zoom automático do iOS ao focar campos com fonte < 16px */
@media (max-width: 960px) {
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 16px;
  }
}
