/* ============================================================
   Serviço Fácil — Design System
   Seguindo os princípios do cookbook:
   · Hierarquia visual clara (problema → solução → ação)
   · Tokens de design consistentes
   · Acessibilidade WCAG AA (contraste ≥ 4.5:1 corpo, ≥ 3:1 título)
   · Mobile-first, 100% fluido
   · prefers-reduced-motion respeitado
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  /* --- Brand palette --- */
  --brand-50:  #EFF6FF;
  --brand-100: #DBEAFE;
  --brand-200: #BFDBFE;
  --brand-500: #3B82F6;
  --brand-600: #2563EB;
  --brand-700: #1D4ED8;
  --brand-800: #1E40AF;
  --brand-900: #1E3A8A;
  --brand-950: #172554;

  /* --- Amber --- */
  --amber-400: #FBBF24;
  --amber-500: #F59E0B;
  --amber-600: #D97706;

  /* --- Neutrals --- */
  --n-0:   #FFFFFF;
  --n-50:  #F8FAFC;
  --n-100: #F1F5F9;
  --n-200: #E2E8F0;
  --n-300: #CBD5E1;
  --n-400: #94A3B8;
  --n-500: #64748B;
  --n-600: #475569;
  --n-700: #334155;
  --n-800: #1E293B;
  --n-900: #0F172A;
  --n-950: #06091A;

  /* --- Semantic --- */
  --primary:       var(--brand-700);
  --primary-dark:  var(--brand-900);
  --primary-light: var(--brand-50);
  --accent:        var(--amber-500);
  --accent-dark:   var(--amber-600);
  --success:       #10B981;
  --success-light: #D1FAE5;
  --error:         #EF4444;
  --warning:       #F59E0B;

  /* --- Surfaces --- */
  --surface-0: var(--n-0);
  --surface-1: var(--n-50);
  --surface-2: var(--n-100);

  /* --- Text (all pass WCAG AA on white) --- */
  --text-primary:   var(--n-900);
  --text-secondary: var(--n-600);   /* 5.9:1 on white ✓ */
  --text-tertiary:  var(--n-500);   /* 4.6:1 on white ✓ */
  --text-inverse:   var(--n-0);

  /* --- Borders --- */
  --border-subtle:  var(--n-100);
  --border-default: var(--n-200);
  --border-strong:  var(--n-300);

  /* --- Radius scale --- */
  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:   12px;
  --r-lg:   16px;
  --r-xl:   20px;
  --r-2xl:  28px;
  --r-full: 9999px;

  /* --- Spacing (8px grid) --- */
  --sp-1: 4px;  --sp-2: 8px;  --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-7: 28px; --sp-8: 32px;
  --sp-10: 40px;--sp-12: 48px;--sp-16: 64px;--sp-20: 80px;
  --sp-24: 96px;--sp-32: 128px;

  /* --- Shadow scale --- */
  --sh-xs: 0 1px 2px rgba(0,0,0,0.06);
  --sh-sm: 0 2px 8px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.04);
  --sh-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.06);
  --sh-lg: 0 12px 28px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.06);
  --sh-xl: 0 24px 48px rgba(0,0,0,0.14), 0 8px 16px rgba(0,0,0,0.06);
  --sh-brand: 0 8px 24px rgba(29,78,216,0.28);
  --sh-accent: 0 8px 24px rgba(245,158,11,0.32);

  /* --- Transitions --- */
  --t-fast:   150ms ease-out;
  --t-base:   250ms ease-out;
  --t-slow:   400ms cubic-bezier(0.4,0,0.2,1);
  --t-spring: 500ms cubic-bezier(0.34,1.56,0.64,1);
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  margin: 0; padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--surface-1);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; }

/* Scrollbar personalizada */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--surface-2); }
::-webkit-scrollbar-thumb { background: var(--n-300); border-radius: var(--r-full); }
::-webkit-scrollbar-thumb:hover { background: var(--n-400); }

/* Focus visível para acessibilidade */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   3. ANIMAÇÕES
   ============================================================ */
@keyframes livePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(74,222,128,0.5); }
  60%       { transform: scale(1.2); box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(-2deg); }
  50%       { transform: translateY(-14px) rotate(1deg); }
}
@keyframes float2 {
  0%, 100% { transform: translateY(-6px) rotate(2deg); }
  50%       { transform: translateY(8px) rotate(-1deg); }
}
@keyframes float3 {
  0%, 100% { transform: translateY(4px) rotate(-1deg); }
  50%       { transform: translateY(-10px) rotate(2deg); }
}
@keyframes float4 {
  0%, 100% { transform: translateY(-2px) rotate(1.5deg); }
  50%       { transform: translateY(12px) rotate(-2deg); }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes shimmer {
  from { background-position: -200% center; }
  to   { background-position: 200% center; }
}

@keyframes successPop {
  0%   { transform: scale(0) rotate(-15deg); opacity: 0; }
  70%  { transform: scale(1.15) rotate(5deg); }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

@keyframes progressFill {
  from { width: 0; }
  to   { width: 100%; }
}

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

/* ============================================================
   4. LAYOUT
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container-sm { max-width: 900px; margin: 0 auto; padding: 0 var(--sp-6); }

.section        { padding: var(--sp-20) 0; }
.section-sm     { padding: var(--sp-12) 0; }
.section-lg     { padding: var(--sp-32) 0; }

.section-header {
  margin-bottom: var(--sp-10);
}
.section-header.centered { text-align: center; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--primary-light);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-3);
}

.section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: var(--sp-3);
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.65;
}

.section-header.centered .section-sub { margin: 0 auto; }

/* ============================================================
   5. PROXIMITY BAR
   ============================================================ */
.proximity-bar {
  background: linear-gradient(90deg, var(--brand-950) 0%, var(--brand-900) 50%, var(--brand-950) 100%);
  color: rgba(255,255,255,0.9);
  padding: 9px var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 200;
  overflow: hidden;
}

.proximity-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,0.04) 50%,
    transparent 100%);
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  flex-shrink: 0;
  animation: livePulse 2.5s infinite;
}

