:root {
  --bg: #0a0a0c;
  --bg-2: #101013;
  --surface: #16161b;
  --surface-2: #1e1e25;
  --surface-3: #26262f;
  --gold: #d4af37;
  --gold-light: #f6e27a;
  --gold-dark: #8a6d1f;
  --cream: #f5f1e8;
  --muted: #9c9ca6;
  --line: rgba(212, 175, 55, 0.18);
  --line-soft: rgba(255, 255, 255, 0.08);
  --danger: #e05656;
  --ok: #6fbf73;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.55);
  --font-head: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(900px 480px at 15% -10%, rgba(212, 175, 55, 0.09), transparent 60%),
    radial-gradient(700px 420px at 90% 0%, rgba(212, 175, 55, 0.06), transparent 60%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.008) 0 1px, transparent 1px 26px);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
}

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

img, svg {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 56px;
}

.section-title .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.section-title .eyebrow::before,
.section-title .eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.section-title .eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.section-title h2 {
  font-size: clamp(30px, 4vw, 46px);
  color: var(--cream);
}

.section-title h2 span {
  color: var(--gold);
  font-style: italic;
}

.section-title p {
  color: var(--muted);
  max-width: 560px;
  margin: 14px auto 0;
}

.gold-text {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 40%, var(--gold-dark) 60%, var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  font-family: var(--font-body);
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  text-align: center;
}

.btn svg {
  width: 18px;
  height: 18px;
}

.btn-gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: #17130a;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.45);
}

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

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

.btn-ghost {
  background: var(--surface-2);
  color: var(--cream);
  border-color: var(--line-soft);
}

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

.btn-danger {
  background: transparent;
  border-color: rgba(224, 86, 86, 0.45);
  color: var(--danger);
}

.btn-danger:hover {
  background: rgba(224, 86, 86, 0.12);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 13px;
}

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none !important;
}

/* ===== Navbar ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(10, 10, 12, 0.88);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.nav-inner {
  width: min(1180px, 92%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.nav .logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav .logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #15151a, #0c0c0f);
  box-shadow: inset 0 0 18px rgba(212, 175, 55, 0.12);
}

.nav .logo-mark svg {
  width: 28px;
  height: 28px;
}

.nav .logo-text {
  font-family: var(--font-head);
  font-size: 17px;
  letter-spacing: 1.5px;
  color: var(--cream);
  line-height: 1.1;
}

.nav .logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
}

.nav-burger {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
}

.nav-burger svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(10, 10, 12, 0.97);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 49;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 16px;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: block;
  }
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 40%, var(--bg)),
    radial-gradient(600px 400px at 85% 30%, rgba(212, 175, 55, 0.12), transparent 65%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 26px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 12px var(--ok);
}

.hero h1 {
  font-size: clamp(38px, 6vw, 72px);
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.hero h1 .line {
  display: block;
}

.hero p {
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
  margin-bottom: 36px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 54px;
}

.hero-stats .stat strong {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--gold-light);
  display: block;
}

.hero-stats .stat span {
  font-size: 12.5px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-card {
  background: linear-gradient(170deg, var(--surface-2), var(--surface));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-card .next-title {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-ticket {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: 14px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  margin-bottom: 12px;
}

.hero-ticket .date-box {
  min-width: 60px;
  height: 66px;
  border-radius: 12px;
  background: linear-gradient(160deg, var(--gold), var(--gold-dark));
  color: #17130a;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 22px;
  line-height: 1;
}

.hero-ticket .date-box small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

.hero-ticket h4 {
  font-size: 15px;
}

.hero-ticket p {
  font-size: 12.5px;
  color: var(--muted);
  margin: 2px 0 0;
}

.hero-ticket .status {
  margin-left: auto;
  font-size: 11px;
  color: var(--ok);
  border: 1px solid rgba(111, 191, 115, 0.4);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.hero-float {
  position: absolute;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 13px;
  background: rgba(22, 22, 27, 0.92);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-float .ic {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.hero-float .ic svg {
  width: 17px;
  height: 17px;
}

.hero-float strong {
  display: block;
  font-size: 13.5px;
}

.hero-float span {
  font-size: 11.5px;
  color: var(--muted);
}

.hero-float.f1 {
  top: -26px;
  right: -10px;
  animation: float 6s ease-in-out infinite;
}

.hero-float.f2 {
  bottom: -24px;
  left: -16px;
  animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-visual {
    max-width: 460px;
    margin: 0 auto;
  }

  .hero-stats {
    gap: 26px;
    flex-wrap: wrap;
  }
}

/* ===== Marquee strip ===== */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding: 20px 0;
  overflow: hidden;
}

.strip-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.strip-track span {
  display: flex;
  align-items: center;
  gap: 56px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 19px;
  letter-spacing: 3px;
  color: var(--gold);
  white-space: nowrap;
}

