/* ============================================================
   STYLES.CSS — CSS UNIFICADO DO PROJETO
   Organização:
   1. Variáveis CSS (Design Tokens)
   2. Reset & Base
   3. Header (compartilhado)
   4. Navegação (compartilhado)
   5. Botões (compartilhado)
   6. Footer (compartilhado)
   7. Hero — index.html
   8. Serviços — indexservicos.html
   9. Agendamento — indexagendamento.html
   10. Contato — indexcontato.html
   11. Dashboard — indexdashboard.html
   12. Login — login.html
   13. Utilitários
============================================================ */


/* ============================================================
   1. VARIÁVEIS CSS (DESIGN TOKENS)
============================================================ */
:root {
  /* Cores principais */
  --color-primary: #eb6b9b;
  --color-primary-dark: #e03e7f;
  --color-primary-darker: #d13570;
  --color-primary-light: #f8e2ea;
  --color-primary-xlight: #fdf2f8;

  /* Cores de texto */
  --color-text-dark: #1a1a1a;
  --color-text-base: #39262b;
  --color-text-mid: #5c3a40;
  --color-text-muted: #999;
  --color-text-light: #666;

  /* Bordas e fundos */
  --color-border: #f0f0f0;
  --color-border-pink: #f2d8e0;
  --color-border-pink2: #fce4f0;
  --color-bg: #ffffff;
  --color-bg-light: #f5f5f5;
  --color-bg-pink: #fdf2f8;

  /* Gradiente principal */
  --gradient-primary: linear-gradient(135deg, #eb6b9b, #e03e7f);

  /* Bordas arredondadas */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  /* Sombras */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-pink: 0 6px 20px rgba(235, 107, 155, 0.3);

  /* Transição padrão */
  --transition: all 0.3s ease;

  /* Tipografia */
  --font-base: "Inter", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}


/* ============================================================
   2. RESET & BASE
============================================================ */
body {
  font-family: var(--font-base);
  color: var(--color-text-base);
  background: var(--color-bg);
  line-height: 1.6;
}


/* ============================================================
   3. HEADER (compartilhado)
============================================================ */
.header-custom {
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.04);
  border-top: none;
  border-left: 4px solid var(--color-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-custom .logo {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: inline-block;
  z-index: 1050;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border-pink);
}

.header-left {
  flex: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}

.bottom-bar {
  border-top: 1px solid var(--color-border-pink);
}

.bottom-bar nav {
  padding: 8px 0;
}

/* ── Dropdown do usuário logado (Olá, Nome) ── */
.header-actions .dropdown-toggle,
.header-actions .dropdown-toggle.btn,
.header-actions .btn.btn-secondary.dropdown-toggle {
  background: transparent !important;
  border: 1.5px solid var(--color-border-pink) !important;
  color: var(--color-text-mid) !important;
  border-radius: 100px !important;
  padding: 10px 18px !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  line-height: 1 !important;
  transition: var(--transition) !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.header-actions .dropdown-toggle:hover,
.header-actions .dropdown-toggle:focus,
.header-actions .btn.btn-secondary.dropdown-toggle:hover {
  border-color: var(--color-primary) !important;
  color: var(--color-primary) !important;
  background: var(--color-primary-xlight) !important;
  box-shadow: none !important;
}

/* Seta do dropdown */
.header-actions .dropdown-toggle::after {
  margin-left: 4px;
  opacity: 0.6;
}

/* Menu dropdown */
.header-actions .dropdown-menu {
  border-radius: 14px !important;
  border: 1px solid var(--color-border-pink) !important;
  box-shadow: 0 8px 28px rgba(0,0,0,0.09) !important;
  padding: 6px !important;
  min-width: 170px;
}

.header-actions .dropdown-item {
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-mid);
  padding: 9px 14px;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions .dropdown-item:hover {
  background: var(--color-primary-xlight);
  color: var(--color-primary);
}

.header-actions .dropdown-item.text-danger {
  color: #e05252 !important;
}

.header-actions .dropdown-item.text-danger:hover {
  background: #fff5f5;
  color: #c94040 !important;
}

.header-actions .dropdown-divider {
  border-color: var(--color-border-pink) !important;
  margin: 4px 0 !important;
}

/* ── Botão Dashboard no header ── */
.header-actions .btn-login {
  color: var(--color-text-mid);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 100px;
  transition: var(--transition);
  border: 1.5px solid var(--color-border-pink);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header-actions .btn-login:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-xlight);
}

/* Botão hamburguer */
.navbar-toggler {
  border: 1.5px solid var(--color-border-pink) !important;
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  background: transparent;
  transition: var(--transition);
}

.navbar-toggler:hover {
  border-color: var(--color-primary) !important;
  background: var(--color-primary-xlight);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(235, 107, 155, 0.15);
  outline: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28235%2C107%2C155%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
  width: 1.3em;
  height: 1.3em;
}


/* ============================================================
   4. NAVEGAÇÃO — links do menu (compartilhado)
============================================================ */
.link-nav {
  color: var(--color-text-mid);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  padding: 8px 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-nav:hover,
.link-nav.active {
  color: var(--color-primary);
}

.link-nav::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -8px;
  left: 50%;
  background: var(--color-primary);
  transition: width 0.3s ease;
  transform: translateX(-50%);
}

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


/* ============================================================
   5. BOTÕES (compartilhado)
============================================================ */

/* Botão primário — agendar / schedule */
.btn-agendar,
.btn-schedule {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  padding: 11px 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(235, 107, 155, 0.30);
}

.btn-agendar:hover,
.btn-schedule:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(235, 107, 155, 0.40);
  color: white;
}

/* Botão secundário — serviços */
.btn-services {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-border-pink);
  border-radius: var(--radius-full);
  padding: 16px 32px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
}

.btn-services:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

/* Botão primário Bootstrap override */
.btn.btn-primary,
.btn-primary {
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-full);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  color: white;
}

.btn.btn-primary:hover,
.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(235, 107, 155, 0.18);
}

/* Botão secundário Bootstrap override */
.btn.btn-secondary,
.btn-secondary {
  border: 2px solid #e0e0e0;
  border-radius: var(--radius-full);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-mid);
  background: white;
  transition: var(--transition);
}

.btn.btn-secondary:hover,
.btn-secondary:hover {
  background: var(--color-bg-light);
  border-color: #d0d0d0;
  color: var(--color-text-dark);
}

/* Botão gradiente rosa */
.btn-rosa {
  background: var(--gradient-primary);
  border: none;
  color: white;
  font-weight: 600;
  border-radius: var(--radius-full);
  padding: 12px 28px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-rosa:hover {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary-darker));
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(235, 107, 155, 0.3);
}


/* ============================================================
   6. FOOTER (compartilhado)
============================================================ */
footer,
.footer-custom {
  background: #faf2f5;
  border-top: 1px solid var(--color-border-pink);
  margin-top: 60px;
}

/* index.php: footer dark sem margin */
footer.footer {
  margin-top: 0 !important;
  background: var(--color-text-dark) !important;
  border-top: none !important;
}

/* Espaçamento do footer para páginas internas */
.footer-spacing {
  margin-top: 60px;
}

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

.footer-logo {
  font-size: 28px;
  margin-bottom: 16px;
}

.footer-text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 16px;
}

.footer-list {
  list-style: none;
  font-size: 14px;
  color: var(--color-text-muted);
  padding: 0;
}

.footer-list li {
  margin-bottom: 8px;
}

.footer-link {
  display: block;
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: var(--color-primary);
}

.footer-bottom {
  text-align: center;
  padding: 24px;
  border-top: 1px solid #e0e0e0;
  font-size: 13px;
  color: var(--color-text-muted);
}


/* ============================================================
   7. HERO & INDEX — index.php
============================================================ */

:root { --color-bg-warm: #fdf9f7; }

/* ── Header interno ── */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 40px;
  gap: 24px;
}

.logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-primary);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--color-primary); }
.nav-links a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-login {
  color: var(--color-text-mid);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 100px;
  transition: var(--transition);
  border: 1.5px solid var(--color-border-pink);
  background: transparent;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-login:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: var(--color-primary-xlight);
}

.dropdown-toggle-custom {
  background: var(--gradient-primary) !important;
  color: white !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border: 1.5px solid var(--color-border-pink);
  border-radius: 8px;
  background: transparent;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 40px 20px;
  border-top: 1px solid var(--color-border-pink);
  gap: 4px;
}

.mobile-nav a {
  padding: 10px 0;
  color: var(--color-text-mid);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--color-border-pink);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* ══════════════════════════════════════════
   HERO — imagem full-width com overlay leve
══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - 65px);
  overflow: hidden;
  display: flex;
  align-items: center;
  border-left: 4px solid var(--color-primary);
}

/* Imagem de fundo full-width */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  z-index: 0;
}

/* Overlay: branco da esquerda para transparente — bem leve */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.82) 0%,
    rgba(255, 255, 255, 0.55) 30%,
    rgba(255, 255, 255, 0.10) 60%,
    rgba(255, 255, 255, 0.00) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* Conteúdo sobreposto */
.hero-content-side {
  position: relative;
  z-index: 2;
  flex: 0 0 52%;
  max-width: 620px;
  padding: 60px 48px 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
}

/* Remove separador lateral */
.hero-content-side::after { display: none; }

/* Esconde o lado-imagem se ainda existir no HTML */
.hero-image-side { display: none; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 16px;
  animation: fade-up 0.6s ease both 0.1s;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-dark);
  margin-bottom: 16px;
  animation: fade-up 0.6s ease both 0.2s;
}

.hero-title em {
  font-style: italic;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-mid);
  max-width: 400px;
  margin-bottom: 28px;
  animation: fade-up 0.6s ease both 0.3s;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  animation: fade-up 0.6s ease both 0.4s;
}

.btn-hero-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 13px 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(235,107,155,0.4);
  color: white;
}