.km-val {
  color: var(--amber-400);
  font-weight: 900;
  font-size: 13.5px;
}

.proximity-bar .close-bar {
  position: absolute;
  right: var(--sp-4);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  transition: color var(--t-fast);
  cursor: pointer;
}

.proximity-bar .close-bar:hover { color: #fff; }

/* ============================================================
   6. HEADER
   ============================================================ */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--t-base), box-shadow var(--t-base);
}

header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: var(--sh-sm);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.header-centered {
  justify-content: center;
}

.logo {
  font-size: 20px;
  font-weight: 900;
  color: var(--brand-900);
  display: flex;
  align-items: center;
  gap: 7px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  box-shadow: var(--sh-brand);
  transition: transform var(--t-spring);
}

.logo:hover .logo-icon { transform: rotate(-8deg) scale(1.05); }
.logo-accent { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
  margin: 0 auto;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: var(--r-full);
  transition: width var(--t-base);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: inherit;
  font-weight: 700;
  border-radius: var(--r-sm);
  transition: all var(--t-base);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: -0.1px;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-sm  { font-size: 13px; padding: 7px 16px; }
.btn-md  { font-size: 14px; padding: 10px 20px; }
.btn-lg  { font-size: 15px; padding: 13px 28px; }
.btn-xl  { font-size: 16px; padding: 16px 36px; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  color: #fff;
  box-shadow: var(--sh-brand);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-700));
  box-shadow: 0 12px 28px rgba(29,78,216,0.35);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--amber-400));
  color: #fff;
  box-shadow: var(--sh-accent);
}
.btn-accent:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 12px 28px rgba(245,158,11,0.4);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: var(--border-default);
  color: var(--text-secondary);
}
.btn-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: #fff;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.6);
}

.btn-success {
  background: linear-gradient(135deg, var(--success), #059669);
  color: #fff;
  box-shadow: 0 8px 24px rgba(16,185,129,0.3);
}
.btn-success:hover {
  box-shadow: 0 12px 28px rgba(16,185,129,0.4);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================================
   7. MOBILE NAV
   ============================================================ */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9,12,27,0.6);
  z-index: 9999;
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease-out;
}
.mobile-overlay.open { display: block; }

.mobile-panel {
  background: var(--surface-0);
  width: 300px;
  height: 100%;
  padding: var(--sp-8) var(--sp-6);
  overflow-y: auto;
  box-shadow: var(--sh-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
  animation: slideInLeft 0.25s ease-out;
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}

.mobile-panel .logo { display: flex; }

.mobile-nav-section { }
.mobile-nav-section h6 {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--sp-3);
  padding-left: var(--sp-3);
}

.mobile-panel ul { list-style: none; }
.mobile-panel ul li {
  border-bottom: 1px solid var(--border-subtle);
}
.mobile-panel ul li:last-child { border-bottom: none; }
.mobile-panel ul li a {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: 13px var(--sp-3);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
}
.mobile-panel ul li a:hover {
  background: var(--primary-light);
  color: var(--primary);
}
.mobile-panel ul li a i { width: 20px; color: var(--primary); font-size: 14px; }

.mobile-panel .mobile-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  background: var(--n-950);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vw, 100px) var(--sp-6) clamp(80px, 12vw, 130px);
}

/* Mesh gradient */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(29,78,216,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(245,158,11,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 10%, rgba(59,130,246,0.2) 0%, transparent 60%);
  pointer-events: none;
}

/* Grid texture overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.hero-content { max-width: 580px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(245,158,11,0.15);
  border: 1px solid rgba(245,158,11,0.3);
  color: var(--amber-400);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-5);
  animation: fadeUp 0.6s ease-out both;
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: var(--sp-5);
  animation: fadeUp 0.6s 0.1s ease-out both;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--amber-400) 0%, #F97316 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: clamp(15px, 1.5vw, 18px);
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  animation: fadeUp 0.6s 0.2s ease-out both;
}

.hero-search {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-lg);
  padding: var(--sp-2) var(--sp-2) var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-8);
  transition: border-color var(--t-base), background var(--t-base);
  animation: fadeUp 0.6s 0.25s ease-out both;
}

.hero-search:focus-within {
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
}

.hero-search i { color: rgba(255,255,255,0.4); font-size: 15px; flex-shrink: 0; }

.hero-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
  padding: 8px 0;
  min-width: 0;
}

.hero-search input::placeholder { color: rgba(255,255,255,0.38); }

.hero-search .search-btn {
  background: linear-gradient(135deg, var(--accent), var(--amber-400));
  color: #fff;
  padding: 11px 20px;
  border-radius: var(--r-md);
  font-size: 13.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--t-base);
  box-shadow: var(--sh-accent);
}

.hero-search .search-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(245,158,11,0.45);
}

.hero-stats {
  display: flex;
  gap: var(--sp-8);
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.35s ease-out both;
}

.hero-stat { }
.hero-stat strong {
  display: block;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
  color: var(--amber-400);
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.hero-stat span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- Floating cards visual (desktop only) ---- */
.hero-visual {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.8s 0.4s ease-out both;
}

