/* ============================================================
   style.css — Design System v2.0 — Precision Athletic Dark
   BikeFit Landing Page
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --color-primary:      #F5C518;
  --color-primary-dim:  rgba(245, 197, 24, 0.10);
  --color-primary-glow: rgba(245, 197, 24, 0.22);
  --color-bg:           #E8E8E6;
  --color-surface:      #DFDFE0;
  --color-surface-alt:  #D5D5D3;
  --color-text:         #181816;
  --color-text-muted:   #545450;
  --color-border:       #B0B0AE;
  --color-border-light: #989896;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Syne', sans-serif;
  --font-label:   'Space Mono', monospace;

  --radius-sm:   3px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);

  --max-width:   1200px;
  --section-py:  120px;

  --scrollbar-track:         #D8D8D6;
  --scrollbar-thumb:         #ABABAA;
  --scrollbar-thumb-hover:   #989896;
  --scrollbar-thumb-active:  #868684;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

/* ---------- Scrollbar (Firefox + WebKit) ---------- */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--scrollbar-thumb) var(--scrollbar-track);
}

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

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

*::-webkit-scrollbar-thumb {
  background: var(--scrollbar-thumb);
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  background-clip: padding-box;
  transition: background 0.2s ease;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--scrollbar-thumb-hover);
  background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:active {
  background: var(--scrollbar-thumb-active);
  background-clip: padding-box;
}

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

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: var(--font-body); font-size: 1rem; cursor: none; }

/* ---------- Grain Texture ---------- */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.038;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grain-shift 0.9s steps(3) infinite;
}

@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  33%  { transform: translate(-1.5%, 1%); }
  66%  { transform: translate(1%, -1.5%); }
  100% { transform: translate(0, 0); }
}

/* ---------- Custom Cursor ---------- */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--ease-out-expo),
              height 0.2s var(--ease-out-expo),
              opacity 0.2s;
  will-change: transform;
}

.cursor--ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(245, 197, 24, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out-expo),
              height 0.35s var(--ease-out-expo),
              border-color 0.35s,
              opacity 0.2s;
  will-change: transform;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 12px; height: 12px; }

body:has(a:hover) .cursor--ring,
body:has(button:hover) .cursor--ring {
  width: 56px;
  height: 56px;
  border-color: var(--color-primary);
}

/* ---------- Utility ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 32px;
}

.section { padding-block: var(--section-py); }
.section--alt { background-color: var(--color-surface-alt); }

.section__label {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section__label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--color-primary);
  flex-shrink: 0;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 520px;
  margin-bottom: 64px;
  line-height: 1.7;
}

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out-expo),
              transform 0.7s var(--ease-out-expo);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-family: var(--font-label);
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out-expo),
              box-shadow 0.25s var(--ease-out-expo);
  white-space: nowrap;
  isolation: isolate;
}

.btn--primary {
  background: var(--color-primary);
  color: #000;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease-out-expo);
}

.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,197,24,0.35); }
.btn--primary:hover::before { transform: translateX(100%); }

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1px solid rgba(24,24,22,0.3);
}

.btn--outline::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out-expo);
}

.btn--outline:hover { color: #000; border-color: var(--color-text); }
.btn--outline:hover::before { transform: scaleX(1); }
.btn--outline span, .btn--outline i { position: relative; z-index: 1; }

.btn--sm { padding: 11px 22px; font-size: 0.72rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  transition: padding 0.4s var(--ease-out-expo);
}

.navbar.scrolled {
  padding: 14px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* Logo da marca — arquivo: assets/logo.png */
.brand-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

/* Navbar: maior no topo; após rolar (.scrolled) volta ao tamanho compacto */
.brand-logo--nav {
  height: 56px;
  width: auto;
  transition: height 0.4s var(--ease-out-expo);
}

.navbar.scrolled .brand-logo--nav {
  height: 34px;
}
.brand-logo--footer {
  height: 26px;
  width: auto;
  margin-bottom: 12px;
}
.brand-logo--admin-login { height: 34px; width: auto; }
.brand-logo--sidebar { height: 22px; width: auto; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__nav a {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  position: relative;
  transition: color 0.2s;
}

.navbar__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: width 0.3s var(--ease-out-expo);
}

.navbar__nav a:hover { color: var(--color-text); }
.navbar__nav a:hover::after { width: 100%; }

.navbar__cta { margin-left: 8px; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  color: var(--color-text);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.navbar__hamburger:hover {
  border-color: var(--color-border);
  background: var(--color-surface-alt);
}

.navbar__hamburger:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.navbar__hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.35s var(--ease-out-expo), opacity 0.25s ease;
  transform-origin: center;
}

.navbar__hamburger.open .navbar__hamburger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.open .navbar__hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger.open .navbar__hamburger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.navbar__drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, calc(100vw - 20px));
  max-width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--color-surface);
  border-left: 1px solid var(--color-border);
  box-shadow: -24px 0 48px rgba(0, 0, 0, 0.45);
  flex-direction: column;
  padding: 0;
  z-index: 999;
  transform: translateX(100%);
  visibility: hidden;
  overscroll-behavior: contain;
  transition:
    transform 0.42s var(--ease-out-expo),
    visibility 0s linear 0.42s;
}

.navbar__drawer.open {
  transform: translateX(0);
  visibility: visible;
  transition:
    transform 0.42s var(--ease-out-expo),
    visibility 0s linear 0s;
}

.navbar__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: calc(14px + env(safe-area-inset-top, 0px)) 18px 18px 22px;
  border-bottom: 1px solid var(--color-border);
  flex-shrink: 0;
}

.navbar__drawer-title {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.navbar__drawer-close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: -6px -8px -6px 0;
  padding: 0;
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.navbar__drawer-close:hover {
  color: var(--color-primary);
  background: var(--color-primary-dim);
  border-color: rgba(245, 197, 24, 0.15);
}

.navbar__drawer-close:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.navbar__drawer-links {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 12px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.navbar__drawer-links a {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  transition: background 0.2s, color 0.2s;
  padding: 14px 14px;
  border-radius: var(--radius-md);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.navbar__drawer-links a:hover,
.navbar__drawer-links a:focus-visible {
  color: var(--color-text);
  background: var(--color-surface-alt);
}

.navbar__drawer-links a:active {
  color: var(--color-primary);
  background: var(--color-primary-dim);
}

.navbar__drawer-footer {
  flex-shrink: 0;
  padding: 16px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--color-border);
  background: linear-gradient(180deg, transparent, rgba(213, 213, 211, 0.85));
}

.navbar__drawer-cta {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.navbar__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.35s var(--ease-out-expo);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.navbar__overlay.open {
  opacity: 1;
}

.navbar__hamburger,
.navbar__drawer-close,
.navbar__drawer-links a {
  -webkit-tap-highlight-color: rgba(245, 197, 24, 0.12);
}

@media (prefers-reduced-motion: reduce) {
  .navbar__drawer {
    transition-duration: 0.01ms;
  }

  .navbar__overlay {
    transition-duration: 0.01ms;
  }

  .navbar__hamburger-bar {
    transition-duration: 0.01ms;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1571068316344-75bc76f77890?w=1920&auto=format&fit=crop&q=80') center/cover no-repeat;
  z-index: 0;
  transform: scale(1.06);
  animation: hero-scale 12s ease-out forwards;
}

@keyframes hero-scale {
  from { transform: scale(1.06); }
  to   { transform: scale(1.0); }
}

.hero__lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    -22deg,
    transparent,
    transparent 72px,
    rgba(245, 197, 24, 0.018) 72px,
    rgba(245, 197, 24, 0.018) 73px
  );
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to top, rgba(8,8,8,0.98) 0%, rgba(8,8,8,0.55) 50%, rgba(8,8,8,0.25) 100%),
    linear-gradient(to right, rgba(8,8,8,0.7) 0%, transparent 60%);
}

.hero__content {
  position: relative;
  z-index: 3;
  padding-top: 180px;
  padding-bottom: 100px;
  max-width: 820px;
  color: #F0EDE8;
}

.hero__accent-bar {
  width: 56px;
  height: 3px;
  background: var(--color-primary);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s 0.15s var(--ease-out-expo) forwards;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.08);
  border: 1px solid rgba(245,197,24,0.2);
  color: var(--color-primary);
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.6s 0.3s var(--ease-out-expo) forwards;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 12vw, 10.5rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s var(--ease-out-expo) forwards;
}