.btn-hero-secondary {
  color: var(--color-text-mid);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  padding: 13px 4px;
}

.btn-hero-secondary:hover { color: var(--color-primary); gap: 12px; }

.btn-hero-secondary .arrow-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
}

.btn-hero-secondary:hover .arrow-icon {
  border-color: var(--color-primary);
  background: var(--color-primary-xlight);
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  animation: fade-up 0.6s ease both 0.5s;
}

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

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: white;
  border: 1px solid var(--color-border-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.trust-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-dark);
  line-height: 1.2;
}

.trust-text span { font-size: 11px; color: var(--color-text-muted); }

/* Card flutuante de rating — sobre a foto */
.hero-float-card {
  position: absolute;
  bottom: 28px;
  left: 54%;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  z-index: 3;
  min-width: 180px;
  animation: float-card 3s ease-in-out infinite;
}

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

.float-card-stars { display: flex; gap: 3px; margin-bottom: 4px; }
.float-card-stars i { color: #f59e0b; font-size: 12px; }
.float-card-text { font-size: 12px; font-weight: 600; color: var(--color-text-dark); margin-bottom: 2px; }
.float-card-sub { font-size: 10px; color: var(--color-text-muted); }
.float-card-avatars { display: flex; margin-top: 8px; }

.float-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid white;
  margin-left: -7px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--color-primary);
}

.float-avatar:first-child { margin-left: 0; }

/* Chip canto superior direito — dentro de .hero-image-side */
.hero-chip {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(235,107,155,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(235,107,155,0.25);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  z-index: 3;
}

/* ── Footer dark — exclusivo da index ── */
footer.footer {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1604654894610-df63bc536371?w=1920') !important;
  background-size: cover;
  background-position: center 65%;
  color: rgba(255,255,255,0.6);
  padding: 48px 60px 28px;
  margin-top: 0 !important;
  border-top: none !important;
  overflow: hidden;
}

/* Overlay escuro sobre a imagem do footer */
footer.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 14, 0.82);
  z-index: 0;
  pointer-events: none;
}

/* Garante que o conteúdo fica acima do overlay */
footer.footer > * {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 36px;
}

footer.footer .footer-logo {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}

.footer-desc { font-size: 14px; line-height: 1.8; max-width: 280px; }

footer.footer .footer-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.footer-social { display: flex; gap: 12px; }

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(235,107,155,0.1);
}

/* ── Animações ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Utilitários ── */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.indicator .dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #00ff22;
  border-radius: 50%;
  margin-right: 8px;
}

@media (min-width: 1400px) {
  .row-cols-lg-4>.col { flex: 0 0 25%; max-width: 25%; }
}

/* ── Responsivo ── */
@media (max-width: 1024px) {
  .hero { max-height: none; flex-direction: row; }
  .hero-content-side { flex: 0 0 55%; padding: 40px 32px 40px 40px; }
  .hero-image-side { flex: 1; min-height: 400px; }
  footer.footer { padding: 40px 36px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .header-inner { padding: 12px 20px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  /* Mobile: empilha (imagem em cima, conteúdo embaixo) */
  .hero {
    flex-direction: column-reverse;
    height: auto;
    max-height: none;
    min-height: unset;
    border-left: none;
    border-top: 4px solid var(--color-primary);
  }
  .hero-content-side {
    flex: unset;
    width: 100%;
    max-width: 100%;
    padding: 32px 20px 36px 20px;
  }
  .hero-content-side::after { display: none; }
  .hero-image-side {
    flex: unset;
    width: 100%;
    min-height: 240px;
    max-height: 280px;
  }
  .hero-image-side img { max-height: 280px; }
  .hero-title { font-size: 32px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .hero-chip { top: 12px; right: 12px; }
  footer.footer { padding: 36px 20px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .mobile-nav { padding: 14px 20px 18px; }
}


/* ============================================================
   8. SERVIÇOS — indexservicos.html
   SEM escopo — funciona sem classe no body
============================================================ */
.card-unha {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.card-unha:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.card-unha img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card-unha:hover img {
  transform: scale(1.06);
}

.legenda {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  color: #fff;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.35) 60%, transparent 100%);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.45s ease;
  pointer-events: none;
}

.card-unha:hover .legenda {
  opacity: 1;
  transform: translateY(0);
}

.legenda .tag {
  background-color: #f1c27d;
  color: #000;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: bold;
  display: inline-block;
  margin-bottom: 8px;
}

.legenda h3 {
  font-size: 1.05rem;
  margin: 0;
  font-weight: 500;
  line-height: 1.35;
}

.portfolio-section h2 {
  letter-spacing: -0.5px;
}

.portfolio-section p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.text-rosa {
  color: var(--color-primary);
}

/* Mobile: legenda sempre visível */
@media (max-width: 768px) {
  .legenda {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.45));
    padding: 16px 12px 12px;
  }

  .card-unha:hover img {
    transform: scale(1.04);
  }

  .legenda h3 {
    font-size: 0.98rem;
  }
}


/* ============================================================
   9. AGENDAMENTO — indexagendamento.html
   SEM escopo — funciona sem classe no body
============================================================ */

/* Wrapper da página de agendamento — fundo alinhado ao novo design */
.agendamento-page {
  background: var(--srv-cream, #fdf8f5);
  min-height: calc(100vh - 80px);
  padding: 0 0 60px;
}

/* Steps */
.step-done {
  width: 40px;
  height: 40px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-current {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 3px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-future {
  width: 40px;
  height: 40px;
  background-color: #f1f1f1;
  color: #999;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-line {
  width: 50px;
  height: 2px;
  background-color: var(--color-primary);
}

/* Passo header / pill */
.passo-header {
  background-color: #fce9f0;
  color: var(--color-primary);
  padding: 10px 20px;
  font-weight: 600;
  font-size: 16px;
  width: 100%;
  text-align: center;
}

.passo-pill {
  background-color: #fce9f0;
  color: var(--color-primary);
  padding: 6px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  display: inline-block;
}

/* Caixa de seção */
.section-box {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.05);
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-title i {
  background: var(--color-primary);
  color: white;
  padding: 10px;
  border-radius: 50%;
  font-size: 18px;
}

/* Cards de serviço */
.card-servico {
  border: 2px solid #f1f1f1;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  cursor: pointer;
  transition: 0.2s;
}

.card-servico:hover {
  border-color: var(--color-primary);
  background: #fff8fb;
}

.card-servico span.preco {
  color: var(--color-primary);
  font-weight: 700;
}

.card-servico small {
  color: #666;
}

/* Selecionável */
.card-servico.selecionavel {
  cursor: pointer;
  transition: all 0.2s;
}

.card-servico.selecionavel.selecionado {
  border-color: var(--color-primary);
  background-color: #fff0f5;
  box-shadow: 0 0 0 4px rgba(235, 107, 156, 0.2);
}

.card-servico.selecionavel.selecionado strong,
.card-servico.selecionavel.selecionado .preco {
  color: var(--color-primary);
}

/* Horários */
.horario-btn {
  border: 2px solid #e8e8e8;
  padding: 12px 20px;
  border-radius: 10px;
  transition: 0.2s;
  cursor: pointer;
}

.horario-btn.selected {
  background-color: var(--color-primary);
  color: white;
}

.horario-btn:hover {
  background: #fff0f5;
  border-color: var(--color-primary);
  color: var(--color-primary);
}

/* Botão confirmar */
.btn-confirmar {
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 34px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  transition: var(--transition);
  cursor: pointer;
}

.btn-confirmar:hover {
  background: #d55a87;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(235, 107, 156, 0.3);
}

/* ── Trigger (substitui o input nativo) ── */
#agd-cal-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 2px solid #fce8f0;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  color: #6b7280;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s, box-shadow .2s;
  user-select: none;
  position: relative;
}

#agd-cal-trigger:hover,
#agd-cal-trigger.aberto {
  border-color: #EB6B9C;
  box-shadow: 0 0 0 3px rgba(235, 107, 156, .12);
}

#agd-cal-trigger.com-data {
  color: #1a1a2e;
  font-weight: 600;
}

#agd-cal-icon {
  color: #EB6B9C;
  font-size: 16px;
  flex-shrink: 0;
}

#agd-cal-chevron {
  margin-left: auto;
  font-size: 12px;
  color: #9ca3af;
  transition: transform .2s;
}

#agd-cal-trigger.aberto #agd-cal-chevron {
  transform: rotate(180deg);
}

/* ── Dropdown ── */
#agd-cal-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 1055;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #fce8f0;
  box-shadow: 0 16px 48px rgba(235, 107, 156, .18), 0 4px 16px rgba(0, 0, 0, .08);
  padding: 16px;
  width: 280px;
  animation: agdFadeIn .18s ease;
}

#agd-cal-dropdown.visivel {
  display: block;
}

@keyframes agdFadeIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Navegação de mês ── */
#agd-cal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

#agd-cal-nav span {
  font-weight: 700;
  font-size: .9rem;
  color: #1a1a2e;
  font-family: 'Inter', sans-serif;
}

#agd-cal-prev,
#agd-cal-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #fce8f0;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all .15s;
  padding: 0;
}

#agd-cal-prev:hover,
#agd-cal-next:hover {
  background: #fff0f7;
  border-color: #EB6B9C;
  color: #EB6B9C;
}

/* ── Grade ── */
#agd-cal-grade {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.agd-dia-sem {
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: #c084a4;
  letter-spacing: .4px;
  padding: 3px 0 5px;
  font-family: 'Inter', sans-serif;
}