.float-card {
  position: absolute;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  white-space: nowrap;
  box-shadow: var(--sh-xl), inset 0 1px 0 rgba(255,255,255,0.1);
  pointer-events: none;
}

.float-card .fc-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.float-card .fc-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.float-card .fc-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.float-card .fc-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: var(--amber-400);
  font-weight: 700;
  margin-left: auto;
  padding-left: var(--sp-3);
}

/* positioning + animation */
.fc1 { top: 5%;  left: 5%;   animation: float1 5.5s ease-in-out infinite; }
.fc2 { top: 22%; right: 0%;  animation: float2 6.2s ease-in-out infinite; }
.fc3 { top: 50%; left: 0%;   animation: float3 5.8s ease-in-out infinite; }
.fc4 { bottom: 18%; right: 3%; animation: float4 6.5s ease-in-out infinite; }
.fc5 { bottom: 2%;  left: 15%; animation: float1 5.2s 0.8s ease-in-out infinite; }

/* Card color per service */
.fc-clr-faxineira   { background: rgba(99,102,241,0.25); }
.fc-clr-chef        { background: rgba(249,115,22,0.25); }
.fc-clr-jardineiro  { background: rgba(16,185,129,0.25); }
.fc-clr-marido      { background: rgba(239,68,68,0.25); }
.fc-clr-mecanico    { background: rgba(29,78,216,0.25); }

/* ============================================================
   9. SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}

.service-card {
  background: var(--surface-0);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-5) var(--sp-6);
  text-align: center;
  cursor: pointer;
  border: 2px solid var(--border-subtle);
  transition: all var(--t-slow);
  display: block;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--t-base);
  border-radius: calc(var(--r-xl) - 2px);
}

/* Gradiente uniforme — cor da marca */
.service-card::before { background: linear-gradient(145deg, rgba(29,78,216,0.07), rgba(29,78,216,0.02)); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
}

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

.service-card:hover { border-color: rgba(29,78,216,0.35); }

.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  font-size: 28px;
  transition: transform var(--t-spring);
  position: relative;
}

.service-card:hover .service-icon-wrap { transform: scale(1.1) rotate(-5deg); }

/* Service icon colors — uniforme (azul marca) */
.sic-faxineira,
.sic-chef,
.sic-jardineiro,
.sic-marido,
.sic-mecanico { background: rgba(29,78,216,0.12); color: #1D4ED8; }

.service-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.2px;
  position: relative;
}

.service-card p {
  font-size: 12.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: var(--sp-4);
  position: relative;
}

.service-from {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--r-full);
  position: relative;
}

.sf-faxineira,
.sf-chef,
.sf-jardineiro,
.sf-marido,
.sf-mecanico { background: rgba(29,78,216,0.1); color: #1D4ED8; }

/* Service arrow indicator */
.service-arrow {
  position: absolute;
  bottom: var(--sp-4);
  right: var(--sp-4);
  width: 28px;
  height: 28px;
  background: var(--border-subtle);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-tertiary);
  transition: all var(--t-base);
}

.service-card:hover .service-arrow {
  background: var(--primary);
  color: #fff;
  transform: rotate(-45deg);
}

/* ============================================================
   10. HOW IT WORKS
   ============================================================ */
.how-section { background: var(--surface-0); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  position: relative;
  padding-top: var(--sp-4);
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg,
    var(--border-subtle) 0%,
    var(--border-default) 20%,
    var(--primary) 50%,
    var(--border-default) 80%,
    var(--border-subtle) 100%);
  z-index: 0;
}

.step {
  text-align: center;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.5s ease-out both;
}

.step:nth-child(2) { animation-delay: 0.1s; }
.step:nth-child(3) { animation-delay: 0.2s; }
.step:nth-child(4) { animation-delay: 0.3s; }

.step-num-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--sp-5);
  position: relative;
}

.step-num {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-500));
  color: #fff;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  border: 4px solid var(--surface-0);
  box-shadow: var(--sh-brand), var(--sh-sm);
  transition: transform var(--t-spring);
}

.step:hover .step-num { transform: scale(1.1) rotate(-5deg); }

.step-icon {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: var(--accent);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #fff;
  border: 2px solid var(--surface-0);
}

.step h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.2px;
}

.step p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================================
   11. STATS SECTION
   ============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--brand-900) 0%, var(--n-950) 100%);
  padding: var(--sp-16) 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 80% at 80% 50%, rgba(29,78,216,0.3), transparent),
    radial-gradient(ellipse 30% 60% at 20% 50%, rgba(245,158,11,0.1), transparent);
}

.stats-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  text-align: center;
}

.stat-item { padding: var(--sp-4); }

.stat-num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--amber-400);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.stat-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: auto;
}

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.testimonial-card {
  background: var(--surface-0);
  border-radius: var(--r-xl);
  padding: var(--sp-7);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-subtle);
  transition: all var(--t-base);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-6);
  font-size: 72px;
  font-family: Georgia, serif;
  color: var(--primary-light);
  line-height: 1;
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--border-default);
}

