:root {
  --bg: #fff8f9;
  --card: #ffffff;
  --text: #3b2d2f;
  --muted: #a88d94;
  --lilas: #d6b4e8;
  --lilas-strong: #c38bde;
  --ocupado: #e5e5e5;
  --disponivel-bg: #fff6f8;
  --disponivel-border: #d6b4e8;
  --agendado-bg: #f0e6ff;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background: var(--bg);
  display: grid;
  place-items: center;
  padding: 24px;
}

.wrap {
  width: 100%;
  max-width: 800px;
  background: var(--card);
  border-radius: 28px;
  box-shadow: 0 8px 20px
    color-mix(in srgb, var(--lilas-strong) 18%, transparent);
  padding: 28px 18px 22px;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px 0 22px;
}
.logo {
  width: 75%;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--lilas);
  box-shadow: 0 8px 18px
    color-mix(in srgb, var(--lilas-strong) 35%, transparent);
  background: color-mix(in srgb, var(--lilas) 14%, var(--card));
  max-width: 380px;
}

.title {
  text-align: center;
  margin: 14px 0 8px;
  font-weight: 700;
  font-size: clamp(18px, 3.6vw, 28px);
}
.subtitle {
  text-align: center;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(12px, 2.6vw, 14px);
}

.links {
  display: grid;
  gap: 12px;
  place-items: center;
  margin: 18px auto 8px;
  width: 100%;
}

.btn {
  width: 90%;
  max-width: 640px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  background: var(--accent);
  padding: 14px 18px;
  border-radius: 16px;
  font-size: clamp(15px, 3.8vw, 18px);
  font-weight: 600;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  box-shadow: 0 4px 12px
    color-mix(in srgb, var(--lilas-strong) 15%, transparent);
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px
    color-mix(in srgb, var(--lilas-strong) 30%, transparent);
}
.btn .emoji {
  font-size: 1.2em;
  line-height: 1;
}

footer {
  margin-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 12px;
  opacity: 0.85;
}