.agd-dia {
  aspect-ratio: 1;
  border-radius: 8px;
  border: 1.5px solid transparent;
  background: #fff;
  color: #374151;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .12s;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

.agd-dia:hover:not(.agd-dia-passado):not(.agd-dia-sel) {
  background: #fff0f7;
  border-color: #fce8f0;
  color: #EB6B9C;
}

.agd-dia-hoje {
  border-color: #fbcfe8 !important;
  color: #c94e82 !important;
  font-weight: 700 !important;
  background: #fff5fb !important;
}

.agd-dia-passado {
  color: #d1d5db !important;
  cursor: not-allowed !important;
  background: transparent !important;
}

.agd-dia-sel {
  background: linear-gradient(135deg, #EB6B9C, #d45e8d) !important;
  color: #fff !important;
  border-color: #EB6B9C !important;
  font-weight: 700 !important;
  box-shadow: 0 3px 10px rgba(235, 107, 156, .4);
}

/* ── Rodapé do dropdown ── */
#agd-cal-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #fce8f0;
}

#agd-cal-footer button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: #EB6B9C;
  font-family: 'Inter', sans-serif;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background .15s;
}

#agd-cal-footer button:hover {
  background: #fff0f7;
}



/* ============================================================
   9b. AGENDAMENTO — Design refinado (alinhado ao padrão do site)
   Usa Cormorant Garamond + DM Sans, paleta cream/rosa, cards elegantes
============================================================ */

/* ── Fundo da página ── */
.agendamento-page {
  background: var(--srv-cream, #fdf8f5);
  min-height: calc(100vh - 80px);
  padding: 0 0 80px;
}

/* ── Hero da página de agendamento ── */
.agd-hero {
  position: relative;
  background: var(--srv-cream-dark, #f5ede6);
  overflow: hidden;
  padding: 56px 24px 48px;
  text-align: center;
  margin-bottom: 0;
}

.agd-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 80% at 10% 50%, rgba(235,107,155,.10) 0%, transparent 70%),
    radial-gradient(ellipse 45% 60% at 90% 30%, rgba(235,107,155,.08) 0%, transparent 70%);
  pointer-events: none;
}

.agd-hero-deco {
  position: absolute;
  border-radius: 50%;
  background: var(--srv-pink-light, #f9dde9);
  opacity: .45;
  pointer-events: none;
}

.agd-hero-deco-1 { width: 260px; height: 260px; top: -110px; left: -70px; }
.agd-hero-deco-2 { width: 180px; height: 180px; bottom: -70px; right: -40px; }

.agd-hero-inner {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
}

.agd-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--srv-pink, #eb6b9b);
  background: rgba(235,107,155,.10);
  border: 1px solid rgba(235,107,155,.25);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.agd-hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--srv-pink, #eb6b9b);
  flex-shrink: 0;
}