.t-stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: var(--sp-4);
  display: flex;
  gap: 2px;
}

.t-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: var(--sp-6);
  font-style: italic;
}

.t-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.t-author img {
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 2px solid var(--border-default);
}

.t-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.t-author span {
  font-size: 12px;
  color: var(--text-tertiary);
}

/* ============================================================
   13. CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-600) 100%);
  padding: var(--sp-20) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle 600px at 70% 50%, rgba(255,255,255,0.05), transparent),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content { position: relative; z-index: 1; }

.cta-section h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: var(--sp-4);
}

.cta-section p {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--sp-10);
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ============================================================
   14. FOOTER
   ============================================================ */
footer {
  background: var(--n-950);
  color: rgba(255,255,255,0.6);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12);
  margin-bottom: var(--sp-12);
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: var(--sp-4);
  display: flex;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 280px;
  color: rgba(255,255,255,0.5);
}

.social-links {
  display: flex;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  transition: all var(--t-base);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: var(--sp-5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: var(--sp-3); }
.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
}
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: var(--r-full);
  transition: width var(--t-base);
  flex-shrink: 0;
}
.footer-col ul li a:hover::before { width: 8px; }

.footer-bottom {
  padding-top: var(--sp-8);
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--t-fast);
}
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   15. PAGE HERO (sub-pages)
   ============================================================ */
.page-hero {
  background: var(--surface-0);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--sp-10) 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-tertiary);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 600;
  transition: opacity var(--t-fast);
}
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb i { font-size: 9px; color: var(--text-tertiary); }

.page-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.page-hero-title {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.page-hero-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.phi-faxineira,
.phi-chef,
.phi-jardineiro,
.phi-marido,
.phi-mecanico,
.phi-default    { background: var(--primary-light); color: var(--primary); }

.page-hero-title h1 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.page-hero-title p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 3px;
}

/* ============================================================
   16. FILTER PILLS
   ============================================================ */
.filter-bar {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
  padding: var(--sp-4) 0;
}

.filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: var(--r-full);
  font-size: 13.5px;
  font-weight: 600;
  border: 2px solid var(--border-default);
  background: var(--surface-0);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
}

.filter-pill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.filter-pill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: var(--sh-brand);
}

.filter-pill i { font-size: 12px; }

/* ============================================================
   17. PROFESSIONALS CAROUSEL
   ============================================================ */
.carousel-section { padding: var(--sp-8) 0 var(--sp-12); }

.carousel-outer {
  position: relative;
  margin: 0 -8px;
  padding: var(--sp-2) 52px;
}

.carousel-wrapper { overflow: hidden; }

.carousel-track {
  display: flex;
  gap: var(--sp-5);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: var(--surface-0);
  border: 2px solid var(--border-default);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: var(--sh-md);
  transition: all var(--t-base);
  font-size: 14px;
  color: var(--text-primary);
}

.carousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--sh-brand);
  transform: translateY(-50%) scale(1.05);
}

/* carousel buttons never disabled (infinite loop) */

.carousel-btn.prev { left: 0; }
.carousel-btn.next { right: 0; }

/* ============================================================
   18. PROFESSIONAL CARD
   ============================================================ */
.pro-card {
  background: var(--surface-0);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  border: 2px solid var(--border-subtle);
  transition: all var(--t-slow);
  flex: 0 0 320px;
  width: 320px;
  cursor: pointer;
  position: relative;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
}

.pro-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: calc(var(--r-xl) - 2px);
  box-shadow: inset 0 0 0 2px var(--primary);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}

.pro-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg);
  border-color: transparent;
}
.pro-card:hover::after { opacity: 1; }

.pro-photo-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--surface-2);
}

.pro-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transition: transform 0.5s ease;
}

.pro-card:hover .pro-photo-wrap img { transform: scale(1.06); }

/* Gradient overlay for photo */
.pro-photo-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(15,23,42,0.6), transparent);
}

.badge-verified {
  position: absolute;
  bottom: var(--sp-3);
  left: var(--sp-3);
  background: var(--success);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.badge-top {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  background: linear-gradient(135deg, var(--accent), var(--amber-400));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--sh-accent);
  z-index: 2;
}

.pro-info {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pro-name {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 2px;
  letter-spacing: -0.3px;
}

.pro-specialty {
  font-size: 12.5px;
  color: var(--text-tertiary);
  margin-bottom: var(--sp-3);
}

.pro-rating {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}

.stars { color: var(--accent); font-size: 12px; letter-spacing: 1px; }
.rating-num { font-size: 14px; font-weight: 800; }
.reviews-count { font-size: 12px; color: var(--text-tertiary); }

.pro-bio {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

.pro-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--sp-4);
  font-size: 13px;
}

.pro-distance {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
  font-weight: 500;
}

.pro-distance i { color: var(--primary); }

.pro-price {
  font-size: 17px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.3px;
}
.pro-price small { font-size: 11px; font-weight: 500; color: var(--text-tertiary); }

.btn-ver {
  width: 100%;
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  color: #fff;
  padding: 12px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  margin-top: auto;
  transition: all var(--t-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  box-shadow: var(--sh-brand);
}

.btn-ver:hover {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-700));
  box-shadow: 0 12px 28px rgba(29,78,216,0.4);
  transform: translateY(-1px);
}