.hero__headline em {
  font-style: normal;
  color: var(--color-primary);
  display: block;
}

.hero__subheadline {
  font-size: 1.05rem;
  color: rgba(240,237,232,0.65);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.7s 0.75s var(--ease-out-expo) forwards;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.95s var(--ease-out-expo) forwards;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px;
  right: 48px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.6s 1.4s var(--ease-out-expo) forwards;
}

.hero__scroll-text {
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(240,237,232,0.45);
  writing-mode: vertical-rl;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--color-primary), transparent);
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

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

/* ============================================================
   O QUE É BIKEFIT
   ============================================================ */
.whatis__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.whatis__pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.pillar {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  transition: border-color 0.3s;
}

.pillar:first-child { border-top: 1px solid var(--color-border); }
.pillar:hover { border-color: var(--color-primary); }

.pillar__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  background: var(--color-surface);
  transition: border-color 0.3s, background 0.3s;
}

.pillar:hover .pillar__icon {
  border-color: var(--color-primary);
  background: var(--color-primary-dim);
}

.pillar__number {
  font-family: var(--font-label);
  font-size: 0.65rem;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  display: block;
}

.pillar__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}

.pillar__text { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.65; }

.whatis__visual { position: relative; }

.whatis__visual img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  aspect-ratio: 4/5;
  filter: grayscale(20%);
  transition: filter 0.5s;
}

.whatis__visual:hover img { filter: grayscale(0%); }

.whatis__visual::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-md) + 1px);
  background: linear-gradient(135deg, var(--color-primary) 0%, transparent 40%);
  z-index: -1;
  opacity: 0.4;
}

.whatis__stat {
  position: absolute;
  bottom: 28px;
  left: -32px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(8px);
}

.whatis__stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}

.whatis__stat-label {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  font-family: var(--font-label);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================================
   PARA QUEM É
   ============================================================ */
.forwhom { background: var(--color-surface); }

.forwhom__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.profile-card {
  position: relative;
  background: var(--color-surface);
  padding: 40px 36px;
  overflow: hidden;
  transition: background 0.35s;
}

.profile-card::before {
  content: attr(data-num);
  position: absolute;
  top: -12px;
  right: 20px;
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(245,197,24,0.07);
  pointer-events: none;
  transition: -webkit-text-stroke-color 0.4s;
  user-select: none;
}

.profile-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.profile-card:hover { background: #CBCBC9; }
.profile-card:hover::before { -webkit-text-stroke-color: rgba(245,197,24,0.13); }
.profile-card:hover::after { opacity: 1; }

.profile-card__tag {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: block;
  position: relative;
  z-index: 1;
}

.profile-card__title {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.profile-card__pain {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 14px;
  font-family: var(--font-label);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.profile-card__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.howworks__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 8px;
}

.howworks__steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 44px;
  right: 44px;
  height: 1px;
  background: linear-gradient(90deg,
    var(--color-primary) 0%,
    var(--color-border) 60%,
    transparent 100%);
}

.step {
  padding: 0 28px;
  position: relative;
}

.step__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 2px solid var(--color-primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background 0.3s, box-shadow 0.3s;
}

.step.reveal.visible .step__dot {
  background: var(--color-primary);
  box-shadow: 0 0 16px rgba(245,197,24,0.5);
}

.step__number {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px var(--color-border-light);
  line-height: 0.9;
  letter-spacing: -0.05em;
  margin-bottom: 20px;
  transition: -webkit-text-stroke-color 0.4s, color 0.4s;
  display: block;
}

.step.reveal.visible .step__number {
  -webkit-text-stroke-color: var(--color-primary);
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.step__text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
.testimonials { background: var(--color-surface-alt); }

.testimonials__carousel {
  position: relative;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s var(--ease-out-expo);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 14px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

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

.testimonial-card__quote {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.7;
  color: var(--color-primary);
  opacity: 0.18;
  position: absolute;
  top: 20px;
  left: 28px;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.3s;
}

.testimonial-card:hover .testimonial-card__quote { opacity: 0.28; }

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  color: var(--color-primary);
  font-size: 0.85rem;
  position: relative;
  z-index: 1;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: rgba(24,24,22,0.82);
  line-height: 1.75;
  flex: 1;
  position: relative;
  z-index: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--color-border);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--color-primary);
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--color-border-light);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.testimonial-card__modality {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  font-family: var(--font-label);
  letter-spacing: 0.05em;
}

.testimonials__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 44px;
}

.testimonials__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: grid;
  place-items: center;
  color: var(--color-text);
  font-size: 1rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}

.testimonials__btn:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-dim);
  transform: scale(1.08);
}

.testimonials__dots { display: flex; gap: 8px; }

.testimonials__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-border-light);
  transition: background 0.25s, transform 0.25s, width 0.25s;
  border-radius: var(--radius-pill);
}

.testimonials__dot.active {
  background: var(--color-primary);
  width: 20px;
}

/* ============================================================
   AGENDAMENTO
   ============================================================ */
.booking { background: var(--color-surface); }

.booking__header {
  max-width: 640px;
  margin-bottom: 48px;
}

.booking__info-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 0.95;
  margin-bottom: 16px;
}

.booking__info-title em { font-style: normal; color: var(--color-primary); }

.booking__info-text {
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* Bloco CTA de agendamento */
.booking__cta-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 36px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 56px 64px;
  position: relative;
  overflow: hidden;
}

.booking__cta-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

.booking__cta-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 48px;
  width: 100%;
}

.booking__benefit {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.92rem;
  color: rgba(24,24,22,0.88);
}

.booking__benefit-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #000;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.booking__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-primary);
  color: #000;
  font-family: var(--font-label);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 20px 40px;
  border-radius: var(--radius-sm);
  transition: transform 0.25s var(--ease-out-expo),
              box-shadow 0.25s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.booking__cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.55s var(--ease-out-expo);
}

.booking__cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(245,197,24,0.4);
}

.booking__cta-btn:hover::before { transform: translateX(100%); }

.booking__cta-arrow {
  transition: transform 0.25s var(--ease-out-expo);
}

.booking__cta-btn:hover .booking__cta-arrow {
  transform: translate(3px, -3px);
}