.agd-hero h1 {
  font-family: var(--srv-ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--srv-charcoal, #1e1a1c);
  margin-bottom: 14px;
}

.agd-hero h1 em {
  font-style: italic;
  color: var(--srv-pink, #eb6b9b);
}

.agd-hero p {
  font-size: .93rem;
  color: var(--srv-muted, #7a6b72);
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── Wrapper central ── */
.agd-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* ── Bloco (card de passo) ── */
.agd-bloco {
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  box-shadow: 0 4px 28px rgba(235,107,155,.08);
  border: 1px solid var(--srv-border-pink, #f0cad9);
  transition: box-shadow .25s;
}

.agd-bloco:hover {
  box-shadow: 0 8px 40px rgba(235,107,155,.13);
}

/* ── Cabeçalho do bloco ── */
.agd-bloco-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--srv-border-soft, #ede4e8);
}

.agd-bloco-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-family: var(--srv-ff-display, 'Cormorant Garamond', Georgia, serif);
  font-weight: 700;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(235,107,155,.35);
}

.agd-bloco-titulo {
  font-family: var(--srv-ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--srv-charcoal, #1e1a1c);
  margin: 0;
  line-height: 1.2;
}

.agd-bloco-sub {
  font-size: .82rem;
  color: var(--srv-muted, #7a6b72);
  margin: 5px 0 0;
  font-family: var(--srv-ff-body, 'DM Sans', sans-serif);
}

/* ── Grid de serviços ── */
.agd-servicos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 16px;
}

/* ── Card de serviço ── */
.agd-servicos-grid .card-servico {
  background: #fff;
  border: 1.5px solid var(--srv-border-pink, #f0cad9);
  border-radius: 16px;
  padding: 20px 22px;
  cursor: pointer;
  transition: transform .22s, box-shadow .22s, border-color .22s, background .2s;
  position: relative;
  overflow: hidden;
}

/* blob decorativo interno */
.agd-servicos-grid .card-servico::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(235,107,155,.06) 0%, transparent 70%);
  bottom: -30px;
  right: -30px;
  pointer-events: none;
}

.agd-servicos-grid .card-servico:hover {
  border-color: var(--srv-pink-mid, #f2b8cf);
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(235,107,155,.14);
}

.agd-servicos-grid .card-servico.selecionado {
  border-color: var(--srv-pink, #eb6b9b);
  background: linear-gradient(135deg, #fff5f9 0%, #ffedf4 100%);
  box-shadow: 0 0 0 3px rgba(235,107,155,.18), 0 8px 28px rgba(235,107,155,.15);
}

/* ── Check icon ── */
.card-servico-check {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--srv-border-pink, #f0cad9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  transition: background .2s, transform .2s;
}

.card-servico.selecionado .card-servico-check {
  background: var(--srv-pink, #eb6b9b);
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(235,107,155,.35);
}

/* ── Topo do card: nome + preço ── */
.card-servico-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
  padding-right: 30px;
}

.card-servico-nome {
  font-family: var(--srv-ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--srv-charcoal, #1e1a1c);
  line-height: 1.25;
}

.card-servico-preco {
  font-family: var(--srv-ff-display, 'Cormorant Garamond', Georgia, serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--srv-pink, #eb6b9b);
  white-space: nowrap;
}

/* ── Duração ── */
.card-servico-duracao {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--srv-muted, #7a6b72);
  background: var(--srv-cream-dark, #f5ede6);
  border-radius: 50px;
  padding: 4px 10px;
  margin-bottom: 10px;
}

.card-servico-duracao i {
  font-size: .78rem;
  color: var(--srv-pink, #eb6b9b);
}

/* ── Descrição ── */
.card-servico-desc {
  font-size: .8rem;
  color: var(--srv-muted, #7a6b72);
  line-height: 1.6;
  margin: 0;
}

/* ── Grid data + horário ── */
.agd-datahora-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.agd-col-data,
.agd-col-horario {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.agd-label {
  font-family: var(--srv-ff-body, 'DM Sans', sans-serif);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--srv-pink, #eb6b9b);
  margin-bottom: 2px;
}

/* ── Botões de horário ── */
.agd-horarios-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 44px;
}

.agd-horarios-wrap .horario-btn {
  border: 1.5px solid var(--srv-border-pink, #f0cad9);
  background: #fff;
  color: var(--srv-charcoal, #1e1a1c);
  font-size: .82rem;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 50px;
  transition: all .18s;
  cursor: pointer;
  font-family: var(--srv-ff-body, 'DM Sans', sans-serif);
}

.agd-horarios-wrap .horario-btn:hover {
  border-color: var(--srv-pink, #eb6b9b);
  color: var(--srv-pink, #eb6b9b);
  background: rgba(235,107,155,.05);
}

.agd-horarios-wrap .horario-btn.selected {
  background: var(--gradient-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(235,107,155,.30);
}

/* ── Botão confirmar ── */
.agd-confirmar-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 4px;
}

.btn-confirmar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 42px;
  font-family: var(--srv-ff-body, 'DM Sans', sans-serif);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  line-height: 1;
  transition: transform .2s, box-shadow .2s, filter .2s;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(235,107,155,.35);
}

.btn-confirmar:hover {
  filter: brightness(1.06);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(235,107,155,.42);
}

/* ── Responsivo ── */
@media (max-width: 768px) {
  .agd-hero { padding: 44px 20px 36px; }
  .agd-bloco { padding: 26px 22px; }
  .agd-wrapper { padding: 32px 16px 0; gap: 20px; }
  .agd-bloco-titulo { font-size: 1.25rem; }

  .agd-servicos-grid {
    grid-template-columns: 1fr 1fr;
  }

  .agd-datahora-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .agd-servicos-grid {
    grid-template-columns: 1fr;
  }

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


/* ============================================================
   10. CONTATO — indexcontato.html
   SEM escopo — funciona sem classe no body
============================================================ */
.info-card {
  background: var(--color-bg-pink);
  padding: 1.5rem;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(236, 140, 192, 0.15);
  border: 1px solid var(--color-border-pink2);
  transition: var(--transition);
  text-align: center;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(236, 140, 192, 0.25);
}

.info-card .icon {
  width: 52px;
  height: 52px;
  background: #ffb6d9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
  box-shadow: 0 3px 10px rgba(255, 182, 217, 0.4);
}

.info-card .icon i {
  font-size: 1.5rem;
  color: var(--color-primary-dark);
}

.info-card h5 {
  color: #d81b60;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.info-card p {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* No desktop: alinhar à esquerda */
@media (min-width: 992px) {
  .info-card {
    text-align: left;
  }

  .info-card .icon {
    margin: 0 0 14px 0;
  }
}

/* Botão WhatsApp */
.btn-contato-wa {
  background: #25D366;
  color: white;
  border: none;
  border-radius: var(--radius-full);
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-contato-wa:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
  color: white;
}

/* Botão Instagram */
.btn-contato-ig {
  background: white;
  color: var(--color-primary-dark);
  border: 2.5px solid var(--color-primary);
  border-radius: var(--radius-full);
  padding: 14px 32px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(235, 107, 155, 0.15);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
}

.btn-contato-ig:hover {
  background: var(--color-bg-pink);
  border-color: var(--color-primary-dark);
  color: #d81b60;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(235, 107, 155, 0.25);
}


/* ============================================================
   11. DASHBOARD — indexdashboard.html
   SEM escopo — classes aplicadas diretamente no HTML.
============================================================ */

/* Badge admin */
.badge-admin,
.badge-admin {
  background: var(--color-primary-light);
  color: var(--color-primary);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  display: inline-block;
}

.title-welcome,
.title-welcome {
  font-size: 48px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.subtitle,
.subtitle {
  font-size: 16px;
  color: var(--color-text-muted);
  margin: 0;
}

/* Botão primário customizado do dashboard */
.btn.btn-primary-custom,
.btn.btn-primary-custom {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  padding: 10px 26px;
  height: 42px;
  min-height: 42px;
  line-height: 1;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: none;
  transition: 0.2s;
}

.btn.btn-primary-custom:hover,
.btn.btn-primary-custom:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(235, 107, 155, 0.18);
}

/* ===== CARDS DE ESTATÍSTICAS ===== */
.stat-card,
.stat-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.stat-card:hover,
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-label,
.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.stat-value,
.stat-value {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0;
  line-height: 1;
}

.icon-stat-gold,
.icon-stat-pink,
.icon-stat-gray,
.icon-stat-gold,
.icon-stat-pink,
.icon-stat-gray {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.icon-stat-gold,
.icon-stat-gold {
  background: #fff3cd;
  color: #ff9800;
}

.icon-stat-pink,
.icon-stat-pink {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.icon-stat-gray,
.icon-stat-gray {
  background: #f5f5f5;
  color: #999;
}

/* ===== CARDS CUSTOMIZADOS ===== */
.card-custom,
.card-custom {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card-header-custom,
.card-header-custom {
  background: white;
  border-bottom: 1px solid var(--color-border);
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-title,
.card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 4px;
}

.card-subtitle,
.card-subtitle {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

.link-view-all,
.link-view-all {
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.link-view-all:hover,
.link-view-all:hover {
  color: var(--color-primary-dark);
}

.card-body-custom,
.card-body-custom-sidebar,
.card-body-custom,
.card-body-custom-sidebar {
  padding: 24px;
}

/* ===== CARDS DE AGENDAMENTO ===== */
.appointment-card,
.appointment-card {
  background: var(--color-primary-light);
  border-radius: 20px;
  padding: 18px 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: var(--transition);
}

.appointment-card:hover,
.appointment-card:hover {
  box-shadow: 0 4px 16px rgba(235, 107, 155, 0.2);
  transform: translateY(-2px);
}

.avatar,
.avatar {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: white;
  flex-shrink: 0;
}

.avatar-pink,
.avatar-pink {
  background: var(--color-primary);
}

.avatar-purple,
.avatar-purple {
  background: #9b6b9c;
}

.appointment-name,
.appointment-name {
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 15px;
}

.appointment-service,
.appointment-service {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.appointment-time,
.appointment-time {
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 15px;
}

.appointment-price,
.appointment-price {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 14px;
  margin-top: 4px;
}

.badge-status,
.badge-status {
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  white-space: nowrap;
}

.badge-status.confirmed,
.badge-status.confirmed {
  background: #d4edda;
  color: #155724;
}

.badge-status.pending,
.badge-status.pending {
  background: #fff3cd;
  color: #856404;
}

/* ===== SIDEBAR ===== */
.sidebar-title,
.sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 8px;
}

.action-button,
.action-button {
  display: block;
  padding: 16px;
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  color: var(--color-text-mid);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  text-align: left;
}

.action-button i,
.action-button i {
  margin-right: 12px;
  color: var(--color-primary);
}

.action-button:hover,
.action-button:hover {
  background: var(--color-primary);
  color: white;
}

.action-button:hover i,
.action-button:hover i {
  color: white;
}

.month-value,
.month-value {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1;
}

.month-subtitle,
.month-subtitle {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.btn-view-report,
.btn-view-report {
  display: block;
  width: 100%;
  padding: 12px;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  transition: var(--transition);
}

.btn-view-report:hover,
.btn-view-report:hover {
  background: var(--color-primary);
  color: white;
}

/* ===== MODAL ===== */
.modal-content,
.modal-content {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modal-header,
.modal-header {
  padding: 28px 32px 16px;
  border-bottom: 1px solid var(--color-border);
}

.modal-title,
.modal-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-text-dark);
}

.modal-body,
.modal-body {
  padding: 24px 32px;
}

.modal-footer,
.modal-footer {
  padding: 16px 32px 28px;
  border-top: none;
}

/* Forms */
.form-label,
.form-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-mid);
  margin-bottom: 8px;
}

.form-control,
.form-select,
.form-control,
.form-select {
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 15px;
  color: var(--color-text-dark);
  transition: var(--transition);
}

.form-control:focus,
.form-select:focus,
.form-control:focus,
.form-select:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(235, 107, 155, 0.1);
  outline: none;
}

.form-control::placeholder,
.form-control::placeholder {
  color: #bbb;
}

textarea.form-control,
textarea.form-control {
  resize: vertical;
}

.input-group-text,
.input-group-text {
  background: var(--color-primary-light);
  border: 1.5px solid #e8e8e8;
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  color: var(--color-primary);
  font-weight: 600;
  padding: 12px 16px;
}

.input-group>.form-control,
.input-group>.form-select,
.input-group>.form-control,
.input-group>.form-select {
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.input-group .form-select,
.input-group .form-select {
  border-left: 1.5px solid #e8e8e8;
}

/* ===== CARDS DE RELATÓRIO ===== */
.card-estatistica,
.card-estatistica {
  border: 1px solid #e8e8e8;
  border-radius: var(--radius-lg);
  background: white;
  padding: 1.25rem;
  transition: all 0.2s ease;
  height: 100%;
}

.card-estatistica:hover,
.card-estatistica:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(235, 107, 155, 0.1);
}

.stat-label-rel,
.stat-label-rel {
  font-size: 11px;
  text-transform: uppercase;
  color: #999;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin: 0;
}

.icone-card,
.icone-card {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.icone-rosa,
.icone-rosa {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
}

.icone-cinza,
.icone-cinza {
  background-color: #f5f5f5;
  color: #999;
}

.valor-grande,
.valor-grande {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.valor-cinza,
.valor-cinza {
  color: var(--color-text-dark);
}

/* Cores utilitárias */
.bg-rosa,
.bg-rosa {
  background-color: var(--color-primary);
}

.bg-rosa-light,
.bg-rosa-light {
  background-color: var(--color-primary-light);
}

/* ===== GRÁFICO DE BARRAS ===== */
.grafico-barras,
.grafico-barras {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 200px;
  padding-top: 20px;
  gap: 12px;
}

.barra-container,
.barra-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
}

.barra,
.barra {
  width: 100%;
  max-width: 50px;
  background: linear-gradient(180deg, var(--color-primary) 0%, #f0a0bf 100%);
  border-radius: 8px 8px 0 0;
  margin-top: auto;
  transition: var(--transition);
  min-height: 20px;
}

.barra-destaque,
.barra-destaque {
  background: linear-gradient(180deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

.barra-label,
.barra-label {
  font-size: 13px;
  color: #666;
  margin-top: 12px;
  font-weight: 500;
}

.barra-valor,
.barra-valor {
  font-size: 12px;
  color: #999;
  margin-top: 4px;
}

/* ===== LISTA DE SERVIÇOS ===== */
.servicos-lista,
.servicos-lista {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.servico-item,
.servico-item {
  padding: 0;
}

.servico-nome,
.servico-nome {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-dark);
}

.servico-percent,
.servico-percent {
  font-size: 14px;
  font-weight: 600;
}


/* ===== MODAL "MEUS SERVIÇOS" (#modalServicos) ===== */
#modalServicos .list-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

#modalServicos .list-group-item.servico-item {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}

.progress,
.progress {
  background-color: #f5e3eb;
  border-radius: 4px;
  height: 8px;
}

.progress-bar,
.progress-bar.bg-rosa,
.progress-bar,
.progress-bar.bg-rosa {
  background: linear-gradient(90deg, var(--color-primary), #f0a0bf);
  border-radius: 4px;
}

/* Badges de variação */
.badge-variacao-positiva,
.badge-variacao-positiva {
  background-color: #d4edda;
  color: #155724;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.badge-variacao-negativa,
.badge-variacao-negativa {
  background-color: #f8d7da;
  color: #721c24;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.badge-variacao-neutra,
.badge-variacao-neutra {
  background-color: #e9ecef;
  color: #6c757d;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

/* Tabela */
.table,
.table {
  margin-bottom: 0;
}

.table th,
.table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.table td,
.table td {
  font-size: 14px;
}

.table tbody tr:hover,
.table tbody tr:hover {
  background-color: #fdf5f8;
}

.form-select,
.form-select {
  border: 1.5px solid #e8e8e8;
  border-radius: 10px;
  font-size: 14px;
  padding: 8px 32px 8px 12px;
}


/* ============================================================
   CALENDÁRIO — Modal Agenda Completa (agd2)
   Espelha os estilos de #mod-cal-* / #agd-cal-*
============================================================ */

#agd2-cal-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 2px solid #fce8f0;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  color: #6b7280;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s, box-shadow .2s;
  user-select: none;
}

#agd2-cal-trigger:hover,
#agd2-cal-trigger.aberto {
  border-color: #EB6B9C;
  box-shadow: 0 0 0 3px rgba(235, 107, 156, .12);
}

#agd2-cal-trigger.com-data {
  color: #1a1a2e;
  font-weight: 600;
}

#agd2-cal-trigger .bi-calendar3 {
  color: #EB6B9C;
  font-size: 16px;
  flex-shrink: 0;
}

#agd2-cal-chevron {
  margin-left: auto;
  font-size: 12px;
  color: #9ca3af;
  transition: transform .2s;
}

#agd2-cal-trigger.aberto #agd2-cal-chevron {
  transform: rotate(180deg);
}

#agd2-cal-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 1060;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #fce8f0;
  box-shadow: 0 16px 48px rgba(235, 107, 156, .18), 0 4px 16px rgba(0, 0, 0, .08);
  padding: 16px;
  width: 280px;
  animation: agdFadeIn .18s ease;
}

#agd2-cal-dropdown.visivel {
  display: block;
}

#agd2-cal-dropdown button[onclick*="agd2NavMes"] {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #fce8f0;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all .15s;
  padding: 0;
}

#agd2-cal-dropdown button[onclick*="agd2NavMes"]:hover {
  background: #fff0f7;
  border-color: #EB6B9C;
  color: #EB6B9C;
}

#agd2-cal-grade {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

#agd2-cal-dropdown button[onclick*="agd2LimparData"],
#agd2-cal-dropdown button[onclick*="agd2IrHoje"] {
  background: none;
  border: none;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  cursor: pointer;
  padding: 2px 6px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  transition: color .15s, background .15s;
}

#agd2-cal-dropdown button[onclick*="agd2LimparData"]:hover,
#agd2-cal-dropdown button[onclick*="agd2IrHoje"]:hover {
  color: #EB6B9C;
  background: #fff0f7;
}

/* Estilos compartilhados: trigger do calendário (#mod-cal e #agd2-cal) */

#mod-cal-trigger:hover,
#agd2-cal-trigger:hover,
#mod-cal-trigger.aberto,
#agd2-cal-trigger.aberto {
  border-color: #EB6B9C;
  box-shadow: 0 0 0 3px rgba(235, 107, 156, .12);
}

#mod-cal-trigger.com-data,
#agd2-cal-trigger.com-data {
  color: #1a1a2e;
  border-color: #EB6B9C;
}

/* Abas Agenda Completa */
.agd2-aba {
  background: #f5f5f5;
  border: 1.5px solid #e8d5e0;
  color: #888;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  transition: all .18s;
}

.agd2-aba:hover {
  border-color: #EB6B9C;
  color: #EB6B9C;
  background: #fff0f7;
}

.agd2-aba.ativo {
  background: linear-gradient(135deg, #EB6B9C, #d45e8d);
  border-color: #EB6B9C;
  color: #fff;
}

/* ============================================================
   12. LOGIN — login.html
   SEM escopo — usa body.page-login apenas para background
============================================================ */
.page-login body,
body.page-login {
  background: linear-gradient(135deg, #fdf2f8 0%, #fceef5 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
}

.card-form {
  background: #ffffff;
  padding: 45px 40px;
  border-radius: var(--radius-xl);
  border: 3px solid #f8b7d0;
  box-shadow: 0 20px 40px rgba(155, 249, 155, 0.25);
  max-width: 460px;
  width: 100%;
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#titulo {
  color: #ba2d65;
  font-weight: 800;
  font-size: 2.6rem;
  margin-bottom: 2rem;
}

.form-label {
  color: #ba2d65;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-control {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid #e9b8d0;
  font-size: 1rem;
}

.form-control:focus {
  border-color: #f99bb9;
  box-shadow: none !important;
}

.input-group-text {
  background: transparent;
  border: 1.5px solid #e9b8d0;
  border-right: none;
  border-radius: var(--radius-md) 0 0 var(--radius-md);
  color: #ba2d65;
}

.input-group .form-control {
  border-left: none;
  border-radius: 0;
}

.btn-pass {
  background-color: #f99bb9;
  border: 1.5px solid #e9b8d0;
  border-left: none;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: white;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-pass:hover {
  background-color: #f970a8;
  color: white;
}

.input-group:focus-within {
  box-shadow: 0 0 0 0.25rem rgba(249, 155, 185, 0.4);
  border-radius: var(--radius-md);
}

.input-group:focus-within .form-control,
.input-group:focus-within .input-group-text,
.input-group:focus-within .btn-pass {
  border-color: #f99bb9;
}

.btn-custom {
  background-color: #f99bb9;
  border-color: #f99bb9;
  color: #fff;
  font-weight: 600;
  padding: 12px;
  border-radius: var(--radius-md);
  transition: var(--transition);
  width: 100%;
}

.btn-custom:hover {
  background-color: #f970a8;
  border-color: #f970a8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(249, 155, 185, 0.4);
}

.toggle-link {
  color: #f99bb9;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.02rem;
}

.toggle-link:hover {
  color: #f970a8;
  text-decoration: underline;
}

.senha-error {
  color: #dc3545;
  font-size: 0.9em;
  margin-top: 6px;
  display: none;
}

.form-container {
  position: relative;
  min-height: 500px;
}

.form-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
}

.form-wrapper.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

@media (max-width: 576px) {
  .card-form {
    margin: 15px;
    padding: 35px 25px;
  }

  #titulo {
    font-size: 2.3rem;
  }
}


/* ===== MODAL CADASTRAR HORÁRIOS ===== */
.grade-calendario {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.dia-semana-header {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #aaa;
  padding: 4px 0 8px;
}

.dia-cal {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.15s ease;
  position: relative;
  user-select: none;
}

.dia-cal:hover:not(.dia-passado):not(.dia-vazio) {
  background: #fff0f5;
  border-color: #f9c0d5;
  color: #EB6B9C;
}

.dia-cal.dia-vazio {
  cursor: default;
}

.dia-cal.dia-passado {
  color: #ccc;
  cursor: not-allowed;
  background: #fafafa;
}

.dia-cal.dia-hoje {
  font-weight: 800;
  color: #EB6B9C;
  border-color: #f9c0d5;
}

.dia-cal.dia-selecionado {
  background: #EB6B9C !important;
  color: #fff !important;
  border-color: #EB6B9C !important;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(235, 107, 156, 0.35);
}

.dia-cal.dia-com-horarios:not(.dia-selecionado):not(.dia-passado) {
  background: #d1fae5;
  border-color: #10b981;
  color: #065f46;
}

.dia-cal.dia-com-horarios::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #10b981;
}

.dia-cal.dia-selecionado::after {
  background: #fff;
}

.dia-cal.dia-passado::after {
  display: none;
}

.legenda-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 4px;
}

.tag-horario {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff0f5;
  color: #EB6B9C;
  border: 1.5px solid #f9c0d5;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 600;
}

.tag-horario .btn-remover-horario {
  background: none;
  border: none;
  padding: 0;
  color: #EB6B9C;
  font-size: 0.7rem;
  cursor: pointer;
  opacity: 0.7;
}

.tag-horario .btn-remover-horario:hover {
  opacity: 1;
}

.tag-resumo-dia {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.15s;
}

.tag-resumo-dia:hover {
  background: #fff0f5;
  border-color: #f9c0d5;
  color: #EB6B9C;
}

/* ============================================================
   13. UTILITÁRIOS GLOBAIS
============================================================ */

/* Cores de fundo e texto */
.bg-rosa {
  background-color: var(--color-primary);
}

.bg-rosa-light {
  background-color: var(--color-primary-light);
}

.text-rosa {
  color: var(--color-primary);
}


/* ============================================================
   14. DASHBOARD EXTRA — classes específicas do indexdashboard
============================================================ */

/* Ações nos cards de agendamento (confirmar/cancelar) */
.appointment-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.btn-action {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.btn-action.confirm {
  background: #d4edda;
  color: #155724;
}

.btn-action.confirm:hover {
  background: #28a745;
  color: white;
  transform: scale(1.1);
}

.btn-action.cancel,
.btn-cancelar-agenda {
  background: #f8d7da;
  color: #721c24;
}

.btn-action.cancel:hover,
.btn-cancelar-agenda:hover {
  background: #dc3545;
  color: white;
  transform: scale(1.1);
}

/* Card estatística variante rosa (destaque) */
.card-estatistica-rosa {
  border-color: var(--color-primary) !important;
  background: linear-gradient(135deg, #fff0f5, #fdf2f8) !important;
}

.card-estatistica-rosa .stat-value,
.card-estatistica-rosa .valor-grande {
  color: var(--color-primary);
}

/* Cursor pointer utilitário */
.cursor-pointer {
  cursor: pointer;
}

/* Select compacto */
.form-select-g {
  border: 1.5px solid #e8e8e8;
  border-radius: var(--radius-md);
  font-size: 14px;
  padding: 6px 28px 6px 10px;
  min-width: 120px;
  transition: var(--transition);
}

.form-select-g:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(235, 107, 155, 0.1);
  outline: none;
}

/* Título de modal */
.titulo {
  font-family: var(--font-display);
  color: var(--color-text-dark);
  font-size: 1.3rem;
}

/* Item de serviço clicável na lista */
.servico-item {
  transition: var(--transition);
  border-radius: var(--radius-md) !important;
  border-color: var(--color-border) !important;
}

.servico-item:hover {
  background: var(--color-primary-light) !important;
  border-color: var(--color-primary) !important;
}

.servico-item.active,
.servico-item:focus {
  background: var(--color-primary-light) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-text-dark) !important;
}

/* ===== MODAL CADASTRAR HORÁRIOS ===== */
.grade-calendario {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.dia-semana-header {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: #aaa;
  padding: 4px 0 8px;
}

.dia-cal {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.15s ease;
  position: relative;
  user-select: none;
}

.dia-cal:hover:not(.dia-passado):not(.dia-vazio) {
  background: #fff0f5;
  border-color: #f9c0d5;
  color: #EB6B9C;
}

.dia-cal.dia-vazio {
  cursor: default;
}

.dia-cal.dia-passado {
  color: #ccc;
  cursor: not-allowed;
  background: #fafafa;
}

.dia-cal.dia-hoje {
  font-weight: 800;
  color: #EB6B9C;
  border-color: #f9c0d5;
}

.dia-cal.dia-selecionado {
  background: #EB6B9C !important;
  color: #fff !important;
  border-color: #EB6B9C !important;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(235, 107, 156, 0.35);
}

.dia-cal.dia-com-horarios:not(.dia-selecionado):not(.dia-passado) {
  background: #d1fae5;
  border-color: #10b981;
  color: #065f46;
}

.dia-cal.dia-com-horarios::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #10b981;
}

.dia-cal.dia-selecionado::after {
  background: #fff;
}

.dia-cal.dia-passado::after {
  display: none;
}

.legenda-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 4px;
}

.tag-horario {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff0f5;
  color: #EB6B9C;
  border: 1.5px solid #f9c0d5;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 600;
}

.tag-horario .btn-remover-horario {
  background: none;
  border: none;
  padding: 0;
  color: #EB6B9C;
  font-size: 0.7rem;
  cursor: pointer;
  opacity: 0.7;
}

.tag-horario .btn-remover-horario:hover {
  opacity: 1;
}

/* Calendário do modal de novo agendamento */
#mod-cal-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 2px solid #fce8f0;
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  color: #6b7280;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s, box-shadow .2s;
  user-select: none;
}

#mod-cal-trigger:hover,
#mod-cal-trigger.aberto {
  border-color: #EB6B9C;
  box-shadow: 0 0 0 3px rgba(235, 107, 156, .12);
}

#mod-cal-trigger.com-data {
  color: #1a1a2e;
  font-weight: 600;
}

#mod-cal-trigger #agd-cal-icon {
  color: #EB6B9C;
  font-size: 16px;
  flex-shrink: 0;
}

#mod-cal-trigger #mod-cal-chevron {
  margin-left: auto;
  font-size: 12px;
  color: #9ca3af;
  transition: transform .2s;
}

#mod-cal-trigger.aberto #mod-cal-chevron {
  transform: rotate(180deg);
}

#mod-cal-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 1060;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #fce8f0;
  box-shadow: 0 16px 48px rgba(235, 107, 156, .18), 0 4px 16px rgba(0, 0, 0, .08);
  padding: 16px;
  width: 280px;
  animation: agdFadeIn .18s ease;
}

#mod-cal-dropdown.visivel {
  display: block;
}

#mod-cal-prev,
#mod-cal-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid #fce8f0;
  background: #fff;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all .15s;
  padding: 0;
}

#mod-cal-prev:hover,
#mod-cal-next:hover {
  background: #fff0f7;
  border-color: #EB6B9C;
  color: #EB6B9C;
}

#mod-cal-grade {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.tag-resumo-dia {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.15s;
}