/* ============================================================
   19. INFO STRIP
   ============================================================ */
.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-12);
  padding: var(--sp-8);
  background: var(--surface-0);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-subtle);
}

.info-strip-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.info-strip-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-light);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  color: var(--primary);
}

.info-strip-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-strip-item span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ============================================================
   19b. PROFISSIONAIS PAGE — REDESIGN
   ============================================================ */

/* Pro Hero */
.pro-hero {
  background: var(--surface-0);
  border-bottom: 1px solid var(--border-subtle);
  padding: var(--sp-8) 0 var(--sp-10);
}

.pro-hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--t-fast);
}
.back-link:hover { color: var(--primary); }
.back-link i { font-size: 11px; }

.pro-hero-badge {
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: var(--r-full);
  letter-spacing: 0.3px;
}

.pro-hero-main {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.pro-hero-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.pro-hero-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
}

.pro-hero-copy h1 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.pro-hero-desc {
  font-size: 15px;
  color: var(--text-secondary);
}

/* phi-* for pro-hero-icon-wrap */
.pro-hero-icon-wrap.phi-faxineira,
.pro-hero-icon-wrap.phi-chef,
.pro-hero-icon-wrap.phi-jardineiro,
.pro-hero-icon-wrap.phi-marido,
.pro-hero-icon-wrap.phi-mecanico { background: var(--primary-light); color: var(--primary); }
.pro-hero-icon-wrap.phi-default    { background: var(--primary-light);    color: var(--primary); }

/* Pro Main Content */
.pro-main { padding: var(--sp-10) 0 0; }

/* Filter Row */
.pro-filter-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface-0);
  border-radius: var(--r-xl);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--sh-xs);
}

.pro-filter-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.pro-filters {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.pro-filter-sep {
  width: 1px;
  height: 24px;
  background: var(--border-default);
  margin: 0 var(--sp-2);
  flex-shrink: 0;
}

.fpill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border-default);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}

.fpill:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.fpill.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.fpill i { font-size: 11px; }

/* Carousel Section */
.pro-carousel-section {
  position: relative;
  margin: 0;
  padding: 0;
}

.pcarousel-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--sp-4) 0 var(--sp-6);
}
.pcarousel-wrapper::-webkit-scrollbar { display: none; }
.pcarousel-wrapper:active { cursor: grabbing; }

.pcarousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.pcarousel-btn {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--surface-0);
  border: 2px solid var(--border-default);
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--t-base);
  font-size: 14px;
  color: var(--text-primary);
  flex-shrink: 0;
  z-index: 5;
}

.pcarousel-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: var(--sh-brand);
  transform: scale(1.08);
}

/* Carousel hint */
.carousel-scroll-hint {
  text-align: center;
  font-size: 12.5px;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: var(--sp-12);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-subtle);
}
.carousel-scroll-hint i { color: var(--primary); }

/* Trust Strip */
.pro-trust-strip {
  background: var(--surface-0);
  border-top: 1px solid var(--border-subtle);
  padding: var(--sp-10) 0;
  margin-top: var(--sp-4);
}

.pro-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.pro-trust-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.pro-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ti-green  { background: rgba(16,185,129,0.12);  color: #10B981; }
.ti-blue   { background: rgba(59,130,246,0.12);   color: #3B82F6; }
.ti-purple { background: rgba(139,92,246,0.12);   color: #8B5CF6; }

.pro-trust-copy strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.pro-trust-copy span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .pro-carousel-section { margin: 0; }
}

@media (max-width: 768px) {
  .pro-trust-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .pro-filter-row { gap: var(--sp-2); padding: var(--sp-3) var(--sp-4); }
  .pro-filter-sep { display: none; }
  .pro-carousel-section { margin: 0; }
  .pro-hero-copy h1 { font-size: 24px; }
  .pro-hero-icon-wrap { width: 56px; height: 56px; font-size: 22px; }
}

@media (max-width: 480px) {
  .pro-hero-nav { flex-direction: column; align-items: flex-start; gap: var(--sp-3); }
  .pro-filter-row { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   20. SCHEDULING LAYOUT
   ============================================================ */
.sched-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-8);
  padding: var(--sp-10) 0 var(--sp-20);
  align-items: start;
}

/* ============================================================
   21. STEP PROGRESS BAR
   ============================================================ */
.step-bar {
  display: flex;
  align-items: center;
  margin-bottom: var(--sp-8);
  background: var(--surface-0);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  box-shadow: var(--sh-xs);
  border: 1px solid var(--border-subtle);
}

.sbar-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-tertiary);
  white-space: nowrap;
  transition: color var(--t-base);
}

.sbar-item.active { color: var(--primary); }
.sbar-item.done   { color: var(--success); }

.sbar-dot {
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  border: 2px solid var(--border-default);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  background: var(--surface-0);
  flex-shrink: 0;
  transition: all var(--t-spring);
}

.sbar-item.active .sbar-dot {
  border-color: var(--primary);
  background: var(--primary);
  color: #fff;
  box-shadow: var(--sh-brand);
  transform: scale(1.1);
}

.sbar-item.done .sbar-dot {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}