.booking__cta-note {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-family: var(--font-label);
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .booking__cta-block {
    padding: 36px 28px;
    gap: 28px;
  }

  .booking__cta-benefits {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .booking__cta-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }

.faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s;
}

.faq-item__trigger:hover { color: var(--color-text); }
.faq-item.open .faq-item__trigger { color: var(--color-primary); }

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
  font-size: 1.3rem;
  font-weight: 300;
  transition: transform 0.35s var(--ease-out-expo), color 0.2s;
  line-height: 1;
}

.faq-item.open .faq-item__icon { transform: rotate(45deg); color: var(--color-primary); }

.faq-item__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out-expo);
}

.faq-item.open .faq-item__body { max-height: 500px; }

.faq-item__answer {
  padding: 0 0 24px;
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #282826;
  border-top: 1px solid var(--color-border);
  padding-block: 72px 36px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 56px;
  margin-bottom: 56px;
  align-items: start;
}

.footer__brand-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 280px;
  line-height: 1.75;
}

.footer__socials { display: flex; gap: 10px; }

.footer__social {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.footer__social:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-dim);
}

.footer__col-title {
  font-family: var(--font-label);
  font-size: 0.65rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}

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

.footer__links a {
  font-size: 0.9rem;
  color: rgba(240,237,232,0.55);
  transition: color 0.2s;
}

.footer__links a:hover { color: var(--color-primary); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(240,237,232,0.55);
  margin-bottom: 12px;
}

.footer__contact-icon { color: var(--color-primary); flex-shrink: 0; margin-top: 2px; }