.strip-track span::after {
  content: "•";
  font-style: normal;
  color: var(--gold-dark);
  font-size: 18px;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.22s;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .s-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card .s-icon svg {
  width: 26px;
  height: 26px;
}

.service-card h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 20px;
  min-height: 40px;
}

.service-card .s-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

.service-card .price {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--gold-light);
}

.service-card .duration {
  font-size: 12px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card .duration svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 980px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Professionals ===== */
.profs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.prof-card {
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.prof-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
}

.avatar {
  width: 92px;
  height: 92px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 30px;
  font-weight: 700;
  color: #17130a;
  position: relative;
}

.avatar::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px dashed var(--gold);
  opacity: 0.5;
}

.prof-card h3 {
  font-size: 22px;
}

.prof-card .role {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 6px 0 14px;
}

.prof-card p {
  color: var(--muted);
  font-size: 13.5px;
}

.prof-card .days {
  margin-top: 18px;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.prof-card .days span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  font-size: 11px;
  border-radius: 8px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  color: var(--muted);
}

.prof-card .days span.on {
  color: #17130a;
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  border-color: transparent;
  font-weight: 700;
}

@media (max-width: 860px) {
  .profs-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ===== How it works ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 34px 24px;
}

.step-card .num {
  font-family: var(--font-head);
  font-size: 44px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212, 175, 55, 0.55);
  position: absolute;
  top: 18px;
  right: 20px;
  line-height: 1;
}

.step-card .s-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 18px;
}

.step-card .s-icon svg {
  width: 22px;
  height: 22px;
}

.step-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Testimonials ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  position: relative;
}

.testi-card .stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 16px;
  font-size: 14px;
}

.testi-card blockquote {
  font-size: 14.5px;
  color: var(--cream);
  font-style: italic;
  margin-bottom: 20px;
}

.testi-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-card footer .avatar {
  width: 42px;
  height: 42px;
  font-size: 16px;
  margin: 0;
}

.testi-card footer .avatar::after {
  inset: -3px;
}

.testi-card footer strong {
  display: block;
  font-size: 14px;
}

.testi-card footer span {
  font-size: 12px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
}

/* ===== CTA banner ===== */
.cta-banner {
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.1), transparent),
    linear-gradient(170deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(26px, 4vw, 40px);
  margin-bottom: 14px;
}

.cta-banner p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 30px;
}

.cta-banner::before,
.cta-banner::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1.5px solid rgba(212, 175, 55, 0.18);
  border-radius: 50%;
}

.cta-banner::before {
  top: -90px;
  left: -70px;
}

.cta-banner::after {
  bottom: -110px;
  right: -60px;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}

.footer h4 {
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--cream);
}

.footer p {
  color: var(--muted);
  font-size: 13.5px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  color: var(--muted);
  font-size: 13.5px;
  transition: color 0.2s;
}

.footer ul a:hover {
  color: var(--gold-light);
}

.footer .brand-desc {
  margin: 16px 0 20px;
  max-width: 300px;
}

.footer .contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 12px;
}

.footer .contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row {
  display: flex;
  gap: 10px;
}

.social-row a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line-soft);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: color 0.2s, border-color 0.2s;
}

.social-row a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.social-row svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Page header (subpages) ===== */
.page-hero {
  padding: 150px 0 60px;
  position: relative;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.crumb {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

/* ===== Stepper (agendar) ===== */
.stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step .step-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line-soft);
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg-2);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.step .step-dot svg {
  width: 18px;
  height: 18px;
}

.step .step-label {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.25s;
}

.step.done .step-dot {
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: #17130a;
}

.step.active .step-dot {
  border-color: var(--gold);
  color: var(--gold-light);
  box-shadow: 0 0 0 6px rgba(212, 175, 55, 0.12);
}

.step.active .step-label {
  color: var(--cream);
}

.step-line {
  width: 60px;
  height: 1.5px;
  background: var(--line-soft);
  margin: 0 14px;
  position: relative;
}

.step-line.filled {
  background: var(--gold);
}

@media (max-width: 640px) {
  .step .step-label {
    display: none;
  }

  .step-line {
    width: 32px;
    margin: 0 8px;
  }
}

/* ===== Booking layout ===== */
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.booking-panel {
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 420px;
}

.step-panel {
  display: none;
  animation: fadeUp 0.35s ease;
}

.step-panel.active {
  display: block;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.booking-panel h2 {
  font-size: 24px;
  margin-bottom: 6px;
}

.booking-panel .hint {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 26px;
}

.panel-nav {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line-soft);
}

/* service picker */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.svc-option {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--line-soft);
  background: var(--bg-2);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
  position: relative;
}

.svc-option:hover {
  border-color: var(--line);
  transform: translateY(-2px);
}

.svc-option.selected {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.07);
}

.svc-option .check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--line-soft);
  display: grid;
  place-items: center;
  color: transparent;
}

