/* =============================================
   HIGIENIZA AÍ — GLOBAL STYLES
   ============================================= */

/* FONTS */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* VARIABLES */
:root {
  --blue: #0D1B6E;
  --blue-mid: #1a2d9e;
  --blue-light: #2a3fb5;
  --orange: #E8521A;
  --orange-light: #ff6b35;
  --white: #ffffff;
  --bg: #f8f9ff;
  --bg-alt: #eef0fa;
  --text: #1a1a2e;
  --text-mid: #4a4a6a;
  --text-light: #8888aa;
  --border: #dde0f5;
  --card-bg: #ffffff;
  --shadow: 0 4px 24px rgba(13,27,110,0.08);
  --shadow-lg: 0 12px 48px rgba(13,27,110,0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --nav-h: 96px;
  --font-display: 'Sora', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

[data-theme="dark"] {
  --bg: #0a0e1a;
  --bg-alt: #0f1428;
  --text: #e8eaf6;
  --text-mid: #9ea3c8;
  --text-light: #6366a0;
  --border: #1e2545;
  --card-bg: #111830;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.4);
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }
input, textarea, select, button { font-family: var(--font-body); }

/* Ajuste de espaçamento para a fonte de títulos (Syne é naturalmente larga)
   Aplica a todos os títulos display da home e do admin para consistência. */
.hero-title, .section-header h2, .benefits-text h2, .agendar-header h2,
.admin-topbar h1, .dash-card-value, .week-day-date, .table-header h3,
.admin-modal h2, .modal h3, .price-total strong, .chart-card-header h3,
.settings-card h3, .step-card h3, .service-card h3, .logo-main {
  letter-spacing: -0.02em;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 3px; }

/* =============================================
   LAYOUT
   ============================================= */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.bg-alt { background: var(--bg-alt); }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-header p {
  color: var(--text-mid);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(var(--bg-rgb, 248,249,255), 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
[data-theme="dark"] .navbar {
  background: rgba(10,14,26,0.85);
}
.navbar.scrolled {
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
}
.logo-img {
  height: 64px;
  width: auto;
  display: block;
  background: var(--blue);
  padding: 10px 20px;
  border-radius: 16px;
}
[data-theme="dark"] .logo-img {
  background: transparent;
  padding: 10px 0;
}
.logo-circle {
  width: 42px; height: 42px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  position: relative;
  flex-shrink: 0;
}
.logo-circle::after {
  content: '';
  position: absolute;
  bottom: 6px; left: 50%;
  transform: translateX(-50%);
  width: 18px; height: 3px;
  background: var(--orange);
  border-radius: 2px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-main { font-size: 1rem; font-weight: 800; color: var(--blue); }
.logo-sub { font-size: 0.65rem; font-weight: 400; color: var(--text-mid); margin-top: 2px; }
[data-theme="dark"] .logo-main { color: var(--white); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-links a:hover { color: var(--blue); background: var(--bg-alt); }
.btn-nav {
  background: var(--blue) !important;
  color: white !important;
  border-radius: 10px !important;
}
.btn-nav:hover { background: var(--blue-mid) !important; }

.nav-actions { display: flex; align-items: center; gap: 8px; }
.theme-toggle {
  width: 40px; height: 40px;
  border: none;
  background: var(--bg-alt);
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.theme-toggle:hover { background: var(--border); }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun { display: none; }

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 8px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 12px 24px 16px;
  border-top: 1px solid var(--border);
  background: var(--card-bg);
}
.nav-mobile a {
  padding: 12px 0;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border: none; color: var(--blue); font-weight: 600; }
.nav-mobile.open { display: flex; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.orb1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -200px; right: -100px;
}
.orb2 {
  width: 400px; height: 400px;
  background: var(--orange);
  bottom: -100px; left: -100px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.3;
}

.hero > .container, .hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero {
  position: relative;
  z-index: 1;
}
.hero-content { position: relative; z-index: 1; }
.hero-visual { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: none;
  max-width: 90%;
}
.br-desktop { display: inline; }
@media (max-width: 768px) {
  .br-desktop { display: none; }
  .rel-charts-grid { grid-template-columns: 1fr !important; }
}
.gradient-text {
  background: linear-gradient(135deg, var(--orange), #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(13,27,110,0.3);
}
.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(13,27,110,0.4);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card-bg);
  color: var(--text);
  padding: 14px 28px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 1px solid var(--border);
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-secondary svg { fill: #25d366; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
}
[data-theme="dark"] .stat-num { color: var(--orange); }
.stat-label { font-size: 0.75rem; color: var(--text-mid); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* HERO VISUAL */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
}
.hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
}
.card-icon { font-size: 2rem; }
.card-info { flex: 1; }
.card-info strong { display: block; font-weight: 600; font-size: 0.95rem; color: var(--text); }
.card-info span { font-size: 0.8rem; color: var(--text-mid); }
.card-check {
  width: 28px; height: 28px;
  background: #22c55e;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.floating { animation: float 4s ease-in-out infinite; }
.delay1 { animation-delay: 1.3s; }
.delay2 { animation-delay: 2.6s; }

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.service-card.featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange), var(--shadow);
}
.service-badge {
  position: absolute;
  top: -12px; right: 20px;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.service-icon-wrap {
  margin-bottom: 20px;
}
.service-svg { width: 80px; height: 80px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 16px;
}
.service-items {
  margin-bottom: 24px;
}
.service-items li {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 4px 0;
}
.service-items li::first-letter { color: var(--blue); }
.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 600;
  transition: gap var(--transition);
}
.service-cta:hover { gap: 10px; }
.service-cta::after { content: '→'; }
.service-card.featured .service-cta { color: var(--orange); }

/* =============================================
   STEPS
   ============================================= */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  transition: all var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.step-icon { font-size: 2.5rem; margin-bottom: 16px; }
.step-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-card p { font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }
.step-arrow {
  font-size: 1.5rem;
  color: var(--text-light);
  flex-shrink: 0;
}

/* =============================================
   BENEFITS
   ============================================= */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.benefits-text .section-tag { margin-bottom: 12px; }
.benefits-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 32px;
  line-height: 1.2;
}
.benefit-list { display: flex; flex-direction: column; gap: 24px; }
.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.benefit-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.benefit-item h4 {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.benefit-item p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* BEFORE/AFTER VISUAL */
.visual-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-lg);
}
.vc-header {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--text);
}
.vc-before-after {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.vc-side { flex: 1; text-align: center; }
.vc-label { font-size: 0.75rem; font-weight: 600; color: var(--text-mid); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.vc-illustration {
  height: 100px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.vc-illustration.dirty {
  background: linear-gradient(135deg, #d4c5a9, #b8a88a);
}
.vc-illustration.clean {
  background: linear-gradient(135deg, var(--bg-alt), var(--card-bg));
  border: 2px solid var(--blue);
}
.dirt-spot {
  position: absolute;
  background: rgba(100,70,30,0.4);
  border-radius: 50%;
}
.s1 { width: 24px; height: 18px; top: 20px; left: 20px; }
.s2 { width: 32px; height: 24px; top: 35px; left: 45px; transform: rotate(20deg); }
.s3 { width: 18px; height: 14px; bottom: 15px; right: 20px; }
.sparkle {
  position: absolute;
  font-size: 1.2rem;
  color: var(--orange);
  animation: sparkleAnim 2s ease-in-out infinite;
}
.sp1 { top: 15px; left: 25px; animation-delay: 0s; }
.sp2 { top: 40px; right: 25px; animation-delay: 0.7s; }
.sp3 { bottom: 15px; left: 45px; animation-delay: 1.4s; }
@keyframes sparkleAnim {
  0%, 100% { opacity: 0.4; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.vc-arrow { font-size: 1.5rem; color: var(--blue); flex-shrink: 0; }
.vc-stats {
  display: flex;
  gap: 16px;
}
.vc-stat {
  flex: 1;
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}
.vc-stat span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue);
}
[data-theme="dark"] .vc-stat span { color: var(--orange); }
.vc-stat small { font-size: 0.72rem; color: var(--text-mid); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
}
.testimonial-card.featured-t {
  border-color: var(--orange);
  box-shadow: 0 0 0 1px var(--orange);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { font-size: 1rem; margin-bottom: 14px; }
.testimonial-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-photo {
  object-fit: cover;
  border: 2px solid var(--border);
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--text-mid); }

/* =============================================
   FORM
   ============================================= */
.form-wrapper {
  max-width: 760px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}
.orcamento-form { display: flex; flex-direction: column; gap: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13,27,110,0.08);
}
.form-group textarea { resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }

.input-with-btn {
  display: flex;
  gap: 8px;
}
.input-with-btn input { flex: 1; }
.btn-buscar-cep {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  flex-shrink: 0;
}
.btn-buscar-cep:hover { background: var(--blue-mid); }

/* SERVICE SELECTOR */
.services-selector {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.service-option {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.service-option:hover {
  border-color: var(--blue);
  background: var(--bg-alt);
}
.service-option.selected {
  border-color: var(--blue);
  background: rgba(13,27,110,0.06);
  box-shadow: 0 0 0 2px var(--blue);
}
.so-icon { width: 48px; height: 48px; margin: 0 auto 8px; }
.so-icon svg { width: 100%; height: 100%; }
.service-option span {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.so-check {
  position: absolute;
  top: 8px; right: 8px;
  width: 20px; height: 20px;
  background: var(--blue);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  opacity: 0;
  transition: opacity var(--transition);
}
.service-option.selected .so-check { opacity: 1; }

/* SERVICE DETAILS */
.service-details-container { display: flex; flex-direction: column; gap: 16px; }
.service-detail-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}
.service-detail-block h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.detail-grid .form-group label { font-size: 0.8rem; }

/* CUPOM */
.cupom-msg {
  font-size: 0.82rem;
  margin-top: 4px;
  height: 18px;
}
.cupom-msg.success { color: #22c55e; }
.cupom-msg.error { color: #ef4444; }

/* SUBMIT */
.form-submit { text-align: center; }
.btn-submit {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
  border: none;
  border-radius: 14px;
  padding: 18px 48px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(13,27,110,0.3);
  font-family: var(--font-display);
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(13,27,110,0.4);
}
.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-disclaimer {
  margin-top: 12px;
  font-size: 0.78rem;
  color: var(--text-light);
}

/* =============================================
   MODAL
   ============================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.modal-orcamento { padding: 32px 32px; }
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-icon { font-size: 3.5rem; margin-bottom: 16px; }
.modal h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; }
.modal p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 16px; }
.modal-number {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  color: var(--text-mid);
}
.modal-number strong { color: var(--blue); }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--blue);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 260px; }
.footer-brand .logo-main { color: white; }
.footer-brand .logo-sub { color: rgba(255,255,255,0.5); }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-links a {
  font-size: 0.875rem;
  transition: color var(--transition);
  color: rgba(255,255,255,0.6);
}
.footer-links a:hover { color: var(--orange); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact h4 {
  color: white;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.footer-contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.footer-contact a:hover { color: #25d366; }
.footer-contact span { font-size: 0.875rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.admin-link {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
  transition: color var(--transition);
}
.admin-link:hover { color: rgba(255,255,255,0.6); }

/* =============================================
   ADMIN STYLES (shared)
   ============================================= */
.admin-body {
  display: flex;
  min-height: 100vh;
  background: var(--bg);
}
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
  z-index: 150;
}
.sidebar-overlay.show { display: block; }
@media (min-width: 769px) {
  .sidebar-overlay { display: none !important; }
}
.admin-sidebar {
  width: 260px;
  background: var(--blue);
  color: white;
  display: flex;
  flex-direction: column;
  padding: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
  overflow-y: auto;
  transition: transform var(--transition);
}
.sidebar-header {
  padding: 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.sidebar-nav {
  padding: 16px 0;
  flex: 1;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  color: white;
  background: rgba(255,255,255,0.08);
  border-left-color: var(--orange);
}
.sidebar-nav a .nav-icon { font-size: 1.1rem; width: 20px; text-align: center; }
.sidebar-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.admin-main {
  margin-left: 260px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.admin-topbar {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-topbar h1 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.topbar-actions { display: flex; align-items: center; gap: 12px; }
.topbar-actions .theme-toggle { background: var(--bg-alt); }
.badge-notif {
  position: relative;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 10px;
  transition: background var(--transition);
}
.badge-notif:hover { background: var(--bg-alt); }
.badge-notif .badge-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--orange);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.admin-content { padding: 32px; flex: 1; }

/* DASHBOARD CARDS */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
.dash-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.dash-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.dash-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.dash-card-label {
  font-size: 0.78rem;
  color: var(--text-mid);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.dash-card-value {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}
.dash-card-delta {
  font-size: 0.78rem;
  font-weight: 600;
}
.dash-card-delta.up { color: #22c55e; }
.dash-card-delta.down { color: #ef4444; }
.dash-card-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  border-radius: 50%;
  opacity: 0.08;
  transform: translate(20px, 20px);
}
.dash-card:nth-child(1) .dash-card-accent { background: var(--blue); }
.dash-card:nth-child(2) .dash-card-accent { background: var(--orange); }
.dash-card:nth-child(3) .dash-card-accent { background: #22c55e; }
.dash-card:nth-child(4) .dash-card-accent { background: #a855f7; }

/* META PROGRESS */
.meta-bar {
  margin-top: 8px;
  background: var(--border);
  border-radius: 100px;
  height: 6px;
  overflow: hidden;
}
.meta-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  border-radius: 100px;
  transition: width 1s ease;
}

/* CHARTS */
.charts-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.chart-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.chart-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.chart-card-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}
.chart-period-tabs {
  display: flex;
  gap: 4px;
  background: var(--bg-alt);
  border-radius: 8px;
  padding: 3px;
}
.period-tab {
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
  color: var(--text-mid);
  transition: all var(--transition);
}
.period-tab.active {
  background: var(--card-bg);
  color: var(--blue);
  box-shadow: var(--shadow);
}
canvas { max-width: 100%; }

/* WEEK SCHEDULE */
.week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  margin-bottom: 32px;
}
.week-day {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
}
.week-day.today { border-color: var(--blue); box-shadow: 0 0 0 2px var(--blue); }
.week-day-name { font-size: 0.7rem; font-weight: 600; text-transform: uppercase; color: var(--text-mid); letter-spacing: 0.06em; margin-bottom: 6px; }
.week-day-date { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.week-day-count { font-size: 0.8rem; font-weight: 600; color: var(--blue); margin-bottom: 6px; }
.week-day-dots { display: flex; gap: 4px; justify-content: center; flex-wrap: wrap; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot.confirmed { background: #22c55e; }
.dot.pending { background: var(--orange); }

/* ORCAMENTOS TABLE */
.table-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.table-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.table-header h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }
.table-actions { display: flex; gap: 8px; }
.btn-sm {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-sm.primary { background: var(--blue); color: white; }
.btn-sm.primary:hover { background: var(--blue-mid); }
.btn-sm.secondary { background: var(--bg-alt); color: var(--text); border: 1px solid var(--border); }
.btn-sm.secondary:hover { border-color: var(--blue); color: var(--blue); }
.btn-sm.orange { background: var(--orange); color: white; }
.btn-sm.orange:hover { background: var(--orange-light); }
.btn-sm.success { background: #22c55e; color: white; }

table { width: 100%; border-collapse: collapse; }
th, td { padding: 14px 20px; text-align: left; font-size: 0.85rem; }
th {
  background: var(--bg-alt);
  font-weight: 600;
  color: var(--text-mid);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
tr:hover td { background: var(--bg-alt); }
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
}
.status-badge.novo { background: rgba(13,27,110,0.1); color: var(--blue); }
.status-badge.enviado { background: rgba(232,82,26,0.1); color: var(--orange); }
.status-badge.confirmado { background: rgba(34,197,94,0.1); color: #16a34a; }
.status-badge.concluido { background: rgba(100,100,100,0.1); color: var(--text-mid); }

/* MODAL ADMIN */
.admin-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.admin-modal-overlay.open { display: flex; }
.admin-modal {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 36px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  animation: modalIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.admin-modal h2 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; margin-bottom: 24px; }
.modal-section { margin-bottom: 20px; }
.modal-section h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-mid);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.info-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.875rem;
  border-bottom: 1px dashed var(--border);
}
.info-row:last-child { border: none; }
.info-row span:first-child { color: var(--text-mid); }
.info-row span:last-child { font-weight: 500; color: var(--text); }
.price-row { background: var(--bg-alt); padding: 12px 16px; border-radius: 10px; margin-bottom: 8px; }
.price-total {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-total strong { font-family: var(--font-display); font-size: 1.4rem; }
.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}
.price-adjust {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg-alt);
  border-radius: 10px;
  border: 1px solid var(--border);
}
.price-adjust label { font-size: 0.8rem; color: var(--text-mid); white-space: nowrap; }
.price-adjust input {
  width: 100px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.85rem;
  color: var(--text);
}

/* SETTINGS */
.settings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.settings-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}
.settings-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.settings-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.settings-field label { font-size: 0.78rem; color: var(--text-mid); font-weight: 600; }
.settings-field input {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 0.875rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.settings-field input:focus { border-color: var(--blue); }
.btn-save {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  padding: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  margin-top: 8px;
}
.btn-save:hover { background: var(--blue-mid); }

/* CUPONS */
.coupon-list { display: flex; flex-direction: column; gap: 10px; }
.coupon-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.coupon-code {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
  letter-spacing: 0.08em;
}
[data-theme="dark"] .coupon-code { color: var(--orange); }
.coupon-info { font-size: 0.78rem; color: var(--text-mid); }
.coupon-del {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 1rem;
  transition: color var(--transition);
  padding: 4px;
}
.coupon-del:hover { color: #ef4444; }

/* ALERTS */
.alert-banner {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.alert-banner.warning { border-color: var(--orange); background: rgba(232,82,26,0.05); }
.alert-banner.danger { border-color: #ef4444; background: rgba(239,68,68,0.05); }
.alert-banner.success { border-color: #22c55e; background: rgba(34,197,94,0.05); }

/* AGENDAR PAGE */
.agendar-wrapper {
  min-height: 100vh;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  background: var(--bg);
}
.agendar-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 48px 44px;
  box-shadow: var(--shadow-lg);
}
.agendar-header { margin-bottom: 32px; text-align: center; }
.agendar-header h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.agendar-header p { color: var(--text-mid); font-size: 0.9rem; }
.summary-box {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: 0.875rem;
}
.summary-box .price-big {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  display: block;
  margin-top: 4px;
}
[data-theme="dark"] .summary-box .price-big { color: var(--orange); }

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin-bottom: 24px;
}
.cal-header {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  padding: 6px 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.85rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  color: var(--text);
}
.cal-day:hover:not(.disabled):not(.empty) {
  border-color: var(--blue);
  background: var(--bg-alt);
}
.cal-day.selected { background: var(--blue); color: white; border-color: var(--blue); }
.cal-day.today { border-color: var(--orange); font-weight: 700; }
.cal-day.disabled { opacity: 0.3; cursor: not-allowed; }
.cal-day.empty { cursor: default; }
.cal-day.has-slots::after {
  content: '';
  display: block;
  width: 4px; height: 4px;
  background: #22c55e;
  border-radius: 50%;
  position: absolute;
  bottom: 4px;
}
.cal-day { position: relative; }

.time-slots { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.time-slot {
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  color: var(--text);
  background: var(--bg);
}
.time-slot:hover { border-color: var(--blue); color: var(--blue); }
.time-slot.selected { background: var(--blue); color: white; border-color: var(--blue); }
.time-slot.taken { opacity: 0.35; cursor: not-allowed; text-decoration: line-through; }

/* =============================================
   STATUS PAGE
   ============================================= */
.status-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
}
.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.timeline-step:not(:last-child) .tl-line {
  height: 40px;
  width: 2px;
  background: var(--border);
  margin: 4px auto;
}
.tl-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.tl-dot.done { background: #22c55e; color: white; }
.tl-dot.active { background: var(--blue); color: white; box-shadow: 0 0 0 4px rgba(13,27,110,0.2); }
.tl-dot.pending { background: var(--border); color: var(--text-light); }
.tl-content { padding-top: 4px; padding-bottom: 20px; }
.tl-content h4 { font-size: 0.9rem; font-weight: 600; margin-bottom: 2px; }
.tl-content p { font-size: 0.8rem; color: var(--text-mid); }

/* =============================================
   ALERTS & TOASTS
   ============================================= */
.toast-container {
  position: fixed;
  top: 24px; right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  font-size: 0.875rem;
  min-width: 280px;
  pointer-events: all;
  animation: toastIn 0.3s ease;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateX(100%); }
  to { opacity: 1; transform: translateX(0); }
}
.toast.success { border-color: #22c55e; }
.toast.error { border-color: #ef4444; }
.toast.info { border-color: var(--blue); }
.toast-icon { font-size: 1.2rem; }
.toast-close { margin-left: auto; background: none; border: none; cursor: pointer; color: var(--text-light); font-size: 1rem; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .dashboard-grid { grid-template-columns: repeat(2, 1fr); }
  .charts-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .benefits-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .logo-img { height: 46px; padding: 7px 14px; border-radius: 12px; }
  .navbar { height: 72px; }
  .hero > .container,
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title { max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero-subtitle { max-width: 100%; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-visual { display: none; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
  .services-selector { grid-template-columns: repeat(2, 1fr); }
  .form-wrapper { padding: 28px 20px; }
  .steps-grid { flex-direction: column; align-items: stretch; }
  .step-arrow { display: none; }
  .step-card { max-width: 100%; }
  .admin-sidebar { transform: translateX(-100%); z-index: 200; }
  .admin-sidebar.open { transform: translateX(0); box-shadow: 0 0 40px rgba(0,0,0,0.4); }
  .admin-main { margin-left: 0; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
  .week-grid { grid-template-columns: repeat(4, 1fr); }
  .agendar-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .dashboard-grid { grid-template-columns: 1fr; }
  .services-selector { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 1.85rem; letter-spacing: -0.025em; }
  .hero-subtitle br { display: none; }
  .modal { padding: 32px 24px; }
}

/* =============================================
   TELA DE LOGIN (ADMIN)
   ============================================= */
.login-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 24px;
  z-index: 5000;
}
.login-screen::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  pointer-events: none;
}
.login-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.login-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  justify-content: center;
}
.login-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  color: var(--text);
  margin-bottom: 6px;
}
.login-subtitle {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.login-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 16px;
}
.login-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
}
.login-field input {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.login-field input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13,27,110,0.08);
}
.senha-wrap { position: relative; display: flex; }
.senha-wrap input { flex: 1; padding-right: 46px; }
.senha-toggle {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: color var(--transition), background var(--transition);
}
.senha-toggle:hover { color: var(--blue); background: var(--bg-alt); }
.login-erro {
  color: #ef4444;
  font-size: 0.82rem;
  min-height: 18px;
  margin-bottom: 8px;
  text-align: center;
}
.login-btn {
  width: 100%;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.login-btn:hover:not(:disabled) { background: var(--blue-mid); transform: translateY(-2px); }
.login-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.login-back {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-mid);
  transition: color var(--transition);
}
.login-back:hover { color: var(--blue); }

/* MENU DE USUÁRIO (topbar) */
.user-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 12px;
  border-left: 1px solid var(--border);
}
.user-email {
  font-size: 0.8rem;
  color: var(--text-mid);
  font-weight: 500;
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.btn-logout {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--transition);
}
.btn-logout:hover { border-color: #ef4444; color: #ef4444; }
@media (max-width: 768px) {
  .user-email { display: none; }
}

/* MODAL DE ORÇAMENTO COM PREÇO */
.modal-orcamento { max-width: 460px; text-align: center; }
.modal-orcamento .modal-icon { font-size: 2.6rem; margin-bottom: 8px; }
.modal-orcamento h3 { font-size: 1.3rem; }
.modal-orcamento .modal-sub {
  font-size: 0.88rem;
  color: var(--text-mid);
  margin-bottom: 16px;
}
.orc-price-box {
  background: linear-gradient(135deg, var(--blue), var(--blue-mid));
  border-radius: 16px;
  padding: 22px 20px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: white;
}
.orc-price-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.orc-price-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.1;
}
.orc-price-parcela {
  font-size: 0.85rem;
  opacity: 0.95;
  margin-top: 2px;
}
.orc-price-disclaimer {
  font-size: 0.72rem;
  opacity: 0.75;
  margin-top: 8px;
  line-height: 1.4;
}
.orc-pague-depois {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  background: rgba(34,197,94,0.1);
  border: 1.5px solid #22c55e;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 16px;
}
.orc-pd-icon { font-size: 1.6rem; flex-shrink: 0; }
.orc-pague-depois strong {
  display: block;
  font-size: 0.92rem;
  color: #16a34a;
  margin-bottom: 2px;
}
[data-theme="dark"] .orc-pague-depois strong { color: #4ade80; }
.orc-pague-depois span {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.orc-pagamentos { margin-bottom: 18px; }
.orc-pag-title {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 10px;
}
.orc-pag-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.orc-pag-chip {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}
.modal-whats-info {
  font-size: 0.82rem;
  color: var(--text-mid);
  margin: 12px 0 20px;
  line-height: 1.5;
}
.modal-whats-info strong { color: var(--blue); }
[data-theme="dark"] .modal-whats-info strong { color: var(--orange); }

/* Botões full-width do modal de orçamento */
.btn-agendar-full {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 16px;
  margin-bottom: 16px;
  background: #dcfce7 !important;
  color: #0D1B6E !important;
  border: 2.5px solid #16a34a !important;
  border-radius: 12px;
  animation: agendarPulse 1.6s ease-in-out infinite;
}
@keyframes agendarPulse {
  0% { transform: scale(1); box-shadow: 0 2px 10px rgba(22,163,74,0.25), 0 0 0 0 rgba(22,163,74,0.5); }
  50% { transform: scale(1.03); box-shadow: 0 6px 20px rgba(22,163,74,0.35), 0 0 0 8px rgba(22,163,74,0); }
  100% { transform: scale(1); box-shadow: 0 2px 10px rgba(22,163,74,0.25), 0 0 0 0 rgba(22,163,74,0); }
}
.btn-agendar-full:hover {
  animation-play-state: paused;
  background: #bbf7d0 !important;
}
.btn-especialista-full {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

/* Otimização do modal de orçamento no MOBILE */
@media (max-width: 768px) {
  .modal-orcamento { padding: 22px 18px; }
  .modal-orcamento .modal-icon { font-size: 2rem; margin-bottom: 4px; }
  .modal-orcamento h3 { font-size: 1.15rem; }
  .modal-orcamento .modal-sub { font-size: 0.82rem; margin-bottom: 12px; }
  .orc-price-box { padding: 16px; margin-bottom: 12px; }
  .orc-price-value { font-size: 2rem; }
  .orc-price-disclaimer { font-size: 0.68rem; margin-top: 6px; }
  .orc-pague-depois { padding: 10px 12px; margin-bottom: 12px; }
  .orc-pague-depois strong { font-size: 0.85rem; }
  .orc-pague-depois span { font-size: 0.74rem; }
  .orc-pd-icon { font-size: 1.3rem; }
  .modal-number { padding: 8px 12px; margin-bottom: 12px; font-size: 0.8rem; }
  .btn-agendar-full { padding: 14px; font-size: 0.92rem; margin-bottom: 12px; }
  .orc-pagamentos { margin-bottom: 12px; }
  .orc-pag-chip { padding: 6px 11px; font-size: 0.74rem; }
}

/* SELETOR DE PESSOAS (estilo Dr Lavatudo) */
.sofa-q-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}
.sofa-hint-inline {
  display: block;
  font-size: 0.78rem;
  color: var(--text-mid);
  margin: -6px 0 12px;
}
.pessoas-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.pessoa-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--card-bg);
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.pessoa-btn:hover { border-color: var(--blue); color: var(--blue); }
.pessoa-btn.selected {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.sofa-hint {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 12px 14px;
}
.sofa-hint-icon { font-size: 1.8rem; flex-shrink: 0; }
.sofa-hint strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 2px;
}
.sofa-hint span { font-size: 0.78rem; color: var(--text-mid); line-height: 1.4; }

/* SELETOR DE MODELO (pílulas) */
.modelo-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.modelo-btn {
  padding: 9px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--border);
  background: var(--card-bg);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
}
.modelo-btn:hover { border-color: var(--blue); color: var(--blue); }
.modelo-btn.selected {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}

/* BOTÃO WHATSAPP NOS CARDS DE SERVIÇO */
.service-cta-whats {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding: 12px 18px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 100px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
  animation: servicePulse 2.2s ease-in-out infinite;
}
.service-cta-whats:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  animation-play-state: paused;
}
@keyframes servicePulse {
  0%, 100% { box-shadow: 0 4px 14px rgba(37,211,102,0.3), 0 0 0 0 rgba(37,211,102,0.45); }
  50% { box-shadow: 0 4px 18px rgba(37,211,102,0.4), 0 0 0 8px rgba(37,211,102,0); }
}
/* No mobile, ainda mais destaque */
@media (max-width: 768px) {
  .service-cta-whats { padding: 14px 18px; font-size: 0.95rem; }
}

/* BOTÃO CTA WHATSAPP (versão leve) */
.btn-whats-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 420px;
  padding: 20px 32px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 100px;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: whatsCtaPulse 2s ease-in-out infinite;
}
.btn-whats-cta:hover {
  background: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
  animation-play-state: paused;
}
@keyframes whatsCtaPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
@media (max-width: 768px) {
  .btn-whats-cta { font-size: 1rem; padding: 18px 24px; }
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  z-index: 1500;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: wppPulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
}
@keyframes wppPulse {
  0% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0); }
}
@media (max-width: 768px) {
  .whatsapp-float { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* LOADING SPINNER */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* PRINT */
@media print {
  .admin-sidebar, .admin-topbar, .modal-actions { display: none !important; }
  .admin-main { margin: 0; }
}