.footer__partner-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  padding: 10px;
  line-height: 0;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(240, 237, 232, 0.55);
  background: linear-gradient(160deg, #f7f4ee 0%, #e8e4db 55%, #ddd8cf 100%);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.footer__partner-link:hover {
  transform: scale(1.04);
  border-color: rgba(245, 197, 24, 0.65);
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(245, 197, 24, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.footer__partner-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.footer__bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 32px;
  flex-wrap: wrap;
}

.footer__copy {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.footer__bottom-meta {
  display: flex;
  align-items: center;
  gap: 24px 32px;
  flex-wrap: wrap;
}

.footer__credits {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__credits-label {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.footer__credits-link {
  display: flex;
  align-items: center;
  line-height: 0;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.footer__credits-link:hover {
  opacity: 1;
}

.footer__dahe-logo {
  height: 22px;
  width: auto;
  display: block;
}

.footer__admin-link {
  font-size: 0.75rem;
  color: var(--color-border);
  transition: color 0.2s;
}

.footer__admin-link:hover {
  color: var(--color-text-muted);
}

/* Email FAB */
.email-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #1f2937;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 24px rgba(17, 24, 39, 0.35);
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
  border: none;
}

.email-fab:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(17, 24, 39, 0.5);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.35s var(--ease-out-expo);
  z-index: 9999;
  min-width: 280px;
}

.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast--success { border-color: rgba(40,200,100,0.35); }
.toast--success .toast__icon { color: #4eca7a; }
.toast--error { border-color: rgba(210,80,80,0.35); }
.toast--error .toast__icon { color: #d94f4f; }
.toast__icon { font-size: 1rem; }

/* ============================================================
   ADMIN — Painel Administrativo
   ============================================================ */
.admin-body {
  display: flex;
  min-height: 100vh;
  background: var(--color-bg);
  cursor: auto;
}

.admin-body * { cursor: auto; }

/* Login */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  padding: 24px;
}

.admin-login__box {
  width: 100%;
  max-width: 400px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 44px;
}

.admin-login__logo {
  margin-bottom: 8px;
}

.admin-login__subtitle {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

.admin-login__error {
  background: rgba(210,80,80,0.08);
  border: 1px solid rgba(210,80,80,0.25);
  color: #d94f4f;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: none;
}

.admin-login__error.visible { display: block; }

/* Sidebar */
.admin-sidebar {
  width: 240px;
  flex-shrink: 0;
  background: var(--color-surface);
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow-y: auto;
}

.admin-sidebar__brand {
  padding: 24px 20px;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.admin-sidebar__brand-tag {
  font-size: 0.6rem;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  text-transform: none;
  font-weight: 400;
}

.admin-sidebar__nav {
  flex: 1;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.admin-nav-item:hover, .admin-nav-item.active {
  background: var(--color-primary-dim);
  color: var(--color-text);
}

.admin-nav-item.active { color: var(--color-primary); }
.admin-nav-item__icon { font-size: 1rem; width: 20px; text-align: center; }

.admin-sidebar__footer {
  padding: 16px 12px;
  border-top: 1px solid var(--color-border);
}

/* Main */
.admin-main { margin-left: 240px; flex: 1; display: flex; flex-direction: column; min-height: 100vh; }

.admin-topbar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}

.admin-topbar__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.admin-topbar__user {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.admin-content { padding: 32px; flex: 1; }
.admin-panel { display: none; }
.admin-panel.active { display: block; }

.admin-section-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
}

.admin-section-subtitle {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.admin-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}

.admin-card__title {
  font-family: var(--font-label);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: 4px;
}

.admin-card__subtitle {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.admin-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.admin-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }

.admin-table th {
  background: var(--color-surface-alt);
  padding: 12px 16px;
  text-align: left;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border);
}

.admin-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--color-surface-alt); }

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.badge--pending   { background: rgba(245,197,24,0.1);  color: var(--color-primary); }
.badge--confirmed { background: rgba(40,200,100,0.1);  color: #4eca7a; }
.badge--cancelled { background: rgba(210,80,80,0.1);   color: #d94f4f; }
.badge--active    { background: rgba(40,200,100,0.1);  color: #4eca7a; }
.badge--inactive  { background: rgba(110,107,101,0.15); color: var(--color-text-muted); }

.admin-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: center;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.admin-filters select,
.admin-filters input[type="date"] {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  padding: 8px 12px;
  font-size: 0.8rem;
}

.avail-calendar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.avail-slots-list { display: flex; flex-direction: column; gap: 8px; }

.avail-slot-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
}

.star-rating { display: flex; flex-direction: row-reverse; gap: 4px; }
.star-rating input { display: none; }
.star-rating label { font-size: 1.5rem; cursor: pointer; color: var(--color-border-light); transition: color 0.2s; }
.star-rating label:hover,
.star-rating input:checked ~ label { color: var(--color-primary); }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(4px);
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  max-width: 460px;
  width: 100%;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.modal__text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
}

.modal__actions { display: flex; gap: 12px; justify-content: flex-end; }

#admin-toast { bottom: 32px; }

/* ============================================================
   RESPONSIVIDADE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 88px; }

  .whatis__grid    { grid-template-columns: 1fr; gap: 48px; }
  .whatis__visual  { display: none; }
  .booking__grid   { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid    { grid-template-columns: 1fr 1fr; }

  .howworks__steps { grid-template-columns: repeat(2, 1fr); gap: 48px; }
  .howworks__steps::before { display: none; }

  .testimonial-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 768px) {
  :root { --section-py: 72px; }

  body { cursor: auto; }
  .cursor, .cursor--ring { display: none; }
  button, input, select, textarea, a { cursor: auto; }

  .navbar__nav, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .navbar__drawer    { display: flex; }

  .forwhom__grid { grid-template-columns: 1fr; }
  .forwhom__grid .profile-card { border-bottom: 1px solid var(--color-border); }

  .howworks__steps { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .form__row { grid-template-columns: 1fr; }

  .hero__scroll { display: none; }
  .hero__headline { letter-spacing: -0.02em; }

  .navbar .brand-logo--nav { height: 44px; }
  .navbar.scrolled .brand-logo--nav { height: 30px; }

  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }

  .container { padding-inline: 20px; }
}

@media (max-width: 480px) {
  :root { --section-py: 56px; }

  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  .booking__form { padding: 24px 18px; }
  .whatis__stat { left: 0; bottom: 0; position: static; margin-top: 16px; }

  .navbar__drawer-links a {
    font-size: 1.2rem;
    padding: 12px 12px;
  }

  .navbar__drawer {
    width: 100%;
    max-width: none;
    border-left: none;
    box-shadow: none;
  }
}

/* ============================================================
   ADMIN REDESIGN v2 — tema híbrido
   ============================================================ */
.admin-body {
  --admin-bg: #f4f6fb;
  --admin-surface: #ffffff;
  --admin-surface-2: #f1f4fa;
  --admin-border: #dbe2f0;
  --admin-border-strong: #c6d1e5;
  --admin-text: #0f172a;
  --admin-text-muted: #64748b;
  --admin-shadow: 0 14px 38px rgba(15, 23, 42, 0.08);
  --admin-primary: #4f46e5;
  --admin-primary-soft: rgba(79, 70, 229, 0.12);
  --admin-danger: #dc2626;
  --admin-radius-sm: 8px;
  --admin-radius-md: 12px;
  --admin-radius-lg: 16px;
  background:
    radial-gradient(circle at 100% -20%, rgba(79, 70, 229, 0.08), transparent 50%),
    radial-gradient(circle at -10% 20%, rgba(14, 165, 233, 0.08), transparent 35%),
    var(--admin-bg);
  color: var(--admin-text);
}

.admin-body[data-theme="dark"] {
  --admin-bg: #0b1220;
  --admin-surface: #121a2b;
  --admin-surface-2: #0f1726;
  --admin-border: #25324a;
  --admin-border-strong: #364764;
  --admin-text: #f1f5f9;
  --admin-text-muted: #9fb0c8;
  --admin-shadow: 0 18px 40px rgba(2, 8, 23, 0.45);
  --admin-primary: #818cf8;
  --admin-primary-soft: rgba(129, 140, 248, 0.2);
  --admin-danger: #f87171;
}

.admin-login,
.admin-topbar,
.admin-sidebar,
.admin-card,
.admin-table th,
.admin-table td,
.admin-table tr:hover td,
.admin-table-wrapper,
.admin-login__box,
.modal {
  background: var(--admin-surface);
  border-color: var(--admin-border);
  color: var(--admin-text);
}

.admin-login {
  background: transparent;
}

.admin-login__box {
  border-radius: var(--admin-radius-lg);
  box-shadow: var(--admin-shadow);
}

.admin-login__subtitle,
.admin-topbar__user,
.admin-section-subtitle,
.admin-card__subtitle,
.admin-filters,
.admin-filters label,
.dashboard-note,
.dashboard-kpi-meta,
.daily-row__date,
.toast__msg {
  color: var(--admin-text-muted);
}

.admin-sidebar {
  width: 268px;
  background: linear-gradient(180deg, var(--admin-surface) 0%, var(--admin-surface-2) 100%);
  border-right: 1px solid var(--admin-border);
}

.admin-sidebar__brand {
  padding: 28px 20px;
}

.admin-nav-item {
  border: 1px solid transparent;
  border-radius: var(--admin-radius-sm);
  padding: 11px 12px;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.admin-nav-item:hover,
.admin-nav-item.active {
  background: var(--admin-primary-soft);
  border-color: rgba(79, 70, 229, 0.3);
  color: var(--admin-text);
}

.admin-nav-item.active {
  color: var(--admin-primary);
}

.admin-nav-item:active {
  transform: translateY(1px);
}

.admin-main {
  margin-left: 268px;
}

.admin-topbar {
  backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--admin-surface) 88%, transparent);
  border-bottom: 1px solid var(--admin-border);
  padding: 16px 28px;
}

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

.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--admin-radius-sm);
  border: 1px solid var(--admin-border-strong);
  background: var(--admin-surface-2);
  color: var(--admin-text);
  font-size: 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.theme-toggle:hover {
  border-color: var(--admin-primary);
  box-shadow: 0 0 0 3px var(--admin-primary-soft);
}

.theme-toggle:active {
  transform: translateY(1px);
}

.admin-content {
  padding: 28px;
}

.admin-card {
  border-radius: var(--admin-radius-md);
  border: 1px solid var(--admin-border);
  box-shadow: var(--admin-shadow);
  padding: 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.admin-card__title {
  color: var(--admin-text);
  letter-spacing: 0.1em;
  line-height: 1.45;
}

.admin-card:hover {
  border-color: var(--admin-border-strong);
  transform: translateY(-1px);
}

.btn {
  border-radius: var(--admin-radius-sm);
  min-height: 40px;
  line-height: 1.25;
  transition: transform 0.16s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.btn--primary {
  background: var(--admin-primary);
  border-color: var(--admin-primary);
  color: #fff;
}

.btn--outline {
  border-color: var(--admin-border-strong);
  color: var(--admin-text);
}

.btn--outline:hover {
  border-color: var(--admin-primary);
  background: var(--admin-primary-soft);
  color: var(--admin-text);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn:active:not(:disabled) {
  transform: translateY(1px);
}

.admin-table-wrapper {
  border-radius: var(--admin-radius-md);
  background: var(--admin-surface);
}

.admin-table th {
  background: var(--admin-surface-2);
  color: var(--admin-text-muted);
}

.admin-table td {
  color: var(--admin-text);
}

.admin-table tr:hover td {
  background: var(--admin-surface-2);
}

.badge {
  border-radius: 999px;
  padding: 5px 10px;
  border: 1px solid transparent;
  line-height: 1.2;
}

.badge--active {
  background: rgba(34, 197, 94, 0.14);
  color: #16a34a;
  border-color: rgba(22, 163, 74, 0.3);
}

.badge--inactive {
  background: rgba(148, 163, 184, 0.15);
  color: var(--admin-text-muted);
  border-color: rgba(148, 163, 184, 0.28);
}

.form__input,
.form__textarea,
.form__select,
.admin-filters select,
.admin-filters input[type="date"] {
  background: var(--admin-surface);
  color: var(--admin-text);
  border-color: var(--admin-border-strong);
  border-radius: 6px;
  min-height: 42px;
  line-height: 1.35;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus,
.admin-filters select:focus,
.admin-filters input[type="date"]:focus {
  border-color: var(--admin-primary);
  box-shadow: 0 0 0 2px var(--admin-primary-soft);
}

.form__label {
  line-height: 1.4;
  margin-bottom: 8px;
}

.form__group {
  margin-bottom: 16px;
}

.dashboard-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 12px;
  margin-bottom: 12px;
}

.dashboard-kpi-card {
  min-height: 116px;
  margin-bottom: 0;
}

.dashboard-kpi-value {
  margin-top: 8px;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.dashboard-kpi-meta {
  margin-top: 4px;
  font-size: 0.75rem;
}

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

.dashboard-section-card {
  margin-bottom: 0;
}

.dashboard-note {
  margin: 10px 0 0;
  font-size: 0.8rem;
}

.funnel-row {
  margin-bottom: 12px;
}

.funnel-row__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
}

.funnel-row__track {
  margin-top: 6px;
  height: 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--admin-border) 45%, transparent);
  overflow: hidden;
}

.funnel-row__bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--admin-primary), #22c55e);
}

.daily-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.8rem;
}