.tag-resumo-dia:hover {
  background: #fff0f5;
  border-color: #f9c0d5;
  color: #EB6B9C;
}

/* ============================================================
   AGENDA COMPLETA INLINE — Dashboard
============================================================ */

/* Card container */
.agenda-completa-card {
  padding: 0;
  overflow: hidden;
}

/* Header */
.agenda-header {
  padding: 20px 24px 0;
  background: #fff;
}

.agenda-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

/* Busca inline */
.agenda-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8f4f6;
  border: 1.5px solid #f2d8e0;
  border-radius: 999px;
  padding: 6px 14px;
  transition: border-color 0.2s;
}
.agenda-search-wrap:focus-within {
  border-color: var(--color-primary);
  background: #fff;
}
.agenda-search-wrap i {
  color: #bbb;
  font-size: 0.85rem;
}
.agenda-search-wrap input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.82rem;
  color: #444;
  width: 160px;
}
.agenda-search-wrap input::placeholder { color: #bbb; }

/* Botões de navegação da semana */
.agenda-nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid #f2d8e0;
  background: #fff;
  color: #888;
  font-size: 0.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.agenda-nav-btn:hover { border-color: var(--color-primary); color: var(--color-primary); background: #fff0f5; }
.agenda-hoje-btn { width: auto; padding: 0 12px; border-radius: 999px; font-size: 0.75rem; font-weight: 600; }

/* Faixa de dias da semana */
.agenda-semana-strip {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.agenda-semana-strip::-webkit-scrollbar { display: none; }

.agenda-dia-btn {
  flex: 1;
  min-width: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  border: 1.5px solid transparent;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: all 0.18s;
  position: relative;
}
.agenda-dia-btn:hover { background: #fff0f5; border-color: #f9c0d5; }
.agenda-dia-btn.hoje .dia-num-label {
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-weight: 700;
}
.agenda-dia-btn.selecionado {
  background: var(--gradient-primary);
  border-color: transparent;
}
.agenda-dia-btn.selecionado .dia-semana-label,
.agenda-dia-btn.selecionado .dia-num-label { color: #fff !important; background: transparent !important; }

.dia-semana-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #aaa;
}
.dia-num-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: #333;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Barra de filtros rápidos */
.agenda-filtros-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  border-top: 1px solid #f5eff2;
  border-bottom: 1px solid #f5eff2;
  background: #fdfafc;
  flex-wrap: wrap;
}

.agenda-filtro-btn {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1.5px solid #f2d8e0;
  background: #fff;
  color: #888;
  cursor: pointer;
  transition: all 0.18s;
  display: flex;
  align-items: center;
}
.agenda-filtro-btn:hover { border-color: var(--color-primary); color: var(--color-primary); }
.agenda-filtro-btn.ativo { background: var(--gradient-primary); border-color: transparent; color: #fff; }

.agenda-count-badge {
  font-size: 0.75rem;
  color: #bbb;
  font-weight: 500;
}

/* Lista de agendamentos */
.agenda-lista {
  max-height: 480px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #f2d8e0 transparent;
}
.agenda-lista::-webkit-scrollbar { width: 4px; }
.agenda-lista::-webkit-scrollbar-thumb { background: #f2d8e0; border-radius: 999px; }

/* Item de agendamento */
.agenda-item {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 14px 24px;
  border-bottom: 1px solid #f8f4f6;
  transition: background 0.15s;
}
.agenda-item:last-child { border-bottom: none; }
.agenda-item:hover { background: #fdfafc; }

/* Hora lateral */
.agenda-item-hora {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  min-width: 52px;
  padding-right: 14px;
}
.hora-principal { font-size: 0.9rem; font-weight: 700; color: #333; }
.hora-duracao { font-size: 0.68rem; color: #bbb; margin-top: 2px; }

/* Linha vertical colorida */
.agenda-item-linha {
  width: 3px;
  border-radius: 999px;
  background: var(--gradient-primary);
  margin-right: 16px;
  flex-shrink: 0;
  min-height: 48px;
}
.agenda-item[data-status="confirmado"] .agenda-item-linha { background: linear-gradient(180deg,#28a745,#20c997); }

/* Corpo do item */
.agenda-item-body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Avatar */
.agenda-item-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-primary-light);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Info */
.agenda-item-info {
  flex: 1;
  min-width: 100px;
  display: flex;
  flex-direction: column;
}
.agenda-item-nome { font-size: 0.87rem; font-weight: 600; color: #333; }
.agenda-item-servico { font-size: 0.75rem; color: #999; margin-top: 1px; }

/* Preço */
.agenda-item-preco {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-primary);
  white-space: nowrap;
}

/* Badge status */
.agenda-item-badge {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.agenda-item-badge.pendente   { background: #fff8e1; color: #e65100; }
.agenda-item-badge.confirmado { background: #e8f5e9; color: #2e7d32; }

/* Ações */
.agenda-item-acoes {
  display: flex;
  gap: 6px;
}
.btn-agenda-acao {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid;
  background: transparent;
  font-size: 0.78rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.18s;
  padding: 0;
}
.btn-agenda-acao.confirmar { border-color: #c3e6cb; color: #28a745; }
.btn-agenda-acao.confirmar:hover { background: #28a745; color: #fff; border-color: #28a745; }
.btn-agenda-acao.excluir { border-color: #f5c6cb; color: #dc3545; }
.btn-agenda-acao.excluir:hover { background: #dc3545; color: #fff; border-color: #dc3545; }

/* Estado vazio */
.agenda-vazia {
  text-align: center;
  padding: 40px 24px;
  color: #bbb;
}
.agenda-vazia i { font-size: 2.2rem; display: block; margin-bottom: 10px; color: #f2d8e0; }
.agenda-vazia p { margin: 0; font-size: 0.9rem; color: #999; }
.agenda-vazia small { font-size: 0.75rem; color: #ccc; }

/* Loading */
.agenda-loading {
  text-align: center;
  padding: 40px 24px;
  color: #aaa;
  font-size: 0.87rem;
}

/* Rodapé */
.agenda-footer {
  padding: 12px 24px;
  border-top: 1px solid #f5eff2;
  background: #fdfafc;
}
.agenda-ver-todos {
  font-size: 0.8rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s;
}
.agenda-ver-todos:hover { opacity: 0.75; color: var(--color-primary); }

/* Responsivo */
@media (max-width: 576px) {
  .agenda-header-top { flex-direction: column; align-items: flex-start; }
  .agenda-search-wrap input { width: 120px; }
  .agenda-item { padding: 12px 16px; }
  .agenda-item-preco,
  .agenda-item-badge { display: none; }
}


/* ============================================================
   MODAL AGENDA COMPLETA — itens e badges de status
============================================================ */

/* Item da lista */
.agd2-item {
  padding: 14px 16px;
  margin-bottom: 8px;
  border-radius: 10px;
  border: 1px solid #f0ecee;
  background: #fff;
  transition: background 0.15s, box-shadow 0.15s;
}
.agd2-item:hover {
  background: #fdfafc;
  box-shadow: 0 2px 8px rgba(235,107,155,0.08);
}

/* Avatar */
.agd2-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Badges de status */
.agd2-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.agd2-badge-confirmado {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}
.agd2-badge-pendente {
  background: #fff8e1;
  color: #e65100;
  border: 1px solid #ffe0b2;
}

/* ============================================================
   14. SERVIÇOS (novo design) — Servicos/index.php
============================================================ */

/* ── Tokens locais ── */
:root {
    --srv-pink:           #eb6b9b;
    --srv-pink-light:     #f9dde9;
    --srv-pink-mid:       #f2b8cf;
    --srv-pink-deep:      #c94f7e;
    --srv-cream:          #fdf8f5;
    --srv-cream-dark:     #f5ede6;
    --srv-charcoal:       #1e1a1c;
    --srv-muted:          #7a6b72;
    --srv-border-pink:    #f0cad9;
    --srv-border-soft:    #ede4e8;
    --srv-ff-display:     'Cormorant Garamond', Georgia, serif;
    --srv-ff-body:        'DM Sans', sans-serif;
    --srv-radius-card:    20px;
    --srv-shadow-soft:    0 4px 28px rgba(235,107,155,.10);
    --srv-shadow-hover:   0 12px 48px rgba(235,107,155,.20);
}

/* ── Page Hero ── */
.page-hero {
    position: relative;
    background: var(--srv-cream-dark);
    overflow: hidden;
    padding: 80px 24px 72px;
    text-align: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 15% 50%, rgba(235,107,155,.12) 0%, transparent 70%),
        radial-gradient(ellipse 50% 70% at 85% 30%, rgba(235,107,155,.10) 0%, transparent 70%);
    pointer-events: none;
}
.page-hero .deco {
    position: absolute;
    border-radius: 50%;
    background: var(--srv-pink-light);
    opacity: .5;
    pointer-events: none;
}
.page-hero .deco-1 { width: 300px; height: 300px; top: -120px; left: -80px; }
.page-hero .deco-2 { width: 200px; height: 200px; bottom: -80px; right: -50px; }
.page-hero-inner   { position: relative; max-width: 640px; margin: 0 auto; }
.page-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--srv-pink);
    background: rgba(235,107,155,.10);
    border: 1px solid rgba(235,107,155,.25);
    border-radius: 50px;
    padding: 6px 16px;
    margin-bottom: 22px;
}
.page-hero-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--srv-pink);
    flex-shrink: 0;
}
.page-hero h1 {
    font-family: var(--srv-ff-display);
    font-size: clamp(2.6rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--srv-charcoal);
    margin-bottom: 18px;
}
.page-hero h1 em { font-style: italic; color: var(--srv-pink); }
.page-hero p {
    font-size: .96rem;
    color: var(--srv-muted);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
}

/* ── Filter Tabs ── */
.filter-section {
    padding: 48px 24px 0;
    max-width: 1200px;
    margin: 0 auto;
}
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.filter-tab {
    font-family: var(--srv-ff-body);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--srv-muted);
    background: #fff;
    border: 1px solid var(--srv-border-pink);
    border-radius: 50px;
    padding: 9px 22px;
    cursor: pointer;
    transition: all .2s;
    user-select: none;
}
.filter-tab:hover { border-color: var(--srv-pink); color: var(--srv-pink); }
.filter-tab.active {
    background: var(--srv-pink);
    border-color: var(--srv-pink);
    color: #fff;
    box-shadow: 0 4px 16px rgba(235,107,155,.28);
}

/* ── Services Grid ── */
.services-section {
    padding: 48px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 24px;
}

/* ── Service Card ── */
.service-card {
    background: #fff;
    border: 1px solid var(--srv-border-pink);
    border-radius: var(--srv-radius-card);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: var(--srv-shadow-soft);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    cursor: default;
    animation: fadeUp .5s cubic-bezier(.22,.68,0,1.2) both;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--srv-shadow-hover);
    border-color: var(--srv-pink-mid);
}

/* Foto do card */
.service-card-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .45s ease;
}
.service-card:hover .service-card-photo {
    transform: scale(1.05);
}
.service-card-photo-wrap {
    overflow: hidden;
    flex-shrink: 0;
    height: 260px;
}

@media (max-width: 991px) {
    .service-card-photo-wrap { height: 240px; }
}
@media (max-width: 640px) {
    .service-card-photo-wrap { height: 220px; }
}

/* Conteúdo abaixo da foto */
.service-card-content {
    padding: 24px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
    position: relative;
}
/* blob decorativo */
.service-card-content::after {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(235,107,155,.07) 0%, transparent 70%);
    bottom: -40px;
    right: -40px;
    pointer-events: none;
}

.card-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--srv-pink-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--srv-pink);
    flex-shrink: 0;
}

.card-body-inner { flex: 1; }
.card-category {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--srv-pink);
    margin-bottom: 5px;
}
.card-title {
    font-family: var(--srv-ff-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--srv-charcoal);
    line-height: 1.2;
    margin-bottom: 8px;
}
.card-desc {
    font-size: .84rem;
    color: var(--srv-muted);
    line-height: 1.65;
    margin-bottom: 0;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--srv-border-soft);
    gap: 12px;
    flex-wrap: wrap;
}
.card-price { display: flex; flex-direction: column; }
.card-price-label {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--srv-muted);
}
.card-price-value {
    font-family: var(--srv-ff-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--srv-charcoal);
    line-height: 1.1;
}
.card-price-value span { font-size: 1rem; font-weight: 600; color: var(--srv-muted); }
.card-duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: .75rem;
    font-weight: 500;
    color: var(--srv-muted);
    background: var(--srv-cream-dark);
    border-radius: 50px;
    padding: 5px 12px;
}
.card-duration i { color: var(--srv-pink); font-size: .8rem; }

.btn-card {
    display: block;
    text-align: center;
    background: transparent;
    border: 1.5px solid var(--srv-pink);
    color: var(--srv-pink);
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .04em;
    border-radius: 50px;
    padding: 11px 0;
    text-decoration: none;
    transition: background .2s, color .2s, transform .15s;
    margin-top: 2px;
}
.btn-card:hover { background: var(--srv-pink); color: #fff; transform: translateY(-1px); }

/* ── Diferenciais ── */
.diferenciais-section {
    background: var(--srv-charcoal);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
}
.diferenciais-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 10% 50%, rgba(235,107,155,.15) 0%, transparent 60%),
        radial-gradient(ellipse 50% 60% at 90% 50%, rgba(235,107,155,.10) 0%, transparent 60%);
    pointer-events: none;
}
.diferenciais-inner { position: relative; max-width: 1100px; margin: 0 auto; text-align: center; }
.diferenciais-inner .section-label {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--srv-pink);
    margin-bottom: 14px;
}
.diferenciais-inner h2 {
    font-family: var(--srv-ff-display);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 56px;
    line-height: 1.15;
}
.diferenciais-inner h2 em { font-style: italic; color: var(--srv-pink-mid); }
.dif-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.dif-item { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.dif-icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    background: rgba(235,107,155,.15);
    border: 1px solid rgba(235,107,155,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--srv-pink-mid);
}
.dif-title { font-family: var(--srv-ff-display); font-size: 1.2rem; font-weight: 700; color: #fff; }
.dif-desc  { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.6; }

/* ── CTA Band ── */
.cta-band {
    padding: 80px 24px;
    background: var(--srv-cream-dark);
    text-align: center;
}
.cta-band h2 {
    font-family: var(--srv-ff-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    color: var(--srv-charcoal);
    margin-bottom: 16px;
    line-height: 1.15;
}
.cta-band h2 em { font-style: italic; color: var(--srv-pink); }
.cta-band p { font-size: .93rem; color: var(--srv-muted); margin-bottom: 36px; }
.cta-btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--srv-pink);
    color: #fff;
    font-size: .88rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 14px 32px;
    text-decoration: none;
    transition: background .2s, transform .15s;
    box-shadow: 0 6px 24px rgba(235,107,155,.30);
}
.btn-cta-primary:hover { background: var(--srv-pink-deep); color: #fff; transform: translateY(-2px); }
.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--srv-charcoal);
    font-size: .88rem;
    font-weight: 600;
    border: 1.5px solid var(--srv-border-pink);
    border-radius: 50px;
    padding: 14px 32px;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}
.btn-cta-secondary:hover { border-color: var(--srv-pink); color: var(--srv-pink); }

/* ── Empty State ── */
.empty-state {
    text-align: center;
    padding: 64px 24px;
    display: none;
}
.empty-state i { font-size: 2.5rem; color: var(--srv-border-pink); margin-bottom: 16px; display: block; }
.empty-state p { color: var(--srv-muted); font-size: .9rem; }

/* ── Animations ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}
.animate-in {
    opacity: 0;
    animation: fadeUp .55s cubic-bezier(.22,.68,0,1.2) forwards;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .services-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 60px 20px 52px; }
}
/* ============================================================
   TIME PICKER CUSTOMIZADO
============================================================ */
.tp-trigger {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid #f2d8e0;
  border-radius: var(--radius-sm); padding: 7px 10px;
  cursor: pointer; font-size: 14px; font-weight: 600;
  color: var(--color-text-base); transition: var(--transition);
  position: relative; user-select: none;
}
.tp-trigger:hover { border-color: var(--color-primary); }
.tp-trigger.open { border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(235,107,155,0.15); }
.tp-value { flex: 1; }
.tp-chevron { font-size: 11px; color: #aaa; transition: transform 0.2s; }
.tp-trigger.open .tp-chevron { transform: rotate(180deg); }
.tp-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0;
  background: #fff; border: 1px solid #f2d8e0;
  border-radius: var(--radius-md); padding: 12px;
  z-index: 9999; display: none; width: 200px;
  box-shadow: var(--shadow-md);
}
.tp-dropdown.open { display: block; }
.tp-cols { display: flex; gap: 0; }
.tp-col { flex: 1; display: flex; flex-direction: column; align-items: center; }
.tp-col-title { font-size: 10px; color: #bbb; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.tp-scroll { height: 180px; overflow-y: auto; scroll-snap-type: y mandatory; scrollbar-width: none; }
.tp-scroll::-webkit-scrollbar { display: none; }
.tp-item { height: 36px; display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 500; cursor: pointer; border-radius: 8px; scroll-snap-align: start; color: #999; transition: all 0.12s; width: 100%; }
.tp-item:hover { background: #fff0f5; color: var(--color-primary); }
.tp-item.selected { background: var(--color-primary); color: #fff; font-weight: 700; }
.tp-item.tp-disabled { opacity: .28; cursor: not-allowed; color: #bbb; text-decoration: line-through; }
.tp-item.tp-disabled:hover { background: none; color: #bbb; }
.tp-sep { width: 1px; background: #f2d8e0; margin: 20px 4px; }
.tp-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; padding-top: 10px; border-top: 1px solid #f5eff2; }
.tp-btn-cancel { font-size: 12px; color: #aaa; cursor: pointer; padding: 4px 8px; border-radius: 6px; background: none; border: none; }
.tp-btn-cancel:hover { background: #f5f5f5; }
.tp-btn-ok { font-size: 12px; font-weight: 600; color: #fff; background: var(--color-primary); border: none; padding: 6px 16px; border-radius: var(--radius-full); cursor: pointer; }
.tp-btn-ok:hover { background: var(--color-primary-dark); }


/* ============================================================
   15. CONTATO — Contato/index.php
============================================================ */

/* ── Seção principal ── */
.contato-section {
    padding: 72px 24px 80px;
    background: var(--srv-cream, #fdf8f5);
}

.contato-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}

/* ── Info cards ── */
.contato-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-card-new {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--color-border-pink, #f2d8e0);
    border-radius: 16px;
    padding: 20px 22px;
    transition: box-shadow 0.25s, border-color 0.25s;
}

.info-card-new:hover {
    border-color: var(--color-primary, #eb6b9b);
    box-shadow: 0 6px 24px rgba(235, 107, 155, 0.10);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-primary-light, #f8e2ea);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: var(--color-primary, #eb6b9b);
    flex-shrink: 0;
}

.info-card-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-card-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-primary, #eb6b9b);
    margin: 0;
}

.info-card-value {
    font-size: .97rem;
    font-weight: 600;
    color: var(--color-text-dark, #1a1a1a);
    margin: 0;
    line-height: 1.4;
}

.info-card-link {
    text-decoration: none;
    transition: color 0.2s;
}

.info-card-link:hover {
    color: var(--color-primary, #eb6b9b);
}

.info-card-sub {
    font-size: .8rem;
    color: var(--color-text-muted, #999);
    margin: 0;
}

.info-card-closed {
    color: #e05252;
}

/* ── Botões de ação ── */
.contato-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.btn-contato-whatsapp,
.btn-contato-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 24px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
    flex: 1;
    justify-content: center;
}

.btn-contato-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-contato-whatsapp:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-contato-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    box-shadow: 0 4px 16px rgba(220, 39, 67, 0.22);
}

.btn-contato-instagram:hover {
    color: #fff;
    filter: brightness(1.08);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.32);
}

/* ── Mapa ── */
.contato-mapa {
    position: sticky;
    top: 88px;
}

.mapa-wrap {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--color-border-pink, #f2d8e0);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
    aspect-ratio: 4 / 3;
}

.mapa-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ── Responsivo ── */
@media (max-width: 991px) {
    .contato-grid {
        grid-template-columns: 1fr;
    }

    .contato-mapa {
        position: static;
    }

    .mapa-wrap {
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 480px) {
    .contato-btn-group {
        flex-direction: column;
    }
}

/* ============================================================
   15. DASHBOARD REDESIGN — hero, stat cards, sidebar, modais
============================================================ */

/* ── Hero ── */
.dash-hero {
    position: relative;
    background: var(--color-bg-pink);
    border-bottom: 1px solid var(--color-border-pink);
    overflow: hidden;
    padding: 48px 0 42px;
}
.dash-hero-deco {
    position: absolute;
    border-radius: 50%;
    background: var(--color-primary-light);
    opacity: .45;
    pointer-events: none;
}
.dash-hero-deco-1 { width: 300px; height: 300px; top: -130px; left: -70px; }
.dash-hero-deco-2 { width: 200px; height: 200px; bottom: -90px; right: -50px; }
.dash-hero-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}
.dash-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(235,107,155,.1);
    border: 1px solid rgba(235,107,155,.22);
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 14px;
}
.dash-hero-title {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3vw, 2.7rem);
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.15;
    margin: 0 0 8px;
}
.dash-hero-title em {
    font-style: italic;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.dash-hero-sub {
    font-size: .9rem;
    color: var(--color-text-muted);
    margin: 0;
}
.dash-main { padding-top: 36px; padding-bottom: 64px; }

/* ── Stat Cards ── */
.dash-stat-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 24px 22px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
}
.dash-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border-pink);
}
.dash-stat-card-cta:hover {
    border-color: var(--color-primary) !important;
    box-shadow: 0 4px 20px rgba(235,107,155,.15) !important;
}
.dash-stat-icon {
    width: 46px; height: 46px;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
}
.dash-stat-icon-gold   { background: #fff8e1; color: #f59e0b; }
.dash-stat-icon-pink   { background: var(--color-primary-light); color: var(--color-primary); }
.dash-stat-icon-gray   { background: #f5f5f5; color: #888; }
.dash-stat-icon-purple { background: #f3e8ff; color: #9333ea; }
.dash-stat-label {
    font-size: .69rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--color-text-muted);
    margin: 0;
}
.dash-stat-value {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1;
}

/* ── Sidebar Card ── */
.dash-sidebar-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.dash-sidebar-header {
    padding: 20px 24px 14px;
    border-bottom: 1px solid var(--color-border-pink);
    background: var(--color-bg-pink);
}
.dash-sidebar-tag {
    font-size: .69rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--color-primary);
}
.dash-sidebar-body { padding: 8px 12px; }

/* ── Action Buttons ── */
.dash-action-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 10px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background .18s, transform .15s;
    cursor: pointer;
}
.dash-action-btn:hover {
    background: var(--color-bg-pink);
    transform: translateX(3px);
}
.dash-action-icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}
.dash-action-icon-pink   { background: var(--color-primary-light); color: var(--color-primary); }
.dash-action-icon-blue   { background: #dbeafe; color: #3b82f6; }
.dash-action-icon-green  { background: #dcfce7; color: #16a34a; }
.dash-action-icon-orange { background: #ffedd5; color: #ea580c; }
.dash-action-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.dash-action-text strong {
    font-size: .84rem;
    font-weight: 600;
    color: var(--color-text-dark);
}
.dash-action-text span {
    font-size: .71rem;
    color: var(--color-text-muted);
}
.dash-action-arrow {
    color: #ccc;
    font-size: .75rem;
    transition: color .18s, transform .18s;
}
.dash-action-btn:hover .dash-action-arrow {
    color: var(--color-primary);
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .dash-hero { padding: 30px 0 26px; }
    .dash-hero-title { font-size: 1.65rem; }
}

/* ============================================================
   16. MODAIS REDESIGN — header com gradiente, estilo unificado
============================================================ */

/* Sobrescreve o padrão Bootstrap para todos os modais */
.modal-content {
    border-radius: var(--radius-xl) !important;
    border: 1px solid var(--color-border-pink) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,.14) !important;
    overflow: hidden;
}

.modal-header {
    padding: 28px 32px 20px !important;
    border-bottom: 1px solid var(--color-border-pink) !important;
    background: linear-gradient(135deg, var(--color-bg-pink) 0%, #fff 100%);
}

.modal-title {
    font-family: var(--font-display) !important;
    font-size: 1.45rem !important;
    font-weight: 700 !important;
    color: var(--color-text-dark) !important;
    line-height: 1.2 !important;
}

.modal-header .text-rosa,
.text-rosa { color: var(--color-primary) !important; }

.modal-body {
    padding: 28px 32px !important;
    background: #fff;
}

.modal-footer {
    padding: 16px 32px 24px !important;
    border-top: 1px solid var(--color-border-pink) !important;
    background: var(--color-bg-pink);
}

/* Botão fechar do modal */
.modal-header .btn-close {
    opacity: .5;
    transition: opacity .2s, transform .2s;
}
.modal-header .btn-close:hover { opacity: 1; transform: rotate(90deg); }

/* Subtítulo abaixo do título */
.modal-header p.text-muted {
    font-size: .83rem;
    margin-top: 4px;
    color: var(--color-text-muted) !important;
}

/* Botão primário rosa nos modais */
.btn-rosa {
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(235,107,155,.25);
}
.btn-rosa:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-pink);
}

/* Botão secundário nos modais */
.modal-footer .btn-outline-secondary,
.modal .btn-outline-secondary {
    border-radius: var(--radius-full);
    border-color: var(--color-border-pink);
    color: var(--color-text-muted);
    font-size: 14px;
    padding: 10px 24px;
    transition: var(--transition);
}
.modal-footer .btn-outline-secondary:hover,
.modal .btn-outline-secondary:hover {
    background: var(--color-bg-pink);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Botões do modal Serviços (ainda usa .btn-primary e .btn-secondary) */
.modal .btn-primary {
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-full);
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.modal .btn-primary:hover {
    box-shadow: var(--shadow-pink);
    transform: translateY(-1px);
    filter: brightness(1.05);
}
.modal .btn-secondary {
    background: transparent;
    border: 1.5px solid var(--color-border-pink);
    color: var(--color-text-muted);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    font-size: 14px;
    transition: var(--transition);
}
.modal .btn-secondary:hover {
    background: var(--color-bg-pink);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

/* Tabelas nos modais */
.modal .table-hover tbody tr:hover {
    background: var(--color-bg-pink);
}
.modal .table thead th {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--color-border-pink);
}

/* Badge de variação dos relatórios */
.badge-variacao-positiva {
    background: #e8f5e9;
    color: #2e7d32;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .72rem;
}
.badge-variacao-negativa {
    background: #fce4ec;
    color: #c62828;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .72rem;
}
.badge-variacao-neutra {
    background: #f5f5f5;
    color: #757575;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .72rem;
}

/* Input busca no modal de clientes */
#buscarCliente {
    border-left: none;
    padding-left: 8px;
    border-radius: 0 var(--radius-md) var(--radius-md) 0 !important;
}
.modal .input-group-text {
    background: var(--color-bg-pink);
    border-color: var(--color-border-pink);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
}