.svc-option.selected .check {
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: #17130a;
}

.svc-option .check svg {
  width: 13px;
  height: 13px;
}

.svc-option .s-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.svc-option .s-icon svg {
  width: 21px;
  height: 21px;
}

.svc-option .s-body h4 {
  font-size: 15px;
}

.svc-option .s-body p {
  font-size: 12.5px;
  color: var(--muted);
}

.svc-option .s-body .meta {
  display: flex;
  gap: 12px;
  margin-top: 6px;
  font-size: 12.5px;
}

.svc-option .s-body .meta .price {
  color: var(--gold-light);
  font-weight: 700;
}

.svc-option .s-body .meta .dur {
  color: var(--muted);
}

@media (max-width: 700px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }

  .booking-wrap {
    grid-template-columns: 1fr;
  }
}

/* professional picker */
.prof-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.prof-option {
  border: 1.5px solid var(--line-soft);
  background: var(--bg-2);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.prof-option:hover {
  border-color: var(--line);
  transform: translateY(-3px);
}

.prof-option.selected {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.07);
}

.prof-option .avatar {
  width: 72px;
  height: 72px;
  font-size: 24px;
  margin-bottom: 14px;
}

.prof-option h4 {
  font-size: 16px;
}

.prof-option .role {
  font-size: 11.5px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

@media (max-width: 760px) {
  .prof-picker {
    grid-template-columns: 1fr;
  }
}

/* calendar + slots */
.date-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.calendar-head button {
  background: var(--surface-2);
  border: 1px solid var(--line-soft);
  color: var(--cream);
  width: 34px;
  height: 34px;
  border-radius: 9px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 0.2s;
}

.calendar-head button:hover {
  border-color: var(--gold);
}

.calendar-head button svg {
  width: 16px;
  height: 16px;
}

.calendar-head strong {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.calendar .dow {
  text-align: center;
  font-size: 10.5px;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 0;
  letter-spacing: 1px;
}

.cal-btn {
  aspect-ratio: 1;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.15s;
  font-family: var(--font-body);
}

.cal-btn:hover:not(.disabled) {
  border-color: var(--line);
  color: var(--cream);
}

.cal-btn.available {
  color: var(--cream);
}

.cal-btn.available:hover {
  background: rgba(212, 175, 55, 0.12);
  border-color: var(--gold);
}

.cal-btn.selected {
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  color: #17130a;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.35);
}

.cal-btn.today {
  border-color: var(--line);
}

.cal-btn.disabled {
  color: rgba(255, 255, 255, 0.18);
  cursor: not-allowed;
}

.slots-box h3 {
  font-size: 15px;
  margin-bottom: 14px;
  color: var(--cream);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
}

.slot-btn {
  padding: 10px 4px;
  border-radius: 9px;
  border: 1px solid var(--line-soft);
  background: var(--bg-2);
  color: var(--cream);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.15s;
}

.slot-btn:hover:not(:disabled) {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.1);
}

.slot-btn.selected {
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  color: #17130a;
  border-color: transparent;
}

.slot-btn:disabled {
  opacity: 0.28;
  cursor: not-allowed;
  text-decoration: line-through;
}

.slots-empty {
  border: 1px dashed var(--line);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
}

@media (max-width: 860px) {
  .date-slots {
    grid-template-columns: 1fr;
  }

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

/* form fields */
.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.4px;
}

.field label .req {
  color: var(--gold);
}

.input {
  width: 100%;
  background: var(--bg-2);
  border: 1.5px solid var(--line-soft);
  border-radius: 12px;
  color: var(--cream);
  padding: 13px 16px;
  font-size: 14.5px;
  font-family: var(--font-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
}

.input::placeholder {
  color: #55555e;
}

textarea.input {
  resize: vertical;
  min-height: 84px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* summary sidebar */
.summary {
  background: linear-gradient(170deg, var(--surface-2), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  position: sticky;
  top: 100px;
}

.summary h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.summary .empty-note {
  color: var(--muted);
  font-size: 13px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line-soft);
  font-size: 14px;
}

.summary-item .k {
  color: var(--muted);
}

.summary-item .v {
  color: var(--cream);
  text-align: right;
  font-weight: 500;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--gold-light);
}

.summary .total-label {
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  align-self: center;
}

@media (max-width: 700px) {
  .summary {
    position: static;
  }
}

/* ===== Success screen ===== */
.success-wrap {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
}

.success-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 26px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  display: grid;
  place-items: center;
  color: #17130a;
  box-shadow: 0 0 0 14px rgba(212, 175, 55, 0.08), 0 20px 50px rgba(212, 175, 55, 0.35);
}

.success-icon svg {
  width: 40px;
  height: 40px;
}

.success-wrap h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.success-wrap > p {
  color: var(--muted);
  margin-bottom: 30px;
}

.success-card {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 22px;
  text-align: left;
  margin-bottom: 28px;
}

.rem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

@media (max-width: 980px) {
  .rem-grid {
    grid-template-columns: 1fr;
  }
}

.success-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Toast ===== */
#toast-wrap {
  position: fixed;
  top: 96px;
  right: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toast {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 280px;
  max-width: 360px;
  box-shadow: var(--shadow);
  font-size: 13.5px;
  animation: toastIn 0.3s ease;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.toast.error {
  border-left-color: var(--danger);
}

.toast.ok {
  border-left-color: var(--ok);
}

.toast .t-ic {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.toast.error .t-ic { color: var(--danger); }
.toast.ok .t-ic { color: var(--ok); }

.toast .t-ic svg {
  width: 18px;
  height: 18px;
}

.toast strong {
  display: block;
  margin-bottom: 2px;
}

.toast p {
  color: var(--muted);
  font-size: 12.5px;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.toast.out {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastOut {
  to { opacity: 0; transform: translateX(24px); }
}

/* ===== Modal ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 8, 0.75);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  display: none;
  place-items: center;
  z-index: 90;
  padding: 20px;
}

.modal-backdrop.open {
  display: grid;
}

.modal {
  width: min(560px, 100%);
  max-height: 90vh;
  overflow: auto;
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  animation: fadeUp 0.3s ease;
}

.modal h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.modal .modal-sub {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 22px;
}

.modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 22px;
}

.modal .modal-close {
  float: right;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

/* ===== Admin ===== */
.admin-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  min-height: 100vh;
}

.admin-side {
  background: var(--bg-2);
  border-right: 1px solid var(--line-soft);
  padding: 26px 18px;
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-side .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 8px 22px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 20px;
}

.admin-side .brand .logo-mark {
  width: 40px;
  height: 40px;
}

.admin-side nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 11px;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 6px;
  transition: all 0.15s;
}

.admin-side nav a svg {
  width: 18px;
  height: 18px;
}

.admin-side nav a:hover {
  background: var(--surface-2);
  color: var(--cream);
}

.admin-side nav a.active {
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold-light);
  border: 1px solid var(--line);
}

.admin-side .side-foot {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--muted);
}

.admin-main {
  padding: 40px;
}

.admin-main .topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-main .topbar h1 {
  font-size: 30px;
}

.admin-main .topbar .sub {
  color: var(--muted);
  font-size: 13.5px;
}

.admin-toolbar {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.admin-toolbar .input {
  width: auto;
  flex: 1;
  min-width: 180px;
}

.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line-soft);
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.15s;
}