.daily-row__date {
  font-size: 0.76rem;
}

.daily-row__track {
  height: 8px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--admin-border) 45%, transparent);
  overflow: hidden;
}

.daily-row__bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #38bdf8, var(--admin-primary));
}

.daily-row__values {
  font-family: var(--font-mono);
  color: var(--admin-text-muted);
}

.dashboard-ranking {
  margin: 10px 0 0 18px;
  padding: 0;
  color: var(--admin-text);
}

.dashboard-ranking li {
  margin-bottom: 6px;
}

.modal-overlay {
  backdrop-filter: blur(10px);
}

.modal {
  border-radius: var(--admin-radius-lg);
  box-shadow: var(--admin-shadow);
}

.modal__text {
  white-space: pre-line;
}

#admin-toast {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border-strong);
  box-shadow: var(--admin-shadow);
}

/* ============================================================
   DEPOIMENTO PAGE v2 — Athletic Precision Form
   ============================================================ */

/* ── Page Shell ──────────────────────────────────────────── */
.dep-page {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(ellipse at 96% 2%, rgba(245,197,24,0.17) 0%, transparent 44%),
    radial-gradient(ellipse at 2% 96%, rgba(245,197,24,0.07) 0%, transparent 38%),
    var(--color-bg);
  display: flex;
  flex-direction: column;
  cursor: auto;
  overflow-x: hidden;
}

.dep-page * { cursor: auto; }
.dep-page .dep-btn,
.dep-page .dep-stars label,
.dep-page .dep-back-link { cursor: pointer; }

/* Decorative wheel SVG */
.dep-bg-wheel {
  position: fixed;
  top: 50%;
  right: -160px;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
}

.dep-bg-wheel svg { width: 100%; height: 100%; }

/* ── Header ──────────────────────────────────────────────── */
.dep-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(232,230,226,0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24,24,22,0.07);
}

.dep-logo-link { display: flex; align-items: center; line-height: 0; }

.dep-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.dep-back-link {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.25s var(--ease-out-expo);
}

.dep-back-link:hover { color: var(--color-text); gap: 12px; }

/* ── Main ────────────────────────────────────────────────── */
.dep-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 24px 56px;
  min-height: 100dvh;
}

/* ── Card ────────────────────────────────────────────────── */
.dep-card {
  width: 100%;
  max-width: 600px;
  background: #FAFAF8;
  border: 1px solid rgba(24,24,22,0.08);
  border-top: 3px solid var(--color-primary);
  border-radius: 2px;
  box-shadow:
    0 2px 4px rgba(24,24,22,0.03),
    0 8px 24px rgba(24,24,22,0.07),
    0 32px 72px rgba(24,24,22,0.08),
    0 72px 140px rgba(24,24,22,0.04);
  position: relative;
  overflow: hidden;
  padding: 52px 56px 52px;
  animation: depCardIn 0.65s var(--ease-out-expo) both;
}

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

/* ── Progress ────────────────────────────────────────────── */
.dep-prog {
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}

.dep-prog__track {
  height: 2px;
  background: rgba(24,24,22,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 12px;
}

.dep-prog__fill {
  height: 100%;
  width: 25%;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 0.55s var(--ease-out-expo);
}

.dep-prog__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dep-prog__label {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.dep-prog__hint {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(24,24,22,0.28);
}

/* ── Ghost Number ────────────────────────────────────────── */
.dep-ghost {
  position: absolute;
  bottom: -32px;
  right: -12px;
  font-family: var(--font-display);
  font-size: 22rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(245,197,24,0.09);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: opacity 0.35s;
}

/* ── Steps ───────────────────────────────────────────────── */
.dep-step {
  display: none;
  position: relative;
  z-index: 2;
}

.dep-step.active {
  display: block;
  animation: depStepIn 0.42s var(--ease-out-expo) both;
}

.dep-step.dep-step--back.active {
  animation: depStepBack 0.42s var(--ease-out-expo) both;
}

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

@keyframes depStepBack {
  from { opacity: 0; transform: translateX(-22px); }
  to   { opacity: 1; transform: translateX(0); }
}

.dep-step__badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(245,197,24,0.07);
  border: 1px solid rgba(245,197,24,0.22);
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 18px;
}

.dep-step__q {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--color-text);
  margin-bottom: 36px;
}

/* ── Field / Input ───────────────────────────────────────── */
.dep-field { position: relative; }

.dep-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(24,24,22,0.14);
  padding: 8px 0 14px;
  font-family: var(--font-body);
  font-size: 1.18rem;
  color: var(--color-text);
  outline: none;
  transition: border-color 0.3s var(--ease-out-expo);
  display: block;
  -webkit-appearance: none;
  appearance: none;
}

.dep-input::placeholder { color: rgba(24,24,22,0.26); font-size: 1rem; }

.dep-input:focus { border-bottom-color: var(--color-primary); }

/* Animated underline accent on focus */
.dep-field__line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width 0.4s var(--ease-out-expo);
  pointer-events: none;
}

.dep-input:focus ~ .dep-field__line { width: 100%; }

.dep-textarea {
  resize: none;
  min-height: 128px;
  line-height: 1.65;
  padding-top: 8px;
}

/* ── Stars ───────────────────────────────────────────────── */
.dep-stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}

/* Row-reverse trick: DOM order high→low, visually shows low→high */
.dep-stars {
  display: flex;
  flex-direction: row-reverse;
  gap: 4px;
  justify-content: flex-end;
}

.dep-stars input { display: none; }

.dep-stars label {
  font-size: 2.9rem;
  line-height: 1;
  color: rgba(24,24,22,0.11);
  transition: color 0.12s, transform 0.18s var(--ease-out-expo);
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}

/* Hover: fill hovered + all to the left (DOM-subsequent = visually left) */
.dep-stars label:hover,
.dep-stars label:hover ~ label { color: var(--color-primary); }
.dep-stars label:hover { transform: scale(1.22) translateY(-5px); }

/* Checked: fill checked label + all DOM-subsequent */
.dep-stars input:checked ~ label { color: var(--color-primary); }

.dep-stars__hint {
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  min-height: 1em;
  transition: opacity 0.2s;
}

/* ── Actions ─────────────────────────────────────────────── */
.dep-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 44px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

/* ── Button ──────────────────────────────────────────────── */
.dep-btn {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  transition:
    transform 0.25s var(--ease-out-expo),
    box-shadow 0.25s var(--ease-out-expo),
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.dep-btn--next,
.dep-btn--submit {
  background: var(--color-primary);
  color: #000;
  border-color: var(--color-primary);
}

.dep-btn--next::before,
.dep-btn--submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.38) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.52s var(--ease-out-expo);
}

.dep-btn--next:hover,
.dep-btn--submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,197,24,0.4);
}