.sbar-line {
  flex: 1;
  height: 3px;
  background: var(--border-default);
  margin: 0 var(--sp-4);
  border-radius: var(--r-full);
  min-width: 24px;
  position: relative;
  overflow: hidden;
}

.sbar-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--success);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: var(--r-full);
  transition: transform 0.4s ease;
}

.sbar-line.done::after { transform: scaleX(1); }

/* ============================================================
   22. STEP PANELS
   ============================================================ */
.step-panel {
  display: none;
  background: var(--surface-0);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  box-shadow: var(--sh-sm);
  border: 1px solid var(--border-subtle);
  animation: fadeIn 0.25s ease-out;
}

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

.panel-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  letter-spacing: -0.3px;
}

.panel-title-icon {
  width: 38px;
  height: 38px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* ============================================================
   23. CALENDAR
   ============================================================ */
.calendar { user-select: none; }

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
}

.cal-month-year {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.3px;
}

.cal-nav {
  width: 36px;
  height: 36px;
  border: 2px solid var(--border-default);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 13px;
  transition: all var(--t-base);
  background: var(--surface-0);
}

.cal-nav:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: scale(1.05);
}

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: var(--sp-2);
}

.cal-weekday {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-tertiary);
  padding: var(--sp-2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  transition: all var(--t-base);
  border: 2px solid transparent;
  position: relative;
  min-height: 44px; /* touch target WCAG */
}

.cal-day:not(.disabled):not(.empty) { cursor: pointer; }

.cal-day:not(.disabled):not(.empty):hover {
  background: var(--primary-light);
  color: var(--primary);
  border-color: var(--brand-200);
}

.cal-day.today {
  font-weight: 900;
  color: var(--primary);
}

.cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: var(--r-full);
}

.cal-day.sel {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600)) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: var(--sh-brand);
  transform: scale(1.08);
}

.cal-day.sel.today::after { background: rgba(255,255,255,0.7); }

.cal-day.disabled {
  color: var(--border-default);
  cursor: not-allowed;
}
.cal-day.empty { cursor: default; }

/* ============================================================
   24. TIME SLOTS
   ============================================================ */
.slots-section {
  margin-top: var(--sp-8);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-subtle);
  animation: fadeUp 0.3s ease-out both;
}

.slots-label {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  letter-spacing: -0.2px;
}

.slots-period { margin-bottom: var(--sp-5); }

.period-title {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: var(--sp-3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.period-title i { font-size: 12px; }

.slots-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.time-slot {
  min-height: 44px; /* touch target */
  padding: 9px 16px;
  border: 2px solid var(--border-default);
  border-radius: var(--r-md);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--surface-0);
  cursor: pointer;
  transition: all var(--t-base);
  letter-spacing: -0.2px;
}

.time-slot:not(.unavail):hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
  transform: translateY(-1px);
}

.time-slot.sel {
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--sh-brand);
  transform: translateY(-1px);
}

.time-slot.unavail {
  background: var(--surface-2);
  color: var(--border-strong);
  text-decoration: line-through;
  cursor: not-allowed;
  opacity: 0.6;
}

/* ============================================================
   25. FORMS
   ============================================================ */
.form-group { margin-bottom: var(--sp-5); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }

label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
  letter-spacing: -0.1px;
}

label span.req {
  color: var(--error);
  margin-left: 2px;
}

.input-wrap {
  position: relative;
}

.input-wrap > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  font-size: 14px;
  pointer-events: none;
  transition: color var(--t-fast);
}

.input-wrap:focus-within > i { color: var(--primary); }
.input-wrap input,
.input-wrap select { padding-left: 42px !important; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--border-default);
  border-radius: var(--r-md);
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--surface-0);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  outline: none;
  min-height: 48px; /* touch target */
}

input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,78,216,0.1);
  background: var(--surface-0);
}

input::placeholder, textarea::placeholder { color: var(--text-tertiary); font-weight: 400; }

textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
select { appearance: none; cursor: pointer; }

.input-error {
  font-size: 12px;
  color: var(--error);
  margin-top: 5px;
  display: none;
  align-items: center;
  gap: 5px;
}

.form-group.has-error input,
.form-group.has-error textarea { border-color: var(--error); }

.form-group.has-error .input-error { display: flex; }

.btn-next {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  color: #fff;
  padding: 14px var(--sp-7);
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 700;
  transition: all var(--t-base);
  box-shadow: var(--sh-brand);
  margin-top: var(--sp-6);
}

.btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(29,78,216,0.35);
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--surface-0);
  border: 2px solid var(--border-default);
  color: var(--text-secondary);
  padding: 12px var(--sp-5);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--t-base);
  margin-top: var(--sp-6);
}

.btn-back:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.step-nav {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  align-items: center;
}

/* ============================================================
   26. BOOKING SIDEBAR
   ============================================================ */
.booking-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--surface-0);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border-subtle);
  margin-bottom: var(--sp-4);
}

.sidebar-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-subtle);
  letter-spacing: -0.2px;
}

.pro-summary {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--border-subtle);
}

.pro-summary img {
  width: 56px;
  height: 56px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 3px solid var(--primary-light);
  flex-shrink: 0;
}

.pro-sum-name {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 3px;
  letter-spacing: -0.2px;
}

.pro-sum-stars {
  color: var(--accent);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.booking-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-subtle);
}

.booking-row:last-of-type { border-bottom: none; }

.blbl {
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 13px;
}