.pill:hover {
  border-color: var(--line);
  color: var(--cream);
}

.pill.active {
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  color: #17130a;
  border-color: transparent;
  font-weight: 600;
}

.table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
}

.table th {
  text-align: left;
  padding: 14px 18px;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-2);
}

.table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 13.5px;
  vertical-align: middle;
}

.table tr:last-child td {
  border-bottom: none;
}

.table tbody tr {
  transition: background 0.15s;
}

.table tbody tr:hover {
  background: rgba(212, 175, 55, 0.04);
}

.table .row-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.icon-btn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid var(--line-soft);
  background: var(--bg-2);
  color: var(--muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.15s;
}

.icon-btn svg {
  width: 16px;
  height: 16px;
}

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

.icon-btn.danger:hover {
  color: var(--danger);
  border-color: var(--danger);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  border: 1px solid;
}

.badge.confirmed {
  color: var(--ok);
  border-color: rgba(111, 191, 115, 0.4);
  background: rgba(111, 191, 115, 0.08);
}

.badge.cancelled {
  color: var(--danger);
  border-color: rgba(224, 86, 86, 0.4);
  background: rgba(224, 86, 86, 0.08);
}

.badge.completed {
  color: var(--gold-light);
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(212, 175, 55, 0.08);
}

.badge.pending {
  color: #e0b04e;
  border-color: rgba(224, 176, 78, 0.4);
  background: rgba(224, 176, 78, 0.08);
}

.badge.sent {
  color: var(--ok);
  border-color: rgba(111, 191, 115, 0.4);
  background: rgba(111, 191, 115, 0.08);
}

.toggle {
  position: relative;
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: var(--surface-3);
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: background 0.2s;
}

.toggle::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--muted);
  transition: all 0.2s;
}

.toggle.on {
  background: rgba(212, 175, 55, 0.25);
  border-color: var(--gold);
}

.toggle.on::after {
  left: 22px;
  background: var(--gold);
}

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

.empty-state svg {
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  color: var(--gold-dark);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 26px;
}

.kpi {
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 20px;
}

.kpi .kpi-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
}

.kpi .kpi-value {
  font-family: var(--font-head);
  font-size: 30px;
  color: var(--gold-light);
  margin-top: 6px;
}

.kpi .kpi-sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