.dep-btn--next:hover::before,
.dep-btn--submit:hover::before { transform: translateX(100%); }

.dep-btn--back {
  color: var(--color-text-muted);
  border-color: rgba(24,24,22,0.16);
}

.dep-btn--back:hover {
  color: var(--color-text);
  border-color: rgba(24,24,22,0.38);
}

.dep-btn:disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ── Message ─────────────────────────────────────────────── */
.dep-msg {
  display: block;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-top: 16px;
  min-height: 1.2em;
  position: relative;
  z-index: 2;
}

/* ── Success Card ────────────────────────────────────────── */
.dep-success {
  width: 100%;
  max-width: 600px;
  background: #FAFAF8;
  border: 1px solid rgba(24,24,22,0.08);
  border-top: 3px solid var(--color-primary);
  border-radius: 2px;
  box-shadow:
    0 2px 4px rgba(24,24,22,0.03),
    0 8px 24px rgba(24,24,22,0.07),
    0 32px 72px rgba(24,24,22,0.08);
  padding: 72px 56px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: depCardIn 0.6s var(--ease-out-expo) both;
}

/* Large decorative circle */
.dep-success__ring {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(245,197,24,0.08);
  pointer-events: none;
}

.dep-success__ring::before {
  content: '';
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px solid rgba(245,197,24,0.06);
}

.dep-success__check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: checkBounce 0.65s var(--ease-out-expo) 0.15s both;
}

@keyframes checkBounce {
  from { opacity: 0; transform: scale(0.4); }
  65%  { transform: scale(1.14); }
  to   { opacity: 1; transform: scale(1); }
}

.dep-success__eyebrow {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 14px;
  opacity: 0;
  animation: depFadeUp 0.5s var(--ease-out-expo) 0.38s both;
}

.dep-success__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: var(--color-text);
  margin-bottom: 24px;
  opacity: 0;
  animation: depFadeUp 0.6s var(--ease-out-expo) 0.5s both;
}

.dep-success__body {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  max-width: 400px;
  margin: 0 auto 44px;
  opacity: 0;
  animation: depFadeUp 0.5s var(--ease-out-expo) 0.6s both;
}

.dep-success .dep-btn {
  opacity: 0;
  animation: depFadeUp 0.5s var(--ease-out-expo) 0.72s both;
}

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

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 640px) {
  .dep-header { padding: 16px 20px; }

  .dep-main { padding: 88px 0 40px; align-items: flex-start; }

  .dep-card,
  .dep-success {
    border-radius: 0;
    border-left: none;
    border-right: none;
    padding: 40px 28px 40px;
    box-shadow:
      0 4px 16px rgba(24,24,22,0.07),
      0 20px 48px rgba(24,24,22,0.07);
  }

  .dep-ghost { font-size: 14rem; bottom: -20px; right: -6px; }

  .dep-step__q {
    font-size: clamp(2rem, 9vw, 2.8rem);
    margin-bottom: 28px;
  }

  .dep-stars label { font-size: 2.5rem; }

  .dep-input { font-size: 1.05rem; }

  .dep-actions { margin-top: 36px; flex-direction: column; gap: 10px; }

  .dep-btn--next,
  .dep-btn--submit,
  .dep-btn--back {
    width: 100%;
    justify-content: center;
  }

  .dep-success { padding: 56px 28px 48px; }
  .dep-bg-wheel { display: none; }
}

@media (max-width: 380px) {
  .dep-card, .dep-success { padding: 32px 20px 32px; }
  .dep-prog { margin-bottom: 36px; }
  .dep-stars label { font-size: 2.1rem; gap: 2px; }
  .dep-ghost { font-size: 11rem; }
}

/* ── Legacy depoimento-page (kept for non-breaking compatibility) ── */
.depoimento-page {
  background:
    radial-gradient(circle at 84% 8%, rgba(245, 197, 24, 0.14), transparent 34%),
    radial-gradient(circle at 8% 30%, rgba(245, 197, 24, 0.09), transparent 42%),
    var(--color-bg);
  color: var(--color-text);
  cursor: auto;
}

.depoimento-page * {
  cursor: auto;
}

.depoimento-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}

.depoimento-container {
  max-width: 1120px;
}

.depoimento-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.depoimento-heading .section__title {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.depoimento-heading .section__subtitle {
  max-width: 690px;
}

.depoimento-grid {
  display: grid;
  grid-template-columns: minmax(250px, 320px) 1fr;
  gap: 20px;
  align-items: start;
}

.depoimento-side-card,
.depoimento-form-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.11);
}

.depoimento-side-card {
  padding: 22px;
  position: sticky;
  top: 24px;
}

.depoimento-form-card {
  padding: 24px;
}

.depoimento-form-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.25;
}

.depoimento-form-subtitle {
  margin: 8px 0 18px;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.depoimento-progress {
  margin: 0 0 18px;
  height: 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-border) 55%, transparent);
  overflow: hidden;
}

.depoimento-progress__bar {
  height: 100%;
  width: 25%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary), #f59e0b);
  transition: width 0.22s ease;
}

.depoimento-rating-summary {
  margin: 8px 0 0;
  font-size: 1.4rem;
  line-height: 1.25;
  font-weight: 700;
}

.depoimento-side-note {
  margin-top: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-size: 0.9rem;
}

.depoimento-highlights {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--color-text-muted);
}

.depoimento-highlights li {
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 0.86rem;
}

.depoimento-feedback {
  min-height: 136px;
}

.depoimento-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.depoimento-message {
  color: var(--color-text-muted);
  line-height: 1.4;
  font-size: 0.86rem;
}

.depoimento-page .star-rating label {
  line-height: 1;
  font-size: 1.45rem;
  transform-origin: center;
  transition: color 0.16s ease, transform 0.16s ease;
}

.depoimento-page .star-rating label:hover {
  transform: scale(1.08);
}

.depoimento-page .form__input,
.depoimento-page .form__textarea {
  border-radius: 6px;
  border-width: 1px;
  padding: 13px 14px;
  font-size: 0.95rem;
  line-height: 1.45;
}

.depoimento-page .form__input:focus,
.depoimento-page .form__textarea:focus {
  box-shadow: 0 0 0 2px rgba(245, 197, 24, 0.22);
}

.depoimento-input {
  background: rgba(255, 255, 255, 0.72);
}

.depoimento-step {
  display: none;
  animation: depoimentoStepIn 0.22s ease;
}

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

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

/* Typography clipping safeguards */
.admin-topbar__title,
.section__title,
.modal__title,
.admin-card__title,
.form__label {
  overflow: visible;
  text-rendering: geometricPrecision;
}

.admin-topbar__title {
  line-height: 1.2;
  padding-bottom: 2px;
}

.section__title {
  line-height: 1.08;
  padding-bottom: 4px;
}