.blbl i { color: var(--primary); font-size: 13px; width: 16px; }

.bval { font-weight: 700; font-size: 13px; text-align: right; }
.bval.placeholder { color: var(--text-tertiary); font-style: italic; font-weight: 400; }

.price-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 2px solid var(--border-default);
}

.total-lbl {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
}

.total-val {
  font-size: 28px;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -1px;
}

.btn-agendar {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--amber-400));
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: var(--r-lg);
  font-size: 16px;
  font-weight: 800;
  margin-top: var(--sp-5);
  transition: all var(--t-base);
  box-shadow: var(--sh-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  letter-spacing: -0.2px;
  cursor: pointer;
}

.btn-agendar:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  box-shadow: 0 16px 36px rgba(245,158,11,0.42);
  transform: translateY(-2px);
}

.trust-badges {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--border-subtle);
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 12.5px;
  color: var(--text-secondary);
}

.trust-badges i { color: var(--success); font-size: 12px; }

/* ============================================================
   27. PAYMENT PAGE
   ============================================================ */
.payment-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-8);
  padding: var(--sp-10) 0 var(--sp-20);
  align-items: start;
}

.payment-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.pay-option {
  border: 2px solid var(--border-default);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-5);
  cursor: pointer;
  transition: all var(--t-base);
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--surface-0);
}

.pay-option::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-light);
  opacity: 0;
  transition: opacity var(--t-base);
}

.pay-option:hover { border-color: var(--primary); }
.pay-option:hover::before { opacity: 1; }

.pay-option.active {
  border-color: var(--primary);
  box-shadow: var(--sh-brand);
}
.pay-option.active::before { opacity: 1; }

.pay-option.active::after {
  content: '\f058';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  font-size: 16px;
  color: var(--primary);
}

.pay-icon {
  position: relative;
  font-size: 32px;
  margin-bottom: var(--sp-3);
  display: block;
  transition: transform var(--t-spring);
}

.pay-option:hover .pay-icon,
.pay-option.active .pay-icon { transform: scale(1.1); }

.pay-option h4 {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: var(--sp-1);
  position: relative;
}

.pay-option p {
  font-size: 12.5px;
  color: var(--text-secondary);
  position: relative;
}

.pay-badge {
  display: inline-block;
  background: var(--success);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--r-full);
  margin-top: var(--sp-2);
  position: relative;
}

.pix-panel,
.card-panel { display: none; }
.pix-panel.active,
.card-panel.active { display: block; animation: fadeUp 0.3s ease-out; }

.pix-box {
  background: var(--surface-1);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  text-align: center;
  border: 1px solid var(--border-subtle);
}

.pix-qr-wrap {
  width: 216px;
  height: 216px;
  background: #fff;
  border: 2px solid var(--border-default);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-5);
  padding: 8px;
  position: relative;
  overflow: hidden;
}

.pix-qr-wrap img,
.pix-qr-wrap canvas {
  display: block;
  width: 200px !important;
  height: 200px !important;
}

.pix-qr-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(29,78,216,0.04), transparent);
}

.pix-copy-key {
  background: var(--surface-0);
  border: 2px solid var(--border-default);
  border-radius: var(--r-md);
  padding: var(--sp-4);
  font-size: 11.5px;
  font-family: 'Courier New', monospace;
  color: var(--text-secondary);
  word-break: break-all;
  margin-bottom: var(--sp-4);
  cursor: pointer;
  transition: border-color var(--t-fast);
  text-align: left;
  line-height: 1.5;
}

.pix-copy-key:hover { border-color: var(--primary); }

.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: linear-gradient(135deg, var(--brand-700), var(--brand-600));
  color: #fff;
  padding: 11px 24px;
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--t-base);
  box-shadow: var(--sh-brand);
  cursor: pointer;
}

.btn-copy:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(29,78,216,0.35);
}

/* ============================================================
   28. ORDER SUMMARY SIDEBAR
   ============================================================ */
.order-summary {
  background: var(--surface-0);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  box-shadow: var(--sh-md);
  border: 1px solid var(--border-subtle);
  position: sticky;
  top: 100px;
}

.os-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border-subtle);
}

.os-pro {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-5);
  border-bottom: 1px solid var(--border-subtle);
}

.os-pro img {
  width: 52px;
  height: 52px;
  border-radius: var(--r-full);
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.os-pro-name { font-size: 14px; font-weight: 800; letter-spacing: -0.2px; }
.os-pro-stars { color: var(--accent); font-size: 12px; margin-top: 2px; }

.os-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 13.5px;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-subtle);
  gap: var(--sp-4);
}
.os-row:last-child { border-bottom: none; }
.olbl { color: var(--text-secondary); flex-shrink: 0; }
.oval { font-weight: 700; text-align: right; }

.os-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--sp-5);
  padding-top: var(--sp-5);
  border-top: 2px solid var(--border-default);
}
.tlbl { font-size: 14px; font-weight: 700; }
.tval { font-size: 26px; font-weight: 900; color: var(--primary); letter-spacing: -1px; }