@media (max-width: 980px) {
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-side {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid var(--line-soft);
  }

  .admin-side nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }

  .admin-side nav a {
    margin-bottom: 0;
  }

  .side-foot {
    display: none;
  }

  .kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .admin-main {
    padding: 24px 16px;
  }

  .table {
    display: block;
    overflow-x: auto;
  }
}

/* ===== Login ===== */
.login-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.login-card {
  width: min(400px, 100%);
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  text-align: center;
  box-shadow: var(--shadow);
}

.login-card .logo-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 18px;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #15151a, #0c0c0f);
}

.login-card .logo-mark svg {
  width: 36px;
  height: 36px;
}

.login-card h1 {
  font-size: 26px;
  margin-bottom: 6px;
}

.login-card p {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 26px;
}

.login-hint {
  margin-top: 18px;
  font-size: 12px;
  color: #55555e;
  background: var(--bg-2);
  border: 1px dashed var(--line-soft);
  border-radius: 10px;
  padding: 10px;
}

/* ===== reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

/* ===== misc ===== */
.text-muted { color: var(--muted); }
.text-gold { color: var(--gold-light); }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-2 { margin-bottom: 16px; }

.divider {
  height: 1px;
  background: var(--line-soft);
  margin: 34px 0;
}

.fade-in { animation: fadeUp 0.5s ease; }

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--surface-3);
  border-radius: 99px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ===== Install PWA button ===== */
.install-fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: #17130a;
  font-weight: 700;
  font-size: 13.5px;
  font-family: var(--font-body);
  cursor: pointer;
  box-shadow: 0 14px 36px rgba(212, 175, 55, 0.4);
  transform: translateY(140%);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1.2);
}

.install-fab.show {
  transform: translateY(0);
}

.install-fab svg {
  width: 20px;
  height: 20px;
}

.install-fab .close-x {
  margin-left: 2px;
  opacity: 0.6;
  display: grid;
  place-items: center;
}

.install-fab .close-x svg {
  width: 14px;
  height: 14px;
}