@media (max-width: 1024px) {
  .admin-sidebar {
    width: 230px;
  }

  .admin-main {
    margin-left: 230px;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .depoimento-grid {
    grid-template-columns: 1fr;
  }

  .depoimento-side-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .admin-topbar {
    padding: 14px 18px;
  }

  .admin-content {
    padding: 18px;
  }

  .admin-card {
    padding: 16px;
  }

  .admin-main {
    margin-left: 0;
  }

  .admin-topbar__title {
    font-size: 1rem;
  }

  .depoimento-form-card,
  .depoimento-side-card {
    padding: 16px;
  }

  .depoimento-heading {
    margin-bottom: 18px;
  }

  .depoimento-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   ADMIN v3 — Dark Precision Workstation
   Overrides earlier admin CSS via cascade (same selectors, later wins)
   ============================================================ */

/* ── Design Tokens — Dark (default) ─────────────────────── */
.admin-body,
.admin-body[data-theme="dark"] {
  --admin-bg:           #0D0D0B;
  --admin-surface:      #151513;
  --admin-surface-2:    #1B1B18;
  --admin-border:       #272724;
  --admin-border-strong:#343430;
  --admin-text:         #EDEAE4;
  --admin-text-muted:   #706E68;
  --admin-shadow:       0 20px 56px rgba(0, 0, 0, 0.55), 0 4px 16px rgba(0, 0, 0, 0.3);
  --admin-primary:      #F5C518;
  --admin-primary-soft: rgba(245, 197, 24, 0.11);
  --admin-danger:       #E05555;
  --admin-radius-sm:    4px;
  --admin-radius-md:    6px;
  --admin-radius-lg:    10px;
  background: var(--admin-bg);
  color: var(--admin-text);
}

/* ── Design Tokens — Light ───────────────────────────────── */
.admin-body[data-theme="light"] {
  --admin-bg:           #EDEBE8;
  --admin-surface:      #F8F7F4;
  --admin-surface-2:    #EDEBE8;
  --admin-border:       #D4D2CE;
  --admin-border-strong:#C0BEB8;
  --admin-text:         #181816;
  --admin-text-muted:   #888480;
  --admin-shadow:       0 8px 32px rgba(24, 24, 20, 0.09);
  --admin-primary:      #C9A00E;
  --admin-primary-soft: rgba(201, 160, 14, 0.1);
  --admin-danger:       #D94040;
  background: var(--admin-bg);
  color: var(--admin-text);
}

/* ── Admin body shell ────────────────────────────────────── */
.admin-body {
  display: flex;
  min-height: 100vh;
  cursor: auto;
  font-family: var(--font-body);
}

.admin-body * { cursor: auto; }
.admin-body button,
.admin-body a,
.admin-body label,
.admin-body select,
.admin-body input,
.admin-body textarea { cursor: auto; }

/* ── Login Screen ────────────────────────────────────────── */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--admin-bg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}

/* Decorative glow blob */
.adm-login-glow {
  position: absolute;
  top: -15%;
  right: -8%;
  width: 55vmin;
  height: 55vmin;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.admin-login__box {
  width: 100%;
  max-width: 420px;
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-top: 3px solid var(--admin-primary);
  border-radius: var(--admin-radius-lg);
  padding: 48px 44px;
  box-shadow: var(--admin-shadow);
  position: relative;
  z-index: 1;
  animation: adminCardIn 0.55s var(--ease-out-expo) both;
}

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

.admin-login__logo { margin-bottom: 8px; }

.admin-login__subtitle {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--admin-text-muted);
  margin-bottom: 32px;
}

.admin-login__error {
  background: rgba(224, 85, 85, 0.08);
  border: 1px solid rgba(224, 85, 85, 0.22);
  color: var(--admin-danger);
  padding: 12px 16px;
  border-radius: var(--admin-radius-sm);
  font-size: 0.84rem;
  margin-bottom: 16px;
  display: none;
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

.admin-login__error.visible { display: block; }

/* ── Sidebar ─────────────────────────────────────────────── */
.admin-sidebar {
  width: 252px;
  flex-shrink: 0;
  background: var(--admin-surface);
  border-right: 1px solid var(--admin-border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.admin-sidebar__brand {
  padding: 24px 20px 20px;
  border-bottom: 1px solid var(--admin-border);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
}

.admin-sidebar__brand-tag {
  font-family: var(--font-label);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--admin-text-muted);
  font-weight: 400;
  background: var(--admin-surface-2);
  border: 1px solid var(--admin-border);
  padding: 2px 7px;
  border-radius: 2px;
}

.admin-sidebar__nav {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ── Nav Items ───────────────────────────────────────────── */
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--admin-radius-sm);
  font-family: var(--font-label);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--admin-text-muted);
  border: 1px solid transparent;
  border-left: 2px solid transparent;
  background: transparent;
  text-align: left;
  width: 100%;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
}

.admin-nav-item:hover {
  background: var(--admin-surface-2);
  color: var(--admin-text);
  border-color: transparent;
  border-left-color: var(--admin-border-strong);
}

.admin-nav-item.active {
  background: var(--admin-primary-soft);
  color: var(--admin-primary);
  border-left-color: var(--admin-primary);
  border-color: transparent;
  border-left-color: var(--admin-primary);
}

.admin-nav-item__icon {
  flex-shrink: 0;
  width: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.18s;
}

.admin-nav-item.active .admin-nav-item__icon,
.admin-nav-item:hover .admin-nav-item__icon { opacity: 1; }

.admin-sidebar__footer {
  padding: 14px 10px;
  border-top: 1px solid var(--admin-border);
}

.adm-logout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

/* ── Main Content Area ───────────────────────────────────── */
.admin-main {
  margin-left: 252px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: var(--admin-bg);
}

/* ── Topbar ──────────────────────────────────────────────── */
.admin-topbar {
  background: color-mix(in srgb, var(--admin-surface) 90%, transparent);
  border-bottom: 1px solid var(--admin-border);
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.admin-topbar__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--admin-text);
  line-height: 1.2;
  padding-bottom: 2px;
}

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

.admin-topbar__user {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: var(--admin-text-muted);
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: var(--admin-radius-sm);
  border: 1px solid var(--admin-border-strong);
  background: var(--admin-surface-2);
  color: var(--admin-text);
  font-size: 0.9rem;
  display: grid;
  place-items: center;
  transition: border-color 0.18s, box-shadow 0.18s;
}

.theme-toggle:hover {
  border-color: var(--admin-primary);
  box-shadow: 0 0 0 2px var(--admin-primary-soft);
}

/* ── Content / Panels ────────────────────────────────────── */
.admin-content {
  padding: 28px;
  flex: 1;
}

.admin-panel { display: none; }
.admin-panel.active { display: block; }

.admin-section-subtitle {
  font-size: 0.84rem;
  color: var(--admin-text-muted);
  margin-bottom: 20px;
  line-height: 1.65;
}

.admin-section-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 6px;
  color: var(--admin-text);
}

/* ── Cards ───────────────────────────────────────────────── */
.admin-card {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius-md);
  padding: 22px 24px;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.admin-card:hover { border-color: var(--admin-border-strong); }

.admin-card__title {
  font-family: var(--font-label);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--admin-text-muted);
  margin-bottom: 16px;
  line-height: 1.4;
}

.admin-card__subtitle {
  font-size: 0.8rem;
  color: var(--admin-text-muted);
  margin-bottom: 20px;
}

/* ── Tables ──────────────────────────────────────────────── */
.admin-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius-md);
  background: var(--admin-surface);
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.84rem;
}

.admin-table th {
  background: var(--admin-surface-2);
  padding: 11px 16px;
  text-align: left;
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  color: var(--admin-text-muted);
  text-transform: uppercase;
  border-bottom: 1px solid var(--admin-border);
}

.admin-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--admin-border);
  color: var(--admin-text);
  vertical-align: middle;
}

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

