:root {
  --bg: #f4f1ea;
  --ink: #1c1a17;
  --ink-soft: #4a453e;
  --gold: #c9a34e;
  --gold-dark: #a8842f;
  --card: #ffffff;
  --border: #e7e1d4;
  --danger: #b3261e;
  --success-bg: #eaf5ea;
  --success-fg: #2e7d32;
  --warn-bg: #fdf3e3;
  --warn-fg: #a8641c;
  --radius: 14px;
  --shadow: 0 4px 16px rgba(28, 26, 23, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Hero */

.hero {
  background: radial-gradient(ellipse at 60% 10%, rgba(201, 163, 78, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(201, 163, 78, 0.1) 0%, transparent 50%),
    linear-gradient(162deg, #14120f 0%, #1c1a17 50%, #14120f 100%);
  color: #fff;
  text-align: center;
  padding: 3.5rem 1.25rem 3rem;
}

.hero-content {
  max-width: 480px;
  margin: 0 auto;
}

.hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 48px rgba(201, 163, 78, 0.3);
}

.hero-badge {
  margin: 1.1rem 0 0;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.hero-title {
  font-family: "Bebas Neue", "Inter", sans-serif;
  letter-spacing: 0.05em;
  font-size: clamp(2rem, 8vw, 2.75rem);
  margin: 0.6rem 0 0;
  line-height: 1.05;
}

.hero-tagline {
  color: #d8d3c8;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0.9rem 0 0;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin: 1.6rem 0 1.8rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat strong {
  font-family: "Bebas Neue", "Inter", sans-serif;
  font-size: 1.4rem;
  color: var(--gold);
  letter-spacing: 0.03em;
}

.hero-stat span {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a9284;
  margin-top: 0.15rem;
}

.hero-stat-div {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-cta {
  display: block;
  text-decoration: none;
  max-width: 320px;
  margin: 0 auto;
}

.hero-instagram {
  display: block;
  margin-top: 1rem;
  color: #b8ac91;
  font-size: 0.85rem;
  text-decoration: none;
}

.hero-instagram:hover {
  color: var(--gold);
}

/* Diferenciais */

.diferenciais {
  padding: 2.75rem 0;
  background: var(--bg);
}

.lbl {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.section-title {
  font-family: "Bebas Neue", "Inter", sans-serif;
  letter-spacing: 0.03em;
  font-size: clamp(1.5rem, 6vw, 1.9rem);
  margin: 0 0 1.4rem;
}

.dif-grid {
  display: grid;
  gap: 0.75rem;
}

.dif-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.25rem;
  box-shadow: var(--shadow);
}

.dif-icon {
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}

.dif-icon svg {
  width: 26px;
  height: 26px;
}

.dif-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.dif-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Booking section */

.booking-section {
  padding: 2.75rem 0 1rem;
}

.tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.nav-btn {
  flex: 1;
  padding: 0.6rem 0.4rem;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--ink-soft);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.15s ease;
}

.nav-btn:hover {
  border-color: var(--gold);
  color: var(--ink);
}

.nav-btn.active {
  background: var(--gold);
  color: #1c1a17;
  border-color: var(--gold);
  font-weight: 600;
}

main {
  padding-bottom: 1rem;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 0.85rem;
  box-shadow: var(--shadow);
  animation: fade-in 0.2s ease;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.step-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.9rem;
  line-height: 1.4;
}

.option-btn {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  margin-bottom: 0.55rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.15s ease;
}

.option-btn:hover {
  border-color: var(--gold);
  background: #fdfaf3;
  transform: translateX(2px);
}

.option-btn:last-child {
  margin-bottom: 0;
}

.slot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.slot-grid .option-btn {
  text-align: center;
  font-size: 0.9rem;
  padding: 0.7rem 0.5rem;
}

.slot-grid .option-btn .muted {
  display: block;
  margin-top: 0.15rem;
}

.muted {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.loading {
  text-align: center;
  padding: 2rem 1rem;
  color: var(--ink-soft);
}

.spinner {
  width: 28px;
  height: 28px;
  margin: 0 auto 0.75rem;
  border: 3px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

input[type="text"],
input[type="tel"],
select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.15s ease;
  background: #fff;
  color: var(--ink);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%234a453e'%3E%3Cpath d='M5.5 7.5l4.5 4.5 4.5-4.5' stroke='%234a453e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}

input[type="text"]:focus,
input[type="tel"]:focus,
select:focus {
  outline: none;
  border-color: var(--gold);
}

.primary-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.primary-btn {
  width: 100%;
  padding: 0.85rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(160deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1c1a17;
  font-family: inherit;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: filter 0.15s ease;
}

.primary-btn:hover {
  filter: brightness(1.05);
}

.secondary-btn {
  width: 100%;
  padding: 0.7rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  margin-top: 0.6rem;
  color: var(--danger);
  border-color: #f0d4d1;
  transition: all 0.15s ease;
}

.secondary-btn:hover {
  background: #fdf3f2;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.9rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
  cursor: pointer;
}

.back-link:hover {
  color: var(--ink);
}

.appointment-item {
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

.appointment-item:first-child {
  padding-top: 0;
}

.appointment-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.appointment-service {
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.status-tag {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  background: var(--success-bg);
  color: var(--success-fg);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 0.4rem;
}

.status-tag.pendente {
  background: var(--warn-bg);
  color: var(--warn-fg);
}

.confirmation-icon {
  display: flex;
  justify-content: center;
  color: var(--success-fg);
  margin-bottom: 0.5rem;
}

.confirmation-icon svg {
  width: 44px;
  height: 44px;
}

.error {
  color: var(--danger);
  font-size: 0.88rem;
  margin-bottom: 0.6rem;
}

footer {
  background: #14120f;
  color: #948b78;
  text-align: center;
  padding: 2.25rem 1rem;
  margin-top: auto;
}

.footer-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.6rem;
}

.footer-name {
  font-family: "Bebas Neue", "Inter", sans-serif;
  letter-spacing: 0.05em;
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
}

.footer-line {
  margin: 0.2rem 0;
  font-size: 0.8rem;
}

.footer-line a {
  color: var(--gold);
  text-decoration: none;
}

.footer-line a:hover {
  text-decoration: underline;
}