/* ===== Mobile polish ===== */
@media (max-width: 760px) {
  .section {
    padding: 64px 0;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .section-title {
    margin-bottom: 40px;
  }

  .hero {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .hero p {
    font-size: 15.5px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-float {
    display: none;
  }

  .hero-card {
    padding: 22px;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 40px;
  }

  .hero-stats .stat strong {
    font-size: 24px;
  }

  .booking-panel {
    padding: 20px;
    border-radius: var(--radius);
  }

  .summary {
    border-radius: var(--radius);
  }

  .date-slots {
    gap: 22px;
  }

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

  .cal-btn {
    font-size: 12px;
  }

  .calendar {
    gap: 4px;
  }

  .cta-banner {
    padding: 44px 26px;
  }

  .footer-grid {
    gap: 30px;
  }

  .admin-main {
    padding: 24px 16px;
  }

  .admin-side {
    padding: 14px 12px;
  }

  .admin-side nav {
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .admin-side nav a {
    white-space: nowrap;
    padding: 10px 12px;
    font-size: 13px;
  }

  .kpis {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .kpi {
    padding: 16px;
  }

  .kpi .kpi-value {
    font-size: 24px;
  }

  .panel-nav .btn {
    padding: 12px 18px;
    font-size: 14px;
  }

  .success-wrap {
    padding: 44px 22px;
  }

  .login-card {
    padding: 36px 24px;
  }
}

@media (max-width: 400px) {
  .svc-option {
    padding: 13px;
  }

  .svc-option .s-body h4 {
    font-size: 14px;
  }

  .step-dot {
    width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .step-line {
    width: 24px;
    margin: 0 6px;
  }

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

  .slot-btn {
    padding: 9px 2px;
    font-size: 12px;
  }

  .btn {
    padding: 13px 22px;
  }
}

@media (max-width: 380px) {
  .slots-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (display-mode: standalone) {
  .install-fab {
    display: none;
  }

  .nav {
    padding-top: env(safe-area-inset-top);
  }
}

/* ===== App-like typography (bigger, scales with screen) ===== */
body {
  font-size: 17px;
}

.hero p,
.section-title p,
.page-hero p,
.footer p,
.footer ul a,
.footer .contact-item,
.testi-card blockquote,
.step-card p,
.prof-card p {
  font-size: 15.5px;
  line-height: 1.7;
}

.nav-links a {
  font-size: 15px;
}

.btn {
  font-size: 15.5px;
}

.input {
  font-size: 16px;
}

.field label {
  font-size: 14.5px;
}

.service-card h3 {
  font-size: 20px;
}

.service-card .duration {
  font-size: 13px;
}

.section-title h2 {
  font-size: clamp(34px, 4.5vw, 52px);
}

.hero h1 {
  font-size: clamp(44px, 6.5vw, 78px);
}

.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
}

.cta-banner h2 {
  font-size: clamp(28px, 4vw, 42px);
}

/* ---- Mobile app feel: everything reads bigger ---- */
@media (max-width: 760px) {
  body {
    font-size: 17.5px;
  }

  .nav .logo-text {
    font-size: 19px;
  }

  .nav .logo-text small {
    font-size: 10px;
    letter-spacing: 4.5px;
  }

  .nav-links a {
    font-size: 19px;
    padding: 16px 0;
  }

  .btn {
    font-size: 17px;
    padding: 16px 28px;
  }

  .btn-sm {
    font-size: 15px;
    padding: 12px 22px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 58px);
    line-height: 1.12;
  }

  .hero p,
  .section-title p,
  .page-hero p {
    font-size: 17.5px;
  }

  .hero-badge {
    font-size: 13.5px;
    padding: 9px 18px;
  }

  .hero-stats .stat strong {
    font-size: 30px;
  }

  .hero-stats .stat span {
    font-size: 13.5px;
  }

  .section-title h2 {
    font-size: clamp(38px, 9vw, 52px);
  }

  .section-title .eyebrow {
    font-size: 13px;
  }

  .page-hero h1 {
    font-size: clamp(40px, 10vw, 56px);
  }

  .crumb {
    font-size: 13px;
  }

  .service-card h3 {
    font-size: 22px;
  }

  .service-card p {
    font-size: 16px;
  }

  .service-card .price {
    font-size: 24px;
  }

  .service-card .duration {
    font-size: 14.5px;
  }

  .prof-card h3 {
    font-size: 26px;
  }

  .prof-card .role {
    font-size: 14.5px;
  }

  .prof-card p {
    font-size: 16.5px;
  }

  .step-card h3 {
    font-size: 21px;
  }

  .step-card p {
    font-size: 15.5px;
  }

  .testi-card blockquote {
    font-size: 17px;
  }

  .testi-card footer strong {
    font-size: 15.5px;
  }

  .testi-card footer span {
    font-size: 13.5px;
  }

  .cta-banner h2 {
    font-size: clamp(30px, 8vw, 44px);
  }

  .cta-banner p {
    font-size: 16.5px;
  }

  .booking-panel h2 {
    font-size: 29px;
  }

  .booking-panel .hint {
    font-size: 16px;
  }

  .svc-option .s-body h4 {
    font-size: 17.5px;
  }

  .svc-option .s-body p {
    font-size: 14px;
  }

  .svc-option .s-body .meta {
    font-size: 14.5px;
  }

  .prof-option h4 {
    font-size: 19px;
  }

  .prof-option .role {
    font-size: 13px;
  }

  .calendar-head strong {
    font-size: 17px;
  }

  .calendar .dow {
    font-size: 11.5px;
  }

  .cal-btn {
    font-size: 14.5px;
  }

  .slots-box h3 {
    font-size: 18px;
  }

  .slot-btn {
    font-size: 15.5px;
    padding: 11px 4px;
  }

  .slots-empty {
    font-size: 15px;
  }

  .summary-item {
    font-size: 16px;
  }

  .summary .empty-note {
    font-size: 15px;
  }

  .summary-total {
    font-size: 26px;
  }

  .summary .total-label {
    font-size: 14px;
  }

  .field label {
    font-size: 15.5px;
  }

  .input {
    font-size: 16.5px;
    padding: 16px 17px;
  }

  .panel-nav .btn {
    font-size: 16px;
    padding: 14px 22px;
  }

  .success-wrap h2 {
    font-size: 34px;
  }

  .success-wrap > p {
    font-size: 16.5px;
  }

  .footer h4 {
    font-size: 17px;
  }

  .footer p,
  .footer ul a,
  .footer .contact-item {
    font-size: 15.5px;
  }

  .footer-bottom {
    font-size: 14px;
  }

  .social-row a {
    width: 44px;
    height: 44px;
  }

  .login-card h1 {
    font-size: 30px;
  }

  .login-card p {
    font-size: 15.5px;
  }

  .login-hint {
    font-size: 13.5px;
  }

  .modal h3 {
    font-size: 25px;
  }

  .modal .modal-sub {
    font-size: 15px;
  }

  .toast {
    font-size: 15px;
  }

  .admin-main .topbar h1 {
    font-size: 32px;
  }

  .admin-main .topbar .sub {
    font-size: 15px;
  }

  .table th {
    font-size: 12.5px;
  }

  .table td {
    font-size: 15.5px;
  }

  .pill {
    font-size: 14.5px;
    padding: 11px 20px;
  }

  .kpi .kpi-label {
    font-size: 13px;
  }

  .kpi .kpi-sub {
    font-size: 13.5px;
  }

  .badge {
    font-size: 12.5px;
    padding: 6px 14px;
  }

  .icon-btn {
    width: 42px;
    height: 42px;
  }

  .icon-btn svg {
    width: 19px;
    height: 19px;
  }

  .empty-state {
    font-size: 15px;
  }

  .step .step-dot {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .step-line {
    width: 30px;
  }

  .install-fab {
    font-size: 15.5px;
    padding: 15px 22px;
  }

  .hero-card .next-title {
    font-size: 13.5px;
  }

  .hero-ticket h4 {
    font-size: 17px;
  }

  .hero-ticket p {
    font-size: 14.5px;
  }

  .hero-ticket .status {
    font-size: 12.5px;
  }

  .hero-ticket .date-box {
    min-width: 68px;
    height: 72px;
    font-size: 26px;
  }

  .text-muted {
    font-size: 14.5px;
  }
}

@media (max-width: 400px) {
  .svc-option .s-body h4 {
    font-size: 16.5px;
  }

  .step-dot {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .slot-btn {
    font-size: 14.5px;
  }
}

/* ===== Promoções ===== */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.promo-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.promo-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
}

.promo-card .p-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
  margin-bottom: 18px;
}

.promo-card .p-icon svg {
  width: 26px;
  height: 26px;
}

.promo-card .p-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #17130a;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  padding: 5px 12px;
  border-radius: 999px;
}

.promo-card h3 {
  font-size: 21px;
  margin-bottom: 8px;
}

.promo-card p {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 18px;
}

.promo-card .p-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.promo-card .p-price {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--gold-light);
}

.promo-card .p-price s {
  color: var(--muted);
  font-size: 15px;
  font-family: var(--font-body);
  margin-right: 8px;
  opacity: 0.7;
}

.promo-card .p-off {
  font-size: 13px;
  color: var(--ok);
  font-weight: 600;
}

@media (max-width: 900px) {
  .promo-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }
}

/* ===== Sobre (preview + página) ===== */
.about-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.about-media {
  position: relative;
}

.about-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  background:
    radial-gradient(400px 300px at 30% 20%, rgba(212, 175, 55, 0.14), transparent 60%),
    linear-gradient(160deg, var(--surface-2), var(--bg-2));
  padding: 40px;
  text-align: center;
}

.about-frame .af-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  border: 1.5px dashed var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.about-frame .af-icon svg {
  width: 44px;
  height: 44px;
}

.about-frame h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.about-frame p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 260px;
  margin: 0 auto;
}