.admin-table tr:hover td {
  background: var(--admin-surface-2);
}

/* ── Badges ──────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-label);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.badge--pending  { background: rgba(245,197,24,0.1);  color: #F5C518;  border-color: rgba(245,197,24,0.22); }
.badge--active   { background: rgba(78,200,122,0.1);  color: #4EC87A;  border-color: rgba(78,200,122,0.25); }
.badge--inactive { background: rgba(148,163,184,0.1); color: var(--admin-text-muted); border-color: var(--admin-border-strong); }
.badge--confirmed{ background: rgba(78,200,122,0.1);  color: #4EC87A;  border-color: rgba(78,200,122,0.25); }
.badge--cancelled{ background: rgba(224,85,85,0.1);   color: var(--admin-danger); border-color: rgba(224,85,85,0.22); }

/* ── Filters ─────────────────────────────────────────────── */
.admin-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: center;
  font-family: var(--font-label);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--admin-text-muted);
}

/* ── Form Fields ─────────────────────────────────────────── */
.admin-body .form__group { margin-bottom: 16px; }

.admin-body .form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.admin-body .form__label {
  display: block;
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--admin-text-muted);
  margin-bottom: 7px;
  line-height: 1.4;
}

.admin-body .form__input,
.admin-body .form__textarea,
.admin-body .form__select,
.admin-body .admin-filters select,
.admin-body .admin-filters input[type="date"] {
  width: 100%;
  background: var(--admin-surface-2);
  color: var(--admin-text);
  border: 1px solid var(--admin-border-strong);
  border-radius: var(--admin-radius-sm);
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  min-height: 40px;
  outline: none;
  transition: border-color 0.16s, box-shadow 0.16s, background 0.16s;
  display: block;
}

.admin-body .form__input::placeholder,
.admin-body .form__textarea::placeholder { color: var(--admin-text-muted); opacity: 0.7; }

.admin-body .form__input:focus,
.admin-body .form__textarea:focus,
.admin-body .form__select:focus,
.admin-body .admin-filters select:focus,
.admin-body .admin-filters input[type="date"]:focus {
  border-color: var(--admin-primary);
  box-shadow: 0 0 0 2px var(--admin-primary-soft);
  background: var(--admin-surface);
}

.admin-body .form__textarea {
  min-height: 90px;
  resize: vertical;
  line-height: 1.55;
}

/* ── Buttons (admin-scoped overrides) ────────────────────── */
.admin-body .btn {
  border-radius: var(--admin-radius-sm);
  min-height: 38px;
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  transition:
    transform 0.16s var(--ease-out-expo),
    box-shadow 0.16s var(--ease-out-expo),
    background 0.16s,
    color 0.16s,
    border-color 0.16s;
}

.admin-body .btn--primary {
  background: var(--admin-primary);
  border-color: var(--admin-primary);
  color: #000;
}

.admin-body .btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 197, 24, 0.3);
}

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

.admin-body .btn--outline:hover {
  border-color: var(--admin-primary);
  color: var(--admin-primary);
  background: var(--admin-primary-soft);
}

.admin-body .btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

.admin-body .btn:active:not(:disabled) { transform: translateY(1px); }

/* ── Dashboard: KPI Cards ────────────────────────────────── */
.dashboard-kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.dashboard-kpi-card {
  margin-bottom: 0;
  min-height: 110px;
  border-top: 2px solid var(--admin-primary) !important;
  position: relative;
}

.dashboard-kpi-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--admin-primary);
  margin-top: 8px;
  line-height: 1;
}

.dashboard-kpi-meta {
  margin-top: 6px;
  font-size: 0.74rem;
  color: var(--admin-text-muted);
  font-family: var(--font-label);
  letter-spacing: 0.06em;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.dashboard-section-card { margin-bottom: 0; }

.dashboard-note {
  margin: 12px 0 0;
  font-size: 0.78rem;
  color: var(--admin-text-muted);
  font-family: var(--font-label);
  letter-spacing: 0.05em;
}

/* Funnel bars */
.funnel-row { margin-bottom: 14px; }

.funnel-row__header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  margin-bottom: 7px;
  color: var(--admin-text);
}

.funnel-row__track {
  height: 8px;
  border-radius: 999px;
  background: var(--admin-surface-2);
  overflow: hidden;
}

.funnel-row__bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--admin-primary), rgba(245,197,24,0.5));
  transition: width 0.6s var(--ease-out-expo);
}

/* Daily bars */
.daily-row {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 0.78rem;
}

.daily-row__date {
  font-family: var(--font-label);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: var(--admin-text-muted);
}

.daily-row__track {
  height: 6px;
  border-radius: 999px;
  background: var(--admin-surface-2);
  overflow: hidden;
}

.daily-row__bar {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(245,197,24,0.4), var(--admin-primary));
  transition: width 0.55s var(--ease-out-expo);
}

.daily-row__values {
  font-family: var(--font-label);
  font-size: 0.6rem;
  color: var(--admin-text-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.dashboard-ranking {
  margin: 12px 0 0 16px;
  padding: 0;
  color: var(--admin-text);
  font-size: 0.85rem;
}

.dashboard-ranking li {
  margin-bottom: 7px;
  color: var(--admin-text-muted);
}

.dashboard-ranking li strong { color: var(--admin-text); }

/* Availability */
.avail-calendar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.avail-slots-list { display: flex; flex-direction: column; gap: 8px; }

.avail-slot-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--admin-surface-2);
  border: 1px solid var(--admin-border);
  border-radius: var(--admin-radius-sm);
  font-size: 0.84rem;
}

/* Star rating (in admin testimonial moderation) */
.star-rating { display: flex; flex-direction: row-reverse; gap: 4px; }
.star-rating input { display: none; }
.star-rating label { font-size: 1.4rem; color: var(--admin-border-strong); transition: color 0.15s; }
.star-rating label:hover,
.star-rating input:checked ~ label { color: var(--admin-primary); }

/* ── Modal ───────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border-strong);
  border-top: 2px solid var(--admin-primary);
  border-radius: var(--admin-radius-lg);
  padding: 32px;
  max-width: 440px;
  width: 100%;
  box-shadow: var(--admin-shadow);
  animation: adminCardIn 0.35s var(--ease-out-expo) both;
}

.modal__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--admin-text);
}

.modal__text {
  font-size: 0.88rem;
  color: var(--admin-text-muted);
  margin-bottom: 28px;
  line-height: 1.65;
  white-space: pre-line;
}

.modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

/* ── Toast ───────────────────────────────────────────────── */
#admin-toast {
  background: var(--admin-surface);
  border: 1px solid var(--admin-border-strong);
  box-shadow: var(--admin-shadow);
  border-radius: var(--admin-radius-md);
  color: var(--admin-text);
}

#admin-toast .toast__icon { font-size: 0.9rem; }

/* ── Admin Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
  .admin-sidebar { width: 220px; }
  .admin-main    { margin-left: 220px; }
  .dashboard-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .admin-body .form__row { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; }
  .admin-topbar { padding: 14px 18px; }
  .admin-content { padding: 18px; }
  .admin-card { padding: 16px 18px; }
  .dashboard-kpi-grid { grid-template-columns: 1fr 1fr; }
  .avail-calendar { grid-template-columns: 1fr; }
}