.btn-confirm {
  width: 100%;
  background: linear-gradient(135deg, var(--success), #059669);
  color: #fff;
  padding: 15px;
  border-radius: var(--r-lg);
  font-size: 16px;
  font-weight: 800;
  margin-top: var(--sp-5);
  box-shadow: 0 8px 24px rgba(16,185,129,0.3);
  cursor: pointer;
  transition: all var(--t-base);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
}

.btn-confirm:hover {
  box-shadow: 0 16px 36px rgba(16,185,129,0.4);
  transform: translateY(-2px);
}

.security-note {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
  padding: var(--sp-4);
  background: var(--success-light);
  border-radius: var(--r-md);
  font-size: 12px;
  color: #065F46;
  line-height: 1.5;
}
.security-note i { font-size: 14px; margin-top: 1px; flex-shrink: 0; }

/* ============================================================
   29. SUCCESS / CONFIRMAÇÃO
   ============================================================ */
.success-wrap {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-20) var(--sp-6);
}

.success-card {
  background: var(--surface-0);
  border-radius: var(--r-2xl);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  box-shadow: var(--sh-xl);
  max-width: 520px;
  width: 100%;
  border: 1px solid var(--border-subtle);
}

.success-icon {
  width: 96px;
  height: 96px;
  background: var(--success-light);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  font-size: 44px;
  color: var(--success);
  animation: successPop 0.6s var(--t-spring) both;
}

.success-card h1 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.5px;
}

.success-card > p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: var(--sp-8);
}

.booking-code {
  background: var(--primary-light);
  border: 2px dashed var(--brand-200);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  font-size: 22px;
  font-weight: 900;
  font-family: 'Courier New', monospace;
  color: var(--primary);
  letter-spacing: 4px;
  margin-bottom: var(--sp-8);
}

.success-actions {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}

.success-perks {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--border-subtle);
}

.success-perk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: 13px;
  color: var(--text-secondary);
}
.success-perk i { color: var(--success); }

/* ============================================================
   30. TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: var(--sp-6);
  right: var(--sp-6);
  background: var(--n-900);
  color: #fff;
  padding: 14px 20px;
  border-radius: var(--r-lg);
  font-size: 14px;
  font-weight: 600;
  z-index: 9999;
  transform: translateY(80px) scale(0.9);
  opacity: 0;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: var(--sh-xl);
  max-width: 340px;
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  border: 1px solid rgba(255,255,255,0.1);
}

.toast.show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.toast i { color: var(--accent); font-size: 16px; flex-shrink: 0; }

/* ============================================================
   31. RESPONSIVE — Mobile-first
   ============================================================ */

/* Tablet (≤ 1200px) */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
  }
  .hero-visual { display: none; }
  .hero-stats { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
}

/* Laptop (≤ 1024px) */
@media (max-width: 1024px) {
  .sched-layout   { grid-template-columns: 1fr; }
  .payment-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .order-summary   { position: static; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .info-strip { grid-template-columns: 1fr; gap: var(--sp-4); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Tablet (≤ 768px) */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .header-actions .btn-ghost { display: none; }
  .hamburger { display: flex; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }

  .service-card { padding: var(--sp-6) var(--sp-4) var(--sp-5); }

  .payment-methods { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }

  .carousel-outer { padding: var(--sp-2) 40px; }
  .pro-card { flex: 0 0 290px; width: 290px; }

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

  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .footer-brand p { max-width: none; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-3);
  }

  .step-bar { padding: var(--sp-4); gap: 0; }
  .sbar-item span { display: none; }
  .sbar-line { margin: 0 var(--sp-2); min-width: 16px; }

  .step-panel { padding: var(--sp-5) var(--sp-4); }

  .sidebar-card { padding: var(--sp-5); }

  .cta-actions { flex-direction: column; align-items: center; }

  .proximity-bar { font-size: 11.5px; padding: 8px var(--sp-8); }
  .proximity-bar .close-bar { display: none; }
}

/* Mobile (≤ 480px) */
@media (max-width: 480px) {
  .container { padding: 0 var(--sp-4); }

  .services-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-3);
  }

  .service-card {
    display: flex;
    align-items: center;
    text-align: left;
    gap: var(--sp-4);
    padding: var(--sp-4) var(--sp-5);
  }

  .service-icon-wrap { margin: 0; flex-shrink: 0; width: 56px; height: 56px; }
  .service-card h3 { font-size: 15px; }
  .service-card p { font-size: 12.5px; margin-bottom: var(--sp-2); }
  .service-from { display: none; }
  .service-arrow { position: static; margin-left: auto; flex-shrink: 0; }

  .carousel-outer { padding: var(--sp-2) 32px; margin: 0 calc(-1 * var(--sp-4)); }
  .pro-card { flex: 0 0 270px; width: 270px; }

  .hero h1 { letter-spacing: -1px; }

  .hero-stats { gap: var(--sp-5); }
  .hero-stat strong { font-size: 20px; }

  .page-hero-title h1 { font-size: 20px; }
  .page-hero-icon { width: 46px; height: 46px; font-size: 18px; }

  .success-card { padding: var(--sp-8) var(--sp-5); }
  .booking-code { font-size: 17px; letter-spacing: 2px; }

  .toast { left: var(--sp-4); right: var(--sp-4); }

  .cal-day { font-size: 13px; min-height: 40px; }

  .time-slot { padding: 8px 12px; font-size: 13px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }
}

/* Very small (≤ 360px) */
@media (max-width: 360px) {
  .services-grid { gap: var(--sp-2); }
  .service-icon-wrap { width: 48px; height: 48px; font-size: 20px; }
  .step-panel { padding: var(--sp-4) var(--sp-3); }
}