.about-frame .af-sig {
  margin-top: 22px;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-light);
}

.about-badge {
  position: absolute;
  bottom: -22px;
  right: -12px;
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  color: #17130a;
  border-radius: 16px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(212, 175, 55, 0.4);
}

.about-badge strong {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  line-height: 1;
}

.about-badge span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 14px;
}

.about-content .eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}

.about-content h2 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 18px;
}

.about-content h2 span {
  color: var(--gold);
  font-style: italic;
}

.about-content p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 16px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 28px;
}

.value-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border-radius: 12px;
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
}

.value-chip svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.value-chip strong {
  font-size: 14px;
  display: block;
  line-height: 1.3;
}

.value-chip span {
  font-size: 12.5px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .about-wrap {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-badge {
    right: 10px;
  }
}

/* timeline (página sobre) */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 34px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--gold-dark), transparent);
}

.timeline-item {
  position: relative;
  padding: 0 0 38px 26px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg);
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 0 5px rgba(212, 175, 55, 0.12);
}

.timeline-item .year {
  font-family: var(--font-head);
  color: var(--gold-light);
  font-size: 18px;
  margin-bottom: 4px;
}

.timeline-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.timeline-item p {
  color: var(--muted);
  font-size: 14.5px;
}

/* valores (página sobre) */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  text-align: center;
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 30px 20px;
}

.value-card .v-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 16px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.value-card .v-icon svg {
  width: 25px;
  height: 25px;
}

.value-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.value-card p {
  color: var(--muted);
  font-size: 13.5px;
}

@media (max-width: 900px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Tabela de preços ===== */
.pricing-card {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  border-bottom: 1px dashed var(--line-soft);
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row .p-name h4 {
  font-size: 16.5px;
  margin-bottom: 3px;
}

.pricing-row .p-name span {
  color: var(--muted);
  font-size: 13.5px;
}

.pricing-row .p-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}

.pricing-row .p-dur {
  color: var(--muted);
  font-size: 13.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pricing-row .p-dur svg {
  width: 15px;
  height: 15px;
}

.pricing-row .p-val {
  font-family: var(--font-head);
  font-size: 21px;
  color: var(--gold-light);
  min-width: 74px;
  text-align: right;
}

.pricing-row .p-cta {
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .pricing-row {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 20px;
  }

  .pricing-row .p-meta {
    width: 100%;
    justify-content: space-between;
  }
}

/* ===== Galeria ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line-soft);
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.gallery-art {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(212, 175, 55, 0.5);
  opacity: 0.85;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-art svg {
  width: 84px;
  height: 84px;
}

.gallery-card:hover .gallery-art {
  transform: scale(1.12);
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 8, 0.92));
}

.gallery-tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold-light);
  border: 1px solid var(--line);
  background: rgba(212, 175, 55, 0.1);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.gallery-overlay h4 {
  font-size: 18px;
  color: var(--cream);
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item.open {
  border-color: var(--line);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  padding: 20px 22px;
  cursor: pointer;
  text-align: left;
}

.faq-q .faq-ic {
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.faq-q .faq-ic svg {
  width: 18px;
  height: 18px;
}

.faq-item.open .faq-ic {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 22px 20px;
}

/* ===== Contato ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-card {
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s;
}

.contact-card:hover {
  border-color: var(--line);
  transform: translateY(-4px);
}

.contact-card .c-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 13px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.contact-card .c-icon svg {
  width: 22px;
  height: 22px;
}

.contact-card h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 14.5px;
  word-break: break-word;
}

.contact-card a:hover p {
  color: var(--gold-light);
}

.contact-big {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.contact-form-card {
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-form-card h3 {
  font-size: 22px;
  margin-bottom: 6px;
}

.contact-form-card .hint {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 22px;
}

.map-card {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.map-visual {
  flex: 1;
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(500px 300px at 50% 40%, rgba(212, 175, 55, 0.12), transparent 70%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.02) 0 40px, transparent 40px 80px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 40px, transparent 40px 80px),
    var(--bg-2);
}

.map-pin {
  width: 64px;
  height: 64px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: linear-gradient(140deg, var(--gold-light), var(--gold));
  display: grid;
  place-items: center;
  color: #17130a;
  box-shadow: 0 14px 30px rgba(212, 175, 55, 0.35);
}

.map-pin svg {
  width: 26px;
  height: 26px;
  transform: rotate(45deg);
}

.map-foot {
  padding: 18px 22px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.map-foot p {
  color: var(--muted);
  font-size: 13.5px;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-big {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Relatórios (admin) ===== */
.report-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.chart-panel {
  background: linear-gradient(170deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 22px;
}

.chart-panel h3 {
  font-size: 16px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.chart-panel h3 svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.chart-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 190px;
  padding-top: 10px;
}

.chart-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  height: 100%;
}

.chart-bar {
  width: 100%;
  max-width: 34px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold-dark));
  min-height: 4px;
  position: relative;
  transition: filter 0.2s;
}

.chart-bar:hover {
  filter: brightness(1.15);
}

.chart-bar.revenue {
  background: linear-gradient(180deg, #f6e27a, #a8842a);
}

.chart-bar.appts {
  background: linear-gradient(180deg, #4a4a55, #22222a);
  border: 1px solid var(--line-soft);
}

.chart-val {
  font-size: 10.5px;
  color: var(--gold-light);
  font-weight: 700;
}

.chart-label {
  font-size: 10.5px;
  color: var(--muted);
  white-space: nowrap;
}

.legend {
  display: flex;
  gap: 18px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--muted);
}

.legend .swatch {
  width: 12px;
  height: 12px;
  border-radius: 4px;
}

.rank-list {
  list-style: none;
}

.rank-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line-soft);
}

.rank-list li:last-child {
  border-bottom: none;
}

.rank-list .r-name {
  flex: 1;
  font-size: 14px;
}

.rank-list .r-val {
  font-size: 13px;
  color: var(--muted);
  white-space: nowrap;
}

.rank-list .r-num {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--line);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.progress {
  height: 7px;
  border-radius: 99px;
  background: var(--surface-3);
  overflow: hidden;
  margin-top: 6px;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
}

.report-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

@media (max-width: 900px) {
  .report-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .report-two {
    grid-template-columns: 1fr;
  }
}

.backup-box {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  margin-top: 22px;
}

.backup-box h4 {
  font-size: 16px;
}

.backup-box p {
  color: var(--muted);
  font-size: 13.5px;
}

.backup-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== Preferências (agendar) ===== */
.prefs-box {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: var(--bg-2);
}

.prefs-box h3 {
  font-size: 17px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
}

.pref-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.pref-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.pref-opts {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pref-opt {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  background: var(--surface);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.18s, background 0.18s;
}

.pref-opt svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
}

.pref-opt.active {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-light);
}

.pref-opt.active svg {
  color: var(--gold);
}

.seg-btns .pref-opt {
  min-width: 120px;
  justify-content: center;
}

.cancel-note {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--bg-2);
  text-align: left;
}

.cancel-note svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  flex-shrink: 0;
}

.cancel-note strong {
  font-size: 14px;
  display: block;
  margin-bottom: 2px;
}

.cancel-note p {
  font-size: 13.5px;
  color: var(--muted);
}

.cancel-note a {
  color: var(--gold-light);
  text-decoration: underline;
}
