/* ==========================================================================
   ELOARTECH CLIMATIZAÇÃO E REFRIGERAÇÃO - DESIGN SYSTEM & MOBILE-FIRST CSS
   Padrão 2026: 100% Mobile-First, Core Web Vitals (LCP/INP/CLS) & Alta Conversão
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & VARIÁVEIS CSS
   -------------------------------------------------------------------------- */
:root {
  /* Cores Principais (Identidade EloarTech) */
  --color-cyan-glow: #00B4D8;
  --color-cyan-primary: #00A8FF;
  --color-cyan-hover: #38BDF8;
  --color-blue-deep: #0284C7;
  --color-blue-darker: #0369A1;

  /* Detalhes Quentes (Arco do Floco de Neve) */
  --color-orange-warm: #FF7A00;
  --color-yellow-warm: #FFB800;

  /* WhatsApp & Conversão */
  --color-wpp: #25D366;
  --color-wpp-hover: #1EBE5D;
  --color-wpp-dark: #128C7E;

  /* Superfícies & Fundos Apple 100% Glassmorphism */
  --bg-header: rgba(4, 13, 26, 0.82);
  --bg-dark-hero: #020914;
  --bg-dark-card: rgba(255, 255, 255, 0.035);
  --bg-why-us: #020813;
  --bg-footer: #020710;
  --bg-light-services: #F8FAFC;
  --bg-card-light: #FFFFFF;

  /* Apple Glassmorphism Design Tokens (visionOS / macOS standard) */
  --glass-bg: rgba(255, 255, 255, 0.035);
  --glass-bg-hover: rgba(255, 255, 255, 0.065);
  --glass-border: 1px solid rgba(255, 255, 255, 0.09);
  --glass-border-hover: 1px solid rgba(0, 229, 255, 0.4);
  --glass-specular: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  --glass-specular-hover: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 0 25px rgba(0, 168, 255, 0.2);
  --glass-blur: blur(20px);
  --glass-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  --glass-pill-bg: rgba(255, 255, 255, 0.05);
  --glass-pill-border: 1px solid rgba(255, 255, 255, 0.12);

  /* Apple Luxury Gradients */
  --gradient-silver-title: linear-gradient(180deg, #FFFFFF 20%, #B4D5F8 100%);
  --gradient-cta-banner: linear-gradient(90deg, #0099FF 0%, #00C6FF 100%);
  --gradient-hero-bg: radial-gradient(circle at 80% 20%, rgba(0, 168, 255, 0.18) 0%, rgba(2, 9, 20, 0.98) 70%);
  --gradient-cyan-text: linear-gradient(135deg, #00E5FF 0%, #00A8FF 100%);

  /* Textos para Contraste em Seções Escuras e Seções Claras */
  --text-white: #FFFFFF;
  --text-light-sub: #94A3B8;
  --text-light-muted: #64748B;
  --text-dark-title: #0F172A;
  --text-dark-body: #334155;
  --text-dark-muted: #64748B;

  /* Bordas & Raios Apple */
  --radius-pill: 9999px;
  --radius-card: 20px;
  --radius-sm: 10px;
  --border-light: rgba(255, 255, 255, 0.09);
  --border-dark-cyan: rgba(0, 168, 255, 0.25);

  /* Sombras e Elevações */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-card: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 16px 36px rgba(0, 0, 0, 0.45);
  --shadow-card-hover: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 24px 48px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 168, 255, 0.2);
  --shadow-cyan-glow: 0 8px 24px rgba(0, 168, 255, 0.45);
  --shadow-wpp-glow: 0 8px 20px rgba(37, 211, 102, 0.35);

  /* Tipografia */
  --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Plus Jakarta Sans', sans-serif;

  /* Alturas e Espaçamentos Mobile */
  --header-height: 72px;
  --mobile-bar-height: 68px;
  --container-padding: 18px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark-hero);
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark-hero);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

svg {
  max-width: 100%;
}

/* React Icons Pattern (SVG System - 0% Emojis) */
.r-icon {
  display: inline-block;
  vertical-align: -0.18em;
  width: 1.15em;
  height: 1.15em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.r-icon-wpp {
  fill: currentColor !important;
  stroke: none !important;
}

.r-icon-fill {
  fill: currentColor !important;
  stroke: none !important;
}

.heading-icon {
  color: var(--color-cyan-primary);
  margin-right: 8px;
  vertical-align: -0.15em;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
  touch-action: manipulation;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid var(--color-cyan-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.text-center {
  text-align: center;
}

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

.text-cyan-glow {
  color: #00E5FF;
  text-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
}

/* --------------------------------------------------------------------------
   3. BOTÕES E COMPONENTES DE AÇÃO
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  min-height: 48px;
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.97);
}

.btn-cyan-pill {
  background: linear-gradient(135deg, #00C6FF 0%, #0077EE 50%, #004BC8 100%);
  color: #FFFFFF;
  font-size: 1.05rem;
  padding: 15px 32px;
  box-shadow: 0 8px 24px rgba(0, 119, 238, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cyan-pill:hover {
  background: linear-gradient(135deg, #38BDF8 0%, #00A8FF 50%, #0077EE 100%);
  box-shadow: 0 12px 32px rgba(0, 119, 238, 0.65);
  transform: translateY(-2px);
}

.btn-whatsapp-pill,
.btn-whatsapp-green-pill {
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 50%, #128C7E 100%);
  color: #FFFFFF;
  font-size: 1.05rem;
  padding: 15px 32px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}

.btn-whatsapp-pill:hover,
.btn-whatsapp-green-pill:hover {
  background: linear-gradient(135deg, #2EEB77 0%, #25D366 50%, #1FB357 100%);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.65);
  transform: translateY(-2px);
}

.btn-outline-pill {
  background: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}

.btn-outline-pill:hover {
  border-color: var(--color-cyan-primary);
  color: var(--color-cyan-primary);
  background: rgba(0, 168, 255, 0.08);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* --------------------------------------------------------------------------
   4. CABEÇALHO (HEADER) & MENU MOBILE
   -------------------------------------------------------------------------- */
.header {
  position: relative;
  width: 100%;
  height: var(--header-height);
  background-color: #040D1A;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 999;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 48px;
  max-height: 52px;
  width: auto;
  max-width: 195px;
  object-fit: contain;
  display: block;
}

.nav-desktop {
  display: none;
}

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

.header-btn {
  display: none;
}

.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(100%);
  display: none;
  width: 82%;
  max-width: 320px;
  height: 100%;
  height: 100dvh;
  background: #040D1A;
  z-index: 1001;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), display 0.3s allow-discrete;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.7);
  border-left: 1px solid rgba(0, 168, 255, 0.2);
}

.mobile-drawer.open {
  display: flex;
  transform: translateX(0);
}

@starting-style {
  .mobile-drawer.open {
    transform: translateX(100%);
  }
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.drawer-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-cyan-primary);
}

.drawer-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: var(--text-light-sub);
  line-height: 1;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.drawer-close:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.03);
}

.mobile-nav-link .r-icon {
  color: var(--color-cyan-primary);
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

.mobile-nav-link:active {
  background: rgba(0, 168, 255, 0.15);
  color: var(--color-cyan-primary);
}

.mobile-drawer-footer {
  margin-top: auto;
  padding-top: 20px;
  padding-bottom: 30px;
}

.mobile-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* --------------------------------------------------------------------------
   5. SEÇÃO HERO (MOBILE FIRST)
   -------------------------------------------------------------------------- */
/* --------------------------------------------------------------------------
   4. SEÇÃO HERO: VÍDEO DE FUNDO OPACO & APPLE GLASSMORPHISM
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  background-color: var(--bg-dark-hero);
  padding-top: calc(var(--header-height) + 24px);
  padding-bottom: 70px;
  overflow: hidden;
  min-height: 82vh;
  display: flex;
  align-items: center;
}

/* Vídeo de Fundo do Hero Nitidamente Visível */
.hero-video-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95; /* Nitidamente visível conforme solicitado */
  filter: brightness(0.92) contrast(1.05) saturate(1.1);
  display: block;
}

.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    /* Gradiente suave apenas na esquerda para garantir leitura do texto */
    linear-gradient(90deg, rgba(2, 9, 20, 0.8) 0%, rgba(2, 9, 20, 0.48) 45%, rgba(2, 9, 20, 0.12) 75%, transparent 100%),
    /* Transições suaves nas bordas superior e inferior */
    linear-gradient(180deg, rgba(2, 9, 20, 0.65) 0%, transparent 14%, transparent 82%, rgba(2, 9, 20, 0.92) 100%);
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  top: -80px;
  right: -50px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 168, 255, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-container {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 36px;
  max-width: 860px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-cyan-primary);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  background: rgba(0, 168, 255, 0.1);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0, 168, 255, 0.25);
  width: fit-content;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-cyan-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-cyan-primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
}

.hero-description {
  color: #E2E8F0;
  font-size: 1.02rem;
  line-height: 1.6;
  margin-bottom: 28px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.85);
}

.hero-description strong {
  color: #FFFFFF;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}

/* Wrapper que preserva a dimensão no layout do Hero sem provocar layout shifts */
.hero-wpp-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 56px;
}

@media (min-width: 768px) {
  .hero-buttons {
    flex-direction: row;
    width: fit-content;
  }
  .hero-wpp-wrapper {
    width: auto;
  }
}

/* --------------------------------------------------------------------------
   BOTÃO CTA PRINCIPAL DO HERO (WHATSAPP PREMIUM DE ALTA CONVERSÃO)
   -------------------------------------------------------------------------- */
.btn-hero-wpp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 50%, #128C7E 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  min-height: 56px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.25), inset 0 1px 1.5px rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-decoration: none;
  overflow: visible;
  white-space: nowrap;
  width: 100%;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.25s ease, 
              width 0.22s cubic-bezier(0.16, 1, 0.3, 1), 
              min-width 0.22s cubic-bezier(0.16, 1, 0.3, 1), 
              max-width 0.22s cubic-bezier(0.16, 1, 0.3, 1), 
              padding 0.22s cubic-bezier(0.16, 1, 0.3, 1), 
              border-radius 0.22s ease;
  will-change: transform;
}

@media (min-width: 768px) {
  .btn-hero-wpp {
    width: auto;
  }
}

.btn-hero-wpp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.65), 0 4px 14px rgba(0, 0, 0, 0.2), inset 0 1px 2px rgba(255, 255, 255, 0.7);
  color: #FFFFFF;
}

.btn-hero-wpp:hover .icon-wpp {
  transform: scale(1.08) rotate(-4deg);
}

.btn-hero-wpp:active {
  transform: translateY(1px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-hero-wpp .icon-wpp {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.25));
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-wpp-text {
  display: inline-block;
  opacity: 1;
  max-width: 650px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  transition: opacity 0.2s ease, max-width 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s ease;
  overflow: hidden;
  white-space: nowrap !important;
}

@media (max-width: 540px) {
  .btn-hero-wpp {
    padding: 14px 16px;
    font-size: clamp(0.74rem, 3.4vw, 0.92rem);
    gap: 8px;
    width: 100%;
    justify-content: center;
  }
  .btn-hero-wpp .icon-wpp {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
  }
  .hero-wpp-text {
    white-space: nowrap !important;
    line-height: 1.2;
    text-align: center;
  }
}

@media (max-width: 380px) {
  .btn-hero-wpp {
    padding: 13px 10px;
    font-size: clamp(0.7rem, 3.1vw, 0.78rem);
    gap: 6px;
  }
  .btn-hero-wpp .icon-wpp {
    width: 20px;
    height: 20px;
  }
  .hero-wpp-text {
    white-space: nowrap !important;
  }
}

/* FASE 1: MORPHING DO BOTÃO HERO EM BOLA NO PRÓPRIO LOCAL (suave) */
.btn-hero-wpp.is-morphing-to-ball {
  width: 58px !important;
  min-width: 58px !important;
  max-width: 58px !important;
  height: 58px !important;
  min-height: 58px !important;
  padding: 0 !important;
  border-radius: 50% !important;
  gap: 0 !important;
  margin: 0 auto !important;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.7), 0 0 0 2.5px rgba(255, 255, 255, 0.85);
}

.btn-hero-wpp.is-morphing-to-ball .hero-wpp-text {
  opacity: 0 !important;
  max-width: 0 !important;
  width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  white-space: nowrap !important;
  transform: scale(0.2) !important;
  pointer-events: none !important;
}

.btn-hero-wpp.is-morphing-to-ball .icon-wpp {
  transform: scale(1.18) !important;
  margin: 0 auto !important;
}

/* --------------------------------------------------------------------------
   AVATAR DE VOO GPU (INTERPOLAÇÃO SUAVE EM 60/120FPS COM ZERO REFLOW)
   -------------------------------------------------------------------------- */
.flying-wpp-avatar {
  position: fixed;
  top: 0;
  left: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 50%, #128C7E 100%);
  box-shadow: 0 14px 38px rgba(37, 211, 102, 0.85), 0 0 0 3px rgba(255, 255, 255, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  pointer-events: none;
  will-change: transform;
  transform-origin: center center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

@media (max-width: 640px) {
  .flying-wpp-avatar {
    width: 58px;
    height: 58px;
  }
}

/* --------------------------------------------------------------------------
   BOLINHA FLUTUANTE DE WHATSAPP (ALTA VISIBILIDADE & CONTRASTE EMOCIONANTE)
   -------------------------------------------------------------------------- */
.floating-wpp-orb {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 50%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  border: 2.5px solid #FFFFFF;
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.65), 0 4px 14px rgba(0, 0, 0, 0.45);
  cursor: pointer;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.6) translateY(20px);
  transition: opacity 0.24s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.25s ease;
  will-change: transform, opacity;
}

@media (max-width: 640px) {
  .floating-wpp-orb {
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: 18px;
    width: 58px;
    height: 58px;
  }
}

.floating-wpp-orb.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  animation: floatingWppPulse 3s ease-in-out infinite;
}

.floating-wpp-orb:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 18px 46px rgba(37, 211, 102, 0.85), 0 0 0 4px rgba(255, 255, 255, 0.7);
  color: #FFFFFF;
}

/* Pulso Radar da Bolinha Flutuante */
.floating-wpp-ping {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2.5px solid #25D366;
  opacity: 0.9;
  animation: wppPingRing 2.4s cubic-bezier(0, 0, 0.2, 1) infinite;
  pointer-events: none;
}

/* Tooltip do WhatsApp Flutuante */
.floating-wpp-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  background: rgba(2, 9, 20, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(37, 211, 102, 0.5);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-wpp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: rgba(2, 9, 20, 0.94);
  border-right: 1px solid rgba(37, 211, 102, 0.5);
  border-top: 1px solid rgba(37, 211, 102, 0.5);
}

.floating-wpp-orb:hover .floating-wpp-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes floatingWppPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6), 0 4px 14px rgba(0, 0, 0, 0.45);
  }
  50% {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 44px rgba(37, 211, 102, 0.85), 0 0 0 5px rgba(37, 211, 102, 0.25);
  }
}

@keyframes wppPingRing {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.48);
    opacity: 0;
  }
}


.hero-trust-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.badge-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 168, 255, 0.1);
  border: 1px solid rgba(0, 168, 255, 0.25);
  flex-shrink: 0;
}

.badge-text {
  font-size: 0.92rem;
  font-weight: 600;
  color: #FFFFFF;
}

.hero-visual {
  position: relative;
  width: 100%;
}

.hero-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(0, 168, 255, 0.3);
}

.hero-main-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.hero-floating-brand {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(4, 13, 26, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 168, 255, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.brand-floating-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-floating-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.1;
}

.brand-floating-text span {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--color-cyan-primary);
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   5.5 SEÇÃO ETAPAS DA INSTALAÇÃO: CARROSSEL MINIMALISTA AUTOPLAY (ZERO HUD)
   -------------------------------------------------------------------------- */
.steps-carousel-section {
  position: relative;
  background: radial-gradient(circle at 50% 20%, rgba(0, 168, 255, 0.12) 0%, transparent 60%),
              linear-gradient(180deg, #020914 0%, #030C19 50%, #020914 100%);
  padding: 65px 0 80px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.steps-showcase-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.brand-reveal-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-align: center;
  background: var(--gradient-silver-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.brand-reveal-subtitle {
  font-size: 1rem;
  line-height: 1.5;
  color: #94A3B8;
  text-align: center;
  max-width: 620px;
}

@media (min-width: 768px) {
  .brand-reveal-title {
    font-size: 2.65rem;
  }
}

/* Viewport Limpo e Sofisticado (Zero HUD) */
.steps-clean-viewport {
  position: relative;
  width: 100%;
  max-width: 960px;
  height: 520px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(0, 168, 255, 0.25);
  background: #030D1B;
}

@media (max-width: 768px) {
  .steps-clean-viewport {
    height: 420px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .steps-clean-viewport {
    height: 360px;
  }
}

.steps-carousel-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(0, 168, 255, 0.2) 0%, transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 1;
}

/* Slides com Transição Rápida, Ágil e Fluida */
.step-clean-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.015);
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  z-index: 2;
  pointer-events: none;
}

.step-clean-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  pointer-events: auto;
  z-index: 3;
}

.step-clean-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

/* Gradiente Atrás do Texto (Fusão Suave com o Fundo) */
.step-clean-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(2, 9, 20, 0.2) 0%,
    rgba(2, 9, 20, 0) 35%,
    rgba(2, 9, 20, 0.55) 65%,
    rgba(2, 9, 20, 0.92) 88%,
    #020914 100%
  );
  pointer-events: none;
  z-index: 4;
}

/* Informações da Etapa: Apenas Nome e Etapa */
.step-clean-info {
  position: absolute;
  bottom: 26px;
  left: 32px;
  right: 180px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}

@media (max-width: 768px) {
  .step-clean-info {
    bottom: 20px;
    left: 20px;
    right: 20px;
  }
}

.step-clean-tag {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--color-cyan-primary);
  text-transform: uppercase;
}

.step-clean-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

@media (max-width: 640px) {
  .step-clean-title {
    font-size: 1.15rem;
  }
}

/* Botões de Navegação Manual (Setas Discretas e Elegantes) */
.step-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(2, 9, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.step-nav-btn:hover {
  background: var(--color-cyan-primary);
  border-color: var(--color-cyan-primary);
  color: #020914;
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 0 16px rgba(0, 168, 255, 0.6);
}

.step-nav-btn.prev {
  left: 16px;
}

.step-nav-btn.next {
  right: 16px;
}

@media (max-width: 640px) {
  .step-nav-btn {
    width: 36px;
    height: 36px;
  }
  .step-nav-btn.prev {
    left: 8px;
  }
  .step-nav-btn.next {
    right: 8px;
  }
}

/* Indicador Minimalista Discreto de Posição (Clicável) */
.steps-clean-dots {
  position: absolute;
  bottom: 28px;
  right: 32px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .steps-clean-dots {
    bottom: 20px;
    right: 20px;
  }
}

.clean-dot {
  width: 18px;
  height: 18px;
  padding: 5px;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.clean-dot::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.clean-dot:hover::before {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.clean-dot.active::before {
  width: 22px;
  border-radius: 99px;
  background: var(--color-cyan-primary);
  box-shadow: 0 0 10px rgba(0, 168, 255, 0.7);
}

/* --------------------------------------------------------------------------
   6. SEÇÃO DE SERVIÇOS (NOSSOS SERVIÇOS - CLEAN MODERN LIGHT SYSTEM)
   -------------------------------------------------------------------------- */
.services-section {
  position: relative;
  background-color: #F8FAFC;
  color: var(--text-dark-title);
  padding-top: 70px;
  padding-bottom: 80px;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.section-header {
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--color-cyan-primary);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  color: var(--text-dark-title);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.section-subtitle {
  color: var(--text-dark-muted);
  font-size: 1.02rem;
  line-height: 1.6;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.mobile-scroll-hint {
  display: none;
}

/* --------------------------------------------------------------------------
   BENTO GRID ARQUITETURAL: CLEAN ELEVATED CARDS
   -------------------------------------------------------------------------- */
.services-bento-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 16px;
}

@media (min-width: 680px) {
  .services-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .services-bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 28px;
  }

  /* Linha 1: 2 Cards Nobres de Destaque (50% / 50%) */
  .service-card-featured {
    grid-column: span 3;
    padding: 36px 32px;
  }

  /* Linha 2: 3 Cards Equilibrados (33.3% / 33.3% / 33.3%) */
  .service-card:not(.service-card-featured) {
    grid-column: span 2;
    padding: 30px 26px;
  }
}

.service-card {
  position: relative;
  width: 100%;
  background: #FFFFFF;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 22px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.04), 0 2px 6px -1px rgba(0, 0, 0, 0.02);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.3s ease;
  overflow: hidden;
}

/* Barra Superior de Brilho Ciano ao Passar o Mouse */
.service-card-glow-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00A8FF, #00E5FF);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 255, 0.45);
  box-shadow: 0 22px 45px -10px rgba(0, 168, 255, 0.16), 0 4px 12px rgba(0, 0, 0, 0.04);
}

.service-card:hover .service-card-glow-bar {
  opacity: 1;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.service-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.12) 0%, rgba(0, 229, 255, 0.04) 100%);
  border: 1px solid rgba(0, 168, 255, 0.22);
  color: #0099FF;
  box-shadow: 0 2px 8px rgba(0, 168, 255, 0.08);
  transition: transform 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease;
  flex-shrink: 0;
}

.service-card:hover .service-icon-box {
  transform: scale(1.08) rotate(-2deg);
  background: linear-gradient(135deg, rgba(0, 168, 255, 0.2) 0%, rgba(0, 229, 255, 0.08) 100%);
  border-color: rgba(0, 168, 255, 0.45);
  box-shadow: 0 6px 16px rgba(0, 168, 255, 0.2);
}

.service-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  background: #F1F5F9;
  border: 1px solid #E2E8F0;
  color: #475569;
  letter-spacing: 0.03em;
  white-space: normal;
  max-width: 100%;
}

.service-badge.highlight-badge {
  background: rgba(0, 168, 255, 0.1);
  border-color: rgba(0, 168, 255, 0.3);
  color: #0284C7;
  font-weight: 800;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-dark-title);
  margin-bottom: 12px;
  letter-spacing: -0.015em;
}

.service-card-featured .service-card-title {
  font-size: 1.45rem;
}

.service-card-desc {
  font-size: 0.94rem;
  color: var(--text-dark-body);
  line-height: 1.65;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Micro-Tags Técnicas de Especificação */
.service-specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 22px;
  padding-top: 14px;
  border-top: 1px dashed #E2E8F0;
}

.service-spec-tag {
  font-size: 0.76rem;
  font-weight: 600;
  color: #334155;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-spec-tag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #00A8FF;
}

/* Botão de Ação Full-Width Sofisticado */
.service-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0284C7;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 12px 18px;
  border-radius: 12px;
  transition: all 0.22s ease;
}

.service-card-link svg {
  transition: transform 0.22s ease;
}

.service-card-link:hover {
  background: var(--color-cyan-primary);
  border-color: var(--color-cyan-primary);
  color: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 168, 255, 0.35);
  transform: translateY(-2px);
}

.service-card-link:hover svg {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   7. SEÇÃO SOBRE / GRANDE PORTE
   -------------------------------------------------------------------------- */
.why-us-section {
  background-color: var(--bg-why-us);
  padding-top: 55px;
  padding-bottom: 60px;
}

.why-us-container {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.why-us-visual {
  width: 100%;
}

.why-us-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(0, 168, 255, 0.25);
  background: #06152B;
}

.why-us-img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  transition: transform 0.4s ease;
}

.why-us-image-wrapper:hover .why-us-img {
  transform: scale(1.025);
}

.why-us-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 14, 29, 0) 50%, rgba(3, 14, 29, 0.85) 100%);
  pointer-events: none;
}

.why-us-proof-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(3, 14, 29, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 168, 255, 0.35);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.55);
}

.proof-badge-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0, 168, 255, 0.15);
  border: 1px solid rgba(0, 168, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proof-badge-text {
  display: flex;
  flex-direction: column;
}

.proof-badge-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.proof-badge-sub {
  font-size: 0.75rem;
  color: var(--text-light-muted);
  font-weight: 500;
}

.why-us-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-cyan-primary);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

.why-us-title {
  font-family: var(--font-heading);
  font-size: 2.15rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  background: var(--gradient-silver-title);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 16px;
}

.why-us-description {
  color: var(--text-light-sub);
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: var(--glass-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 20px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-item:hover {
  background: var(--glass-bg-hover);
  border-color: rgba(0, 168, 255, 0.35);
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 12px 28px rgba(0, 0, 0, 0.35);
}

.feature-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 168, 255, 0.12);
  border: 1.5px solid rgba(0, 168, 255, 0.35);
  flex-shrink: 0;
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.feature-sub {
  font-size: 0.88rem;
  color: var(--text-light-muted);
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   8. SEÇÃO FAQ (APPLE GLASSMORPHISM & RICH SNIPPETS)
   -------------------------------------------------------------------------- */
.faq-section {
  position: relative;
  background-color: #FFFFFF;
  color: var(--text-dark-title);
  padding-top: 70px;
  padding-bottom: 80px;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
  content-visibility: auto;
  contain-intrinsic-size: auto 600px;
}

.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
  position: relative;
  z-index: 2;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
  border-color: rgba(0, 168, 255, 0.35);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.faq-item[open] {
  background: #FFFFFF;
  border-color: rgba(0, 168, 255, 0.5);
  box-shadow: 0 8px 24px rgba(0, 168, 255, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark-title);
  cursor: pointer;
  list-style: none;
  min-height: 52px;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--color-cyan-primary);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-toggle-icon {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-cyan-primary);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--color-blue-deep);
}

.faq-answer {
  padding: 0 24px 24px 24px;
  font-size: 0.96rem;
  color: var(--text-dark-body);
  line-height: 1.65;
  border-top: 1px solid #F1F5F9;
  padding-top: 16px;
}

.faq-answer strong {
  color: var(--text-dark-title);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   9. SEÇÃO CTA BANNER: FULL-BLEED (PONTA A PONTA) LUXURY APPLE-LIKE UX
   Floco de Neve Font Awesome 6 Oficial com Animação Fluida
   -------------------------------------------------------------------------- */
.cta-banner-section.apple-cta-fullbleed {
  position: relative;
  width: 100%;
  background: radial-gradient(circle at 12% 45%, rgba(0, 168, 255, 0.22) 0%, transparent 55%),
              radial-gradient(circle at 88% 50%, rgba(0, 229, 255, 0.16) 0%, transparent 50%),
              linear-gradient(180deg, #030A18 0%, #020712 100%);
  padding: 65px 0 70px 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 168, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Hairline Especular Apple no Topo */
.apple-specular-hairline {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.5) 25%, rgba(255, 255, 255, 0.85) 50%, rgba(0, 168, 255, 0.5) 75%, transparent 100%);
  pointer-events: none;
  z-index: 3;
}

/* Iluminação Ambiente Suave */
.apple-ambient-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75vw;
  height: 260px;
  background: radial-gradient(ellipse at center, rgba(0, 168, 255, 0.15) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

/* Container e Vídeo de Background Reveal da Seção CTA (Substitui os flocos girando) */
.cta-video-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.cta-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.65;
  filter: saturate(1.15) brightness(0.9);
  pointer-events: none;
}

/* Camada de Gradiente Especular para Contraste Perfeito dos Textos e Botão */
.cta-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 85% 50%, rgba(3, 10, 24, 0.15) 0%, rgba(3, 10, 24, 0.65) 75%),
              linear-gradient(90deg, rgba(3, 10, 24, 0.95) 0%, rgba(3, 10, 24, 0.8) 48%, rgba(3, 10, 24, 0.45) 80%, rgba(3, 10, 24, 0.7) 100%);
  pointer-events: none;
}

/* Layout Interno do Container Ponta a Ponta */
.apple-cta-container {
  position: relative;
  z-index: 2;
}

.apple-cta-layout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Badge Apple com Ponto Pulsante e Micro Floco FA6 */
/* Tipografia Apple 2026 */
.apple-cta-title {
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  background: linear-gradient(180deg, #FFFFFF 20%, #B4D5F8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.apple-cta-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #94A3B8;
  max-width: 620px;
  margin-bottom: 16px;
}

/* Badges de Garantia Rápidas */
.apple-cta-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.apple-pill-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: #CBD5E1;
}

.apple-pill-feature svg {
  color: var(--color-cyan-primary);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Botão de Ação Apple WhatsApp com Brilho Especular */
.apple-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-apple-wpp {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #00C6FF 0%, #0077EE 50%, #004BC8 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  box-shadow: 0 14px 34px rgba(0, 119, 238, 0.45), 
              0 2px 6px rgba(0, 0, 0, 0.5), 
              inset 0 1px 1px rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.35);
  overflow: hidden;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  width: 100%;
  min-height: 54px;
  cursor: pointer;
}

.btn-apple-wpp:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 20px 42px rgba(0, 119, 238, 0.65), 
              0 4px 10px rgba(0, 0, 0, 0.4), 
              inset 0 1px 2px rgba(255, 255, 255, 0.7);
}

.btn-apple-wpp:active {
  transform: translateY(1px) scale(0.98);
}

.btn-apple-wpp .btn-arrow-right {
  transition: transform 0.25s ease;
}

.btn-apple-wpp:hover .btn-arrow-right {
  transform: translateX(4px);
}

/* Reflexo Especular Suave do Botão */
.btn-apple-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-20deg);
  transition: none;
  animation: appleBtnShine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes appleBtnShine {
  0%, 75% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

.apple-direct-call-text {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  text-align: center;
}

.apple-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 8px 16px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 9999px;
  color: #38BDF8;
  font-weight: 700;
  transition: all 0.2s ease;
  text-decoration: none;
  margin-top: 6px;
}

.apple-phone-link:hover,
.apple-phone-link:active {
  background: rgba(56, 189, 248, 0.18);
  border-color: #00E5FF;
  color: #FFFFFF;
}

/* Responsividade Desktop / Tablet */
@media (min-width: 768px) {
  .cta-banner-section.apple-cta-fullbleed {
    padding: 85px 0 90px 0;
  }

  .apple-cta-layout {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .apple-cta-text {
    flex: 1;
    max-width: 680px;
  }

  .apple-cta-title {
    font-size: 2.85rem;
  }

  .apple-cta-actions {
    flex-shrink: 0;
    align-items: center;
    min-width: 320px;
  }

  .btn-apple-wpp {
    width: auto;
    padding: 18px 40px;
    font-size: 1.1rem;
  }

  .cta-video-bg {
    opacity: 0.75;
  }
}

/* --------------------------------------------------------------------------
   10. RODAPÉ (FOOTER)
   -------------------------------------------------------------------------- */
.footer {
  background-color: var(--bg-footer);
  color: var(--text-light-sub);
  padding-top: 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  content-visibility: auto;
  contain-intrinsic-size: auto 320px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding-bottom: 30px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-brand img,
.footer-logo-img,
.footer-logo-link img {
  height: 52px;
  max-height: 58px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

.footer-nav {
  width: 100%;
}

.footer-links,
.footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links a,
.footer-nav-list li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 6px 10px;
  font-size: 0.90rem;
  font-weight: 600;
  color: var(--text-light-sub);
  text-decoration: none;
  border-radius: 8px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.footer-links a:hover,
.footer-nav-list li a:hover,
.footer-nav-list li a:active {
  color: var(--color-cyan-primary);
  background: rgba(255, 255, 255, 0.05);
}

.footer-social-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

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

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: var(--color-cyan-primary);
  border-color: var(--color-cyan-primary);
  transform: translateY(-2px);
}

.footer-tagline {
  color: var(--color-cyan-primary);
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-bottom {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  color: var(--text-light-muted);
}

/* --------------------------------------------------------------------------
   11. BARRA FIXA DE AÇÕES MOBILE (THUMB ZONE)
   -------------------------------------------------------------------------- */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: calc(var(--mobile-bar-height) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(4, 13, 26, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(0, 168, 255, 0.3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-left: 12px;
  padding-right: 12px;
  align-items: center;
  z-index: 998;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.4);
}

.mobile-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
  transition: transform 0.15s ease;
}

.mobile-action-btn:active {
  transform: scale(0.96);
}

.btn-call {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 50%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
}

/* --------------------------------------------------------------------------
   12. UTILITÁRIOS PARA SUBPÁGINAS, SILOS & BREADCRUMBS (SEO ARCHITECTURE)
   -------------------------------------------------------------------------- */
.breadcrumbs-nav {
  padding: 16px 0;
  font-size: 0.86rem;
  color: var(--text-light-muted);
}

.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.breadcrumbs-list a {
  color: var(--text-light-sub);
}

.breadcrumbs-list a:hover {
  color: var(--color-cyan-primary);
}

.breadcrumbs-separator {
  color: var(--text-light-muted);
  user-select: none;
}

.breadcrumbs-current {
  color: var(--color-cyan-primary);
  font-weight: 600;
}

/* Page Hero para Subpáginas */
.page-hero {
  background: var(--gradient-hero-bg);
  padding: 40px 0 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.page-hero-subtitle {
  color: var(--text-light-sub);
  font-size: 1.05rem;
  max-width: 780px;
  line-height: 1.6;
}

/* Seção de Conteúdo em Subpáginas (Light Clean System) */
.content-section {
  position: relative;
  background-color: var(--bg-light-services);
  color: var(--text-dark-title);
  padding: 60px 0;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.content-section-dark {
  background-color: #020813;
  color: #FFFFFF;
  padding: 60px 0;
}

.content-grid-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}

.detail-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-card);
  padding: 28px 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.28s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.28s ease;
}

.detail-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 255, 0.4);
  box-shadow: 0 12px 28px rgba(0, 168, 255, 0.12);
}

.detail-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text-dark-title);
}

.detail-card p {
  color: var(--text-dark-body);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 16px;
}

.internal-links-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-card);
  padding: 30px;
  margin-top: 48px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.internal-links-box h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text-dark-title);
  margin-bottom: 16px;
}

.internal-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.internal-link-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-pill);
  font-size: 0.88rem;
  font-weight: 600;
  color: #0284C7;
  transition: all 0.22s ease;
}

.internal-link-pill:hover {
  border-color: var(--color-cyan-primary);
  color: #FFFFFF;
  background: var(--color-cyan-primary);
  box-shadow: 0 4px 14px rgba(0, 168, 255, 0.25);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   13. RESPONSIVIDADE PROGRESSIVA (TABLETS & DESKTOPS)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  :root {
    --container-padding: 32px;
  }

  .hero-title {
    font-size: 2.85rem;
  }

  .hero-buttons {
    flex-direction: row;
    width: fit-content;
  }

  .btn-hero-wpp {
    width: auto;
  }

  .hero-trust-badges {
    flex-direction: row;
    gap: 24px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }



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

@media (min-width: 1024px) {
  :root {
    --header-height: 82px;
  }

  .mobile-sticky-bar {
    display: none;
  }

  body {
    padding-bottom: 0;
  }

  .header-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: none;
  }

  .nav-desktop {
    display: block;
    margin-left: auto;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
  }

  .nav-link {
    font-size: 0.96rem;
    font-weight: 600;
    color: var(--text-light-sub);
    position: relative;
    padding: 6px 0;
  }

  .nav-link:hover, .nav-link.active {
    color: #FFFFFF;
  }

  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-cyan-primary);
    border-radius: 2px;
    box-shadow: 0 0 10px var(--color-cyan-primary);
  }

  .header-btn {
    display: inline-flex;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 36px);
    padding-bottom: 95px;
    min-height: 88vh;
  }

  .hero-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 900px;
    gap: 0;
  }

  .hero-title {
    font-size: 3.6rem;
    line-height: 1.12;
    letter-spacing: -0.03em;
    max-width: 860px;
  }

  .hero-description {
    font-size: 1.12rem;
    max-width: 740px;
  }

  .mobile-scroll-hint {
    display: none;
  }

  .services-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    overflow: visible;
  }

  .service-card {
    flex: none;
    max-width: 100%;
  }

  .why-us-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 60px;
  }

  .why-us-img {
    height: 440px;
    object-position: center 20%;
  }

  .why-us-proof-badge {
    bottom: 20px;
    left: 20px;
    right: auto;
    max-width: calc(100% - 40px);
  }

  .why-us-title {
    font-size: 2.5rem;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-social-wrap {
    flex-direction: column;
    align-items: flex-end;
  }

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

/* --------------------------------------------------------------------------
   13. CARROSSEL DE PROJETOS E OBRAS REAIS (LUXURY APPLE-TIER UX & CORES VIBRANTES)
   -------------------------------------------------------------------------- */
.real-projects-section {
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 168, 255, 0.14) 0%, rgba(2, 9, 20, 0.98) 70%), #020914;
  padding: 72px 0 80px;
  border-top: 1px solid rgba(0, 168, 255, 0.2);
  border-bottom: 1px solid rgba(0, 168, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.real-projects-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.16) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(50px);
}

.real-projects-header {
  margin-bottom: 28px;
}

.carousel-header-flex {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}

@media (min-width: 768px) {
  .carousel-header-flex {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

/* Tipografia de Alto Contraste & Luxo para o Cabeçalho */
.real-projects-section .section-eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #00E5FF;
  text-shadow: 0 0 16px rgba(0, 229, 255, 0.5);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.real-projects-section .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #FFFFFF 25%, #E2E8F0 65%, #93C5FD 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
}

.real-projects-section .section-title .text-cyan {
  background: linear-gradient(135deg, #00E5FF 0%, #00A8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(0, 229, 255, 0.6));
}

.real-projects-section .section-subtitle {
  font-size: 1.02rem;
  color: #CBD5E1;
  max-width: 680px;
  line-height: 1.65;
}

/* Alternador de Modo de Visualização (Apple Vision-Glass Switch) */
.gallery-view-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(14, 28, 52, 0.85);
  border: 1px solid rgba(0, 168, 255, 0.32);
  border-radius: 99px;
  padding: 5px;
  gap: 6px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-shrink: 0;
}

.view-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 99px;
  border: 1px solid transparent;
  background: transparent;
  color: #94A3B8;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
}

.view-switch-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.view-switch-btn:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
}

.view-switch-btn:hover svg {
  transform: scale(1.1);
}

.view-switch-btn.active {
  background: linear-gradient(135deg, #00C6FF 0%, #0077EE 50%, #004BC8 100%);
  border-color: rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 18px rgba(0, 119, 238, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

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

.carousel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(14, 28, 52, 0.85);
  border: 1px solid rgba(0, 168, 255, 0.35);
  color: #00E5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}

.carousel-nav-btn:hover {
  background: linear-gradient(135deg, #00C6FF 0%, #0077EE 100%);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0, 168, 255, 0.6);
}

.real-carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 6px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.real-carousel-track::-webkit-scrollbar {
  display: none;
}

/* Card de Foto Real: Design Elevado com Glassmorphism e Iluminação */
.real-photo-card {
  flex: 0 0 min(320px, 86vw);
  scroll-snap-align: center;
  background: linear-gradient(180deg, rgba(14, 28, 52, 0.9) 0%, rgba(6, 16, 32, 0.96) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 168, 255, 0.24);
  box-shadow: 0 12px 32px rgba(0, 5, 16, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.32s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.32s ease, 
              background 0.32s ease;
  display: flex;
  flex-direction: column;
}

.real-photo-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(20, 42, 76, 0.92) 0%, rgba(8, 22, 44, 0.98) 100%);
  border-color: rgba(0, 229, 255, 0.65);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.75), 0 0 32px rgba(0, 168, 255, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Modo Grade Completa (100% Mobile-First) */
.real-carousel-track.is-grid-view {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  overflow-x: visible;
  scroll-snap-type: none;
  padding: 12px 0;
}

@media (min-width: 540px) {
  .real-carousel-track.is-grid-view {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 920px) {
  .real-carousel-track.is-grid-view {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .real-carousel-track.is-grid-view {
    grid-template-columns: repeat(4, 1fr);
  }
}

.real-carousel-track.is-grid-view .real-photo-card {
  flex: none;
  width: 100%;
  max-width: 100%;
}

/* Barra de Navegação Inferior Mobile-First (Thumb Zone) */
.carousel-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding: 12px 24px;
  background: rgba(14, 28, 52, 0.88);
  border: 1px solid rgba(0, 168, 255, 0.32);
  border-radius: 99px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.carousel-status-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.carousel-step-counter {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #00E5FF;
  text-shadow: 0 0 14px rgba(0, 229, 255, 0.55);
  text-transform: uppercase;
}

.carousel-dots-wrap {
  display: flex;
  align-items: center;
  gap: 7px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: scale(1.2);
}

.carousel-dot.active {
  width: 26px;
  background: linear-gradient(90deg, #00E5FF 0%, #0077EE 100%);
  box-shadow: 0 0 14px rgba(0, 229, 255, 0.85);
}

.thumb-nav-btn {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.real-photo-img-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #020710;
}

.real-photo-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 65%, rgba(6, 16, 32, 0.85) 100%);
  pointer-events: none;
}

.real-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Badge Vibrante com Gradiente & Glow */
.photo-step-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: linear-gradient(135deg, #00C6FF 0%, #0077EE 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(0, 119, 238, 0.6);
}

.real-photo-content {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.real-photo-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.real-photo-desc {
  font-size: 0.88rem;
  color: #CBD5E1;
  line-height: 1.55;
  margin: 0;
}

.real-photo-card:hover .real-photo-desc {
  color: #FFFFFF;
}

/* Showcase de Vídeo e Antes/Depois */
.media-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 44px;
}

@media (min-width: 860px) {
  .media-showcase-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

.media-feature-card {
  background: linear-gradient(180deg, rgba(13, 27, 49, 0.85) 0%, rgba(5, 14, 28, 0.96) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 168, 255, 0.28);
  box-shadow: 0 16px 36px rgba(0, 4, 12, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.35s ease, 
              box-shadow 0.35s ease;
}

.media-feature-card:hover {
  border-color: rgba(0, 229, 255, 0.55);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.7), 0 0 32px rgba(0, 168, 255, 0.28);
  transform: translateY(-5px);
}

/* 1. Video Container: Mobile Device Stage com Radial Ambient Glow */
.media-video-wrap {
  width: 100%;
  height: 290px;
  border-radius: 16px;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(0, 168, 255, 0.18) 0%, rgba(3, 13, 27, 0.95) 75%), #030D1A;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 168, 255, 0.24);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6), inset 0 0 35px rgba(0, 168, 255, 0.08);
  flex-shrink: 0;
}

.media-video-wrap video {
  height: 100%;
  max-height: 290px;
  aspect-ratio: 9 / 16;
  width: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.8), 0 0 1px rgba(255, 255, 255, 0.25);
  display: block;
}

/* 2. Before & After: Proporção e Altura Idêntica ao Vídeo (Simetria Perfeita) */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  height: 290px;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.before-after-col {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  background: #030D1A;
  border: 1px solid rgba(0, 168, 255, 0.24);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.before-after-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-feature-card:hover .before-after-col img {
  transform: scale(1.05);
}

/* Badges de Antes & Depois com Efeito Vidro Fosco Luminoso */
.ba-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ba-badge-before {
  background: rgba(220, 38, 38, 0.88);
  color: #FFFFFF;
  border: 1px solid rgba(254, 202, 202, 0.4);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.5);
}

.ba-badge-after {
  background: rgba(16, 185, 129, 0.88);
  color: #FFFFFF;
  border: 1px solid rgba(167, 243, 208, 0.45);
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.5);
}

/* 3. Corpo do Card: Flex Column com Alinhamento Bottom */
.media-feature-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* 4. Tag / Badge da Seção (Neon Cyan Pill) */
.media-feature-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 7px;
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: #00E5FF;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  margin-bottom: 12px;
  box-shadow: 0 2px 14px rgba(0, 229, 255, 0.15);
}

.media-feature-badge svg {
  color: #00E5FF;
}

/* 5. Título do Card */
.media-feature-title {
  font-family: var(--font-heading);
  font-size: 1.24rem;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.35;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

/* 6. Descrição do Card */
.media-feature-desc {
  font-size: 0.91rem;
  color: #94A3B8;
  line-height: 1.6;
  margin: 0 0 22px 0;
  flex: 1;
}

.media-feature-card:hover .media-feature-desc {
  color: #CBD5E1;
}

/* 7. Botão Interativo de Ação (Substitui o antigo bloco branco) */
.media-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 20px;
  background: rgba(0, 168, 255, 0.08);
  border: 1.5px solid rgba(0, 229, 255, 0.32);
  border-radius: 12px;
  color: #38BDF8;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.93rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  margin-top: auto;
}

.media-action-btn span {
  display: inline-block;
  transition: color 0.25s ease;
}

.media-action-btn svg {
  color: #00E5FF;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.25s ease;
  flex-shrink: 0;
}

.media-action-btn:hover {
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.22) 0%, rgba(0, 119, 238, 0.32) 100%);
  border-color: #00E5FF;
  color: #FFFFFF;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.media-action-btn:hover span {
  color: #FFFFFF;
}

.media-action-btn:hover svg {
  color: #FFFFFF;
  transform: translateX(5px);
}

.media-action-btn:active {
  transform: translateY(0) scale(0.99);
}

/* Ajustes Responsivos Mobile */
@media (max-width: 640px) {
  .media-feature-card {
    padding: 18px;
    border-radius: 16px;
  }

  .media-video-wrap {
    height: 240px;
    margin-bottom: 16px;
  }

  .media-video-wrap video {
    max-height: 240px;
  }

  .before-after-grid {
    height: 240px;
    gap: 8px;
    margin-bottom: 16px;
  }

  .media-feature-title {
    font-size: 1.12rem;
  }

  .media-action-btn {
    padding: 12px 16px;
    font-size: 0.88rem;
  }
}

/* 8. Botão CTA Principal da Seção de Projetos Reais */
.showcase-cta-wrap {
  text-align: center;
  margin-top: 44px;
  margin-bottom: 12px;
}

.showcase-bottom-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 520px;
  padding: 16px 36px;
  font-family: var(--font-heading);
  letter-spacing: -0.01em;
  box-shadow: 0 10px 30px rgba(0, 119, 238, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-bottom-cta:hover {
  box-shadow: 0 14px 40px rgba(0, 229, 255, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(-3px) scale(1.02);
}

@media (max-width: 640px) {
  .showcase-cta-wrap {
    margin-top: 32px;
  }

  .showcase-bottom-cta {
    width: 100%;
    padding: 15px 20px;
    font-size: 0.96rem;
    white-space: normal;
    text-align: center;
    line-height: 1.35;
  }
}

/* ==========================================================================
   13. AGENDAMENTO ONLINE WIZARD & PAINEL DE CONTROLE (PADRÃO 2026)
   ========================================================================== */

/* --- 13.1 WIZARD DE AGENDAMENTO TÉCNICO (/agendamento/) --- */
.booking-section {
  position: relative;
  background-color: var(--bg-dark-hero);
  padding: 40px 0 80px 0;
}

.booking-wizard-card {
  max-width: 840px;
  margin: 0 auto;
  background: rgba(4, 14, 30, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0, 229, 255, 0.28);
  border-radius: 24px;
  padding: 36px 30px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 168, 255, 0.12);
}

@media (max-width: 640px) {
  .booking-wizard-card {
    padding: 24px 16px;
    border-radius: 18px;
  }
}

/* Barra de Steps */
.booking-steps-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 34px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.45;
  transition: all 0.25s ease;
}

.booking-step-indicator.active {
  opacity: 1;
}

.booking-step-indicator.completed {
  opacity: 0.9;
}

.step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.booking-step-indicator.active .step-num {
  background: linear-gradient(135deg, #00E5FF 0%, #0077EE 100%);
  border-color: #00E5FF;
  color: #020914;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.6);
}

.booking-step-indicator.completed .step-num {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10B981;
  color: #10B981;
}

.step-label {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: #CBD5E1;
}

.booking-step-indicator.active .step-label {
  color: #00E5FF;
}

.step-divider {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 10px;
}

@media (max-width: 540px) {
  .step-label {
    display: none;
  }
  .step-divider {
    margin: 0 6px;
  }
}

/* Wizard Panes */
.wizard-pane {
  display: none;
}

.wizard-pane.active {
  display: block;
  animation: paneFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.pane-header {
  margin-bottom: 24px;
}

.pane-eyebrow {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cyan-primary);
  margin-bottom: 6px;
}

.pane-title {
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.25;
  color: #FFFFFF;
  margin-bottom: 6px;
}

.pane-desc {
  font-size: 0.92rem;
  color: var(--text-light-sub);
  line-height: 1.5;
}

/* Seleção de Serviço (Cards Radio) */
.service-selection-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.service-option-card {
  position: relative;
  cursor: pointer;
  display: block;
}

.service-option-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-option-card:hover .option-card-inner {
  background: rgba(0, 168, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.35);
  transform: translateY(-2px);
}

.service-option-card input[type="radio"]:checked + .option-card-inner {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.12) 0%, rgba(0, 119, 238, 0.12) 100%);
  border-color: #00E5FF;
  box-shadow: 0 8px 24px rgba(0, 229, 255, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.option-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0, 168, 255, 0.12);
  border: 1px solid rgba(0, 168, 255, 0.28);
  color: #00E5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.option-info {
  flex: 1;
}

.option-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-cyan-primary);
  background: rgba(0, 229, 255, 0.1);
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 4px;
}

.option-title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 3px;
}

.option-desc {
  font-size: 0.85rem;
  color: var(--text-light-sub);
  line-height: 1.45;
}

.option-radio-indicator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.service-option-card input[type="radio"]:checked + .option-card-inner .option-radio-indicator {
  border-color: #00E5FF;
  background: #00E5FF;
  box-shadow: 0 0 10px rgba(0, 229, 255, 0.8);
}

/* Etapa 2: Data & Horários */
.datetime-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .datetime-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.input-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.form-control-tech {
  width: 100%;
  background: rgba(3, 11, 23, 0.92);
  border: 1.5px solid rgba(0, 168, 255, 0.25);
  border-radius: 12px;
  color: #FFFFFF;
  padding: 13px 16px;
  font-size: 0.94rem;
  font-family: inherit;
  transition: all 0.22s ease;
  outline: none;
}

.form-control-tech:focus {
  border-color: #00E5FF;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
  background: rgba(4, 15, 31, 0.98);
}

.form-control-tech option {
  background: #040E1E;
  color: #FFFFFF;
}

.form-control-tech optgroup {
  background: #020712;
  color: #00E5FF;
  font-weight: 700;
}

.date-helper-text {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light-muted);
  margin-top: 8px;
  line-height: 1.4;
}

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

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

.slot-pill-btn {
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: #E2E8F0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-align: center;
}

.slot-pill-btn .slot-status-text {
  font-size: 0.72rem;
  font-weight: 600;
  color: #10B981;
}

.slot-pill-btn:hover:not(:disabled) {
  border-color: var(--color-cyan-primary);
  background: rgba(0, 168, 255, 0.1);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.slot-pill-btn.selected {
  background: linear-gradient(135deg, #00C6FF 0%, #0077EE 100%);
  border-color: #00E5FF;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(0, 119, 238, 0.45);
}

.slot-pill-btn.selected .slot-status-text {
  color: #FFFFFF;
}

.slot-pill-btn:disabled,
.slot-pill-btn.booked {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: line-through;
  border-color: rgba(255, 255, 255, 0.05);
}

.slot-pill-btn:disabled .slot-status-text,
.slot-pill-btn.booked .slot-status-text {
  color: #EF4444;
  text-decoration: none;
}

.slots-loading-msg {
  grid-column: 1 / -1;
  padding: 24px;
  text-align: center;
  color: var(--text-light-muted);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, 0.1);
}

/* Etapa 3: Formulário de Contato & Local */
.client-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

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

.form-group-tech {
  display: flex;
  flex-direction: column;
}

.form-group-tech.full-width {
  grid-column: 1 / -1;
}

/* Botões de Ação do Wizard */
.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-actions.right-align {
  justify-content: flex-end;
}

.wizard-btn-prev,
.wizard-btn-next {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  font-size: 0.92rem;
}

/* Etapa 4: Confirmação & Resumo */
.booking-success-box {
  padding: 16px 0;
  text-align: center;
}

.success-icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(0, 229, 255, 0.12);
  border: 2px solid #00E5FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.35);
}

.success-eyebrow {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #10B981;
  margin-bottom: 8px;
}

.success-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.success-desc {
  color: var(--text-light-sub);
  font-size: 0.96rem;
  max-width: 580px;
  margin: 0 auto 24px auto;
  line-height: 1.6;
}

.booking-summary-card {
  background: rgba(2, 9, 20, 0.92);
  border: 1.5px solid rgba(0, 229, 255, 0.3);
  border-radius: 18px;
  padding: 20px 24px;
  max-width: 520px;
  margin: 0 auto 26px auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.summary-item:last-child {
  border-bottom: none;
}

.s-label {
  color: var(--text-light-muted);
  font-size: 0.86rem;
}

.s-value {
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 700;
}

.text-cyan {
  color: #00E5FF !important;
}

.success-actions-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto 20px auto;
}

.btn-whatsapp-green-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-whatsapp-green-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.6);
}

.new-booking-reset {
  margin-top: 14px;
}

.reset-link {
  color: var(--text-light-muted);
  font-size: 0.86rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.reset-link:hover {
  color: #00E5FF;
}

/* ==========================================================================
   13.1.1 ELOARTECH AGENDAMENTO — APPLE WHITE THEME & FLAT DESIGN (2026 UX)
   Pure Flat Design, Minimalist, High-Contrast & Apple Human Interface Standard
   ========================================================================== */
body.booking-white-theme {
  background-color: #F8FAFC !important;
  color: #0F172A !important;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* Page Hero em White Theme */
body.booking-white-theme .page-hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%) !important;
  border-bottom: 1px solid #E2E8F0 !important;
  padding: 44px 0 50px 0 !important;
}

body.booking-white-theme .breadcrumbs-list a {
  color: #64748B !important;
}

body.booking-white-theme .breadcrumbs-list a:hover {
  color: #0071E3 !important;
}

body.booking-white-theme .breadcrumbs-separator {
  color: #CBD5E1 !important;
}

body.booking-white-theme .breadcrumbs-current {
  color: #0071E3 !important;
  font-weight: 700;
}

body.booking-white-theme .btn {
  border-radius: 12px !important;
}

body.booking-white-theme .page-hero-title {
  font-family: 'Outfit', sans-serif !important;
  font-size: 2.35rem !important;
  font-weight: 800 !important;
  color: #0F172A !important;
  letter-spacing: -0.025em !important;
  margin-bottom: 10px !important;
}

body.booking-white-theme .page-hero-subtitle {
  color: #475569 !important;
  font-size: 1.05rem !important;
  line-height: 1.6 !important;
  max-width: 680px !important;
}

/* Seção de Conteúdo & Card Principal */
body.booking-white-theme .booking-section {
  background-color: #F1F5F9 !important;
  padding: 40px 0 85px 0 !important;
}

body.booking-white-theme .booking-wizard-card {
  background: #FFFFFF !important;
  border: 1.5px solid #CBD5E1 !important;
  border-radius: 22px !important;
  padding: 42px 36px !important;
  box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.08), 0 2px 6px -1px rgba(15, 23, 42, 0.04) !important;
}

@media (max-width: 640px) {
  body.booking-white-theme .booking-wizard-card {
    padding: 24px 18px !important;
    border-radius: 18px !important;
  }
}

/* Stepper Bar Flat Apple */
body.booking-white-theme .booking-steps-bar {
  border-bottom: 1px solid #F1F5F9 !important;
  margin-bottom: 36px !important;
  padding-bottom: 22px !important;
}

body.booking-white-theme .booking-step-indicator {
  opacity: 0.55 !important;
}

body.booking-white-theme .booking-step-indicator.active {
  opacity: 1 !important;
}

body.booking-white-theme .booking-step-indicator.completed {
  opacity: 0.95 !important;
}

body.booking-white-theme .step-num {
  background: #F1F5F9 !important;
  border: 1.5px solid #E2E8F0 !important;
  color: #64748B !important;
  font-weight: 800 !important;
}

body.booking-white-theme .booking-step-indicator.active .step-num {
  background: #0071E3 !important;
  border-color: #0071E3 !important;
  color: #FFFFFF !important;
  box-shadow: 0 3px 12px rgba(0, 113, 227, 0.3) !important;
}

body.booking-white-theme .booking-step-indicator.completed .step-num {
  background: #ECFDF5 !important;
  border-color: #10B981 !important;
  color: #10B981 !important;
}

body.booking-white-theme .step-label {
  color: #64748B !important;
  font-weight: 600 !important;
}

body.booking-white-theme .booking-step-indicator.active .step-label {
  color: #0F172A !important;
  font-weight: 800 !important;
}

body.booking-white-theme .step-divider {
  background: #E2E8F0 !important;
}

/* Cabeçalho das Etapas */
body.booking-white-theme .pane-eyebrow {
  color: #0071E3 !important;
  font-weight: 800 !important;
}

body.booking-white-theme .pane-title {
  color: #0F172A !important;
  font-size: 1.65rem !important;
  font-weight: 800 !important;
}

body.booking-white-theme .pane-desc {
  color: #475569 !important;
}

/* Etapa 1: Cards de Seleção de Serviço (Apple Flat) */
body.booking-white-theme .service-selection-grid {
  gap: 12px !important;
}

body.booking-white-theme .option-card-inner {
  background: #F8FAFC !important;
  border: 2px solid #CBD5E1 !important;
  border-radius: 16px !important;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.04) !important;
}

body.booking-white-theme .service-option-card:hover .option-card-inner {
  background: #FFFFFF !important;
  border-color: #0071E3 !important;
  box-shadow: 0 4px 14px rgba(0, 113, 227, 0.12) !important;
  transform: translateY(-2px) !important;
}

body.booking-white-theme .service-option-card input[type="radio"]:checked + .option-card-inner {
  background: #EFF6FF !important;
  border-color: #0071E3 !important;
  box-shadow: 0 4px 16px rgba(0, 113, 227, 0.16) !important;
}

body.booking-white-theme .option-icon-box {
  background: #EFF6FF !important;
  border: 1px solid #DBEAFE !important;
  color: #0071E3 !important;
}

body.booking-white-theme .option-badge {
  background: #E0F2FE !important;
  color: #0369A1 !important;
  font-weight: 700 !important;
  border-radius: 6px !important;
  padding: 3px 8px !important;
  font-size: 0.72rem !important;
  display: inline-block;
  margin-bottom: 6px;
}

body.booking-white-theme .option-badge.badge-popular {
  background: #FEF3C7 !important;
  color: #B45309 !important;
  border: 1px solid #FDE68A !important;
  border-radius: 6px !important;
}

body.booking-white-theme .option-badge.badge-clean {
  background: #ECFDF5 !important;
  color: #047857 !important;
  border: 1px solid #A7F3D0 !important;
  border-radius: 6px !important;
}

body.booking-white-theme .option-title {
  color: #0F172A !important;
  font-weight: 700 !important;
}

body.booking-white-theme .option-desc {
  color: #475569 !important;
}

body.booking-white-theme .option-radio-indicator {
  border: 2px solid #CBD5E1 !important;
  background: #FFFFFF !important;
}

body.booking-white-theme .service-option-card input[type="radio"]:checked + .option-card-inner .option-radio-indicator {
  border-color: #0071E3 !important;
  background: #0071E3 !important;
  box-shadow: inset 0 0 0 3px #FFFFFF !important;
}

/* Dica de Etapa 1 */
body.booking-white-theme .wizard-actions.space-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

body.booking-white-theme .step-hint {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: #64748B;
  font-weight: 500;
}

/* Etapa 2: Seletor de Dias Rápidos (Quick Day Pills) */
body.booking-white-theme .quick-days-section {
  margin-bottom: 22px;
}

body.booking-white-theme .quick-days-grid {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px 2px 10px 2px;
  -webkit-overflow-scrolling: touch;
}

body.booking-white-theme .quick-day-pill {
  flex: 0 0 auto;
  min-width: 130px;
  background: #F8FAFC !important;
  border: 2px solid #CBD5E1 !important;
  border-radius: 14px;
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.05);
}

body.booking-white-theme .quick-day-pill:hover {
  border-color: #0071E3 !important;
  background: #FFFFFF !important;
  box-shadow: 0 4px 14px rgba(0, 113, 227, 0.15);
  transform: translateY(-2px);
}

body.booking-white-theme .quick-day-pill.active {
  background: #0071E3 !important;
  border-color: #0071E3 !important;
  box-shadow: 0 6px 18px rgba(0, 113, 227, 0.35) !important;
  transform: translateY(-2px);
}

body.booking-white-theme .quick-day-pill .day-rel {
  font-size: 0.74rem;
  font-weight: 800;
  color: #0284C7;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.booking-white-theme .quick-day-pill .day-full {
  font-size: 0.94rem;
  font-weight: 800;
  color: #0F172A;
}

body.booking-white-theme .quick-day-pill.active .day-rel,
body.booking-white-theme .quick-day-pill.active .day-full {
  color: #FFFFFF !important;
}

/* Data & Inputs Flat */
body.booking-white-theme .input-label {
  color: #0F172A !important;
  font-weight: 700 !important;
  font-size: 0.92rem !important;
  margin-bottom: 8px !important;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

body.booking-white-theme .input-label svg {
  color: #0071E3 !important;
}

body.booking-white-theme .input-label-sub {
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748B;
  margin-bottom: 6px;
  display: block;
}

body.booking-white-theme .form-control-tech {
  background: #FFFFFF !important;
  border: 1.5px solid #CBD5E1 !important;
  color: #0F172A !important;
  border-radius: 12px !important;
}

body.booking-white-theme .form-control-tech::placeholder {
  color: #94A3B8 !important;
}

body.booking-white-theme .form-control-tech:focus {
  border-color: #0071E3 !important;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.15) !important;
  background: #FFFFFF !important;
}

body.booking-white-theme .form-control-tech option {
  background: #FFFFFF !important;
  color: #0F172A !important;
}

body.booking-white-theme .form-control-tech optgroup {
  background: #F8FAFC !important;
  color: #0071E3 !important;
}

body.booking-white-theme .date-helper-text {
  color: #64748B !important;
  font-size: 0.78rem !important;
  margin-top: 6px !important;
  display: block !important;
}

/* Turnos de Horários Agrupados */
body.booking-white-theme .slots-container-grouped {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

body.booking-white-theme .shift-group {
  background: #F1F5F9;
  border: 1.5px solid #CBD5E1;
  border-radius: 16px;
  padding: 16px 18px;
}

body.booking-white-theme .shift-group-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #334155;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

body.booking-white-theme .shift-slots-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}

body.booking-white-theme .slot-pill-btn {
  background: #FFFFFF !important;
  border: 2px solid #CBD5E1 !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 3px !important;
  text-align: left !important;
  cursor: pointer !important;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08) !important;
}

body.booking-white-theme .slot-pill-btn .slot-time {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
}

body.booking-white-theme .slot-pill-btn .slot-label-detail {
  font-size: 0.76rem;
  color: #475569;
  font-weight: 600;
  margin-bottom: 6px;
}

body.booking-white-theme .slot-pill-btn .slot-status-text {
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  background: #DCFCE7 !important;
  color: #15803D !important;
  border: 1px solid #BBF7D0 !important;
}

body.booking-white-theme .slot-pill-btn.is-occupied .slot-status-text {
  background: #FEE2E2 !important;
  color: #B91C1C !important;
  border: 1px solid #FECACA !important;
}

body.booking-white-theme .slot-pill-btn:hover:not(:disabled) {
  background: #FFFFFF !important;
  border-color: #0071E3 !important;
  box-shadow: 0 4px 14px rgba(0, 113, 227, 0.18) !important;
  transform: translateY(-2px);
}

body.booking-white-theme .slot-pill-btn.selected {
  background: #0071E3 !important;
  border-color: #0071E3 !important;
  box-shadow: 0 6px 18px rgba(0, 113, 227, 0.35) !important;
  transform: translateY(-2px);
}

body.booking-white-theme .slot-pill-btn.selected .slot-time,
body.booking-white-theme .slot-pill-btn.selected .slot-label-detail {
  color: #FFFFFF !important;
}

body.booking-white-theme .slot-pill-btn.selected .slot-status-text {
  background: rgba(255, 255, 255, 0.25) !important;
  color: #FFFFFF !important;
  border-color: transparent !important;
}

body.booking-white-theme .slot-pill-btn:disabled {
  background: #F1F5F9 !important;
  border-color: #E2E8F0 !important;
  cursor: not-allowed !important;
  opacity: 0.65 !important;
}

body.booking-white-theme .slot-pill-btn:disabled .slot-time,
body.booking-white-theme .slot-pill-btn:disabled .slot-label-detail {
  color: #94A3B8 !important;
}

body.booking-white-theme .slots-loading-msg,
body.booking-white-theme .slots-error-msg {
  background: #F8FAFC !important;
  border: 1px dashed #CBD5E1 !important;
  color: #64748B !important;
  padding: 16px !important;
  border-radius: 12px !important;
  text-align: center !important;
  font-size: 0.88rem !important;
}

body.booking-white-theme .slots-error-msg {
  background: #FEF2F2 !important;
  border-color: #FCA5A5 !important;
  color: #DC2626 !important;
}

/* Feedback de Horário Selecionado */
body.booking-white-theme .slot-selected-feedback {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  color: #166534;
  padding: 12px 16px;
  border-radius: 12px;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

body.booking-white-theme .feedback-check {
  font-weight: 900;
  color: #15803D;
  background: #DCFCE7;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Etapa 3: Chips de Sintomas Rápidos */
body.booking-white-theme .symptom-chips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
  margin-bottom: 12px;
}

body.booking-white-theme .symptom-chip {
  background: #F8FAFC;
  border: 2px solid #CBD5E1;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #1E293B;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

body.booking-white-theme .symptom-chip:hover {
  background: #EFF6FF;
  border-color: #0071E3;
  color: #0071E3;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.15);
}

body.booking-white-theme .symptom-chip.active {
  background: #0071E3 !important;
  border-color: #0071E3 !important;
  color: #FFFFFF !important;
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.35) !important;
  transform: translateY(-1px);
}

/* Box de Tranquilidade & Confiança (Etapa 3) */
body.booking-white-theme .booking-trust-banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: #F8FAFC;
  border: 1.5px solid #CBD5E1;
  border-radius: 16px;
  padding: 18px 20px;
  margin-top: 24px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  body.booking-white-theme .booking-trust-banner {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

body.booking-white-theme .trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

body.booking-white-theme .trust-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
}

body.booking-white-theme .trust-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.booking-white-theme .trust-text strong {
  font-size: 0.86rem;
  color: #0F172A;
  font-weight: 700;
}

body.booking-white-theme .trust-text span {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.4;
}

body.booking-white-theme .input-helper-note {
  font-size: 0.76rem;
  color: #64748B;
  margin-top: 4px;
  display: block;
}

body.booking-white-theme .input-error {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

/* Botões de Ação do Wizard */
body.booking-white-theme .wizard-actions {
  border-top: 1px solid #F1F5F9 !important;
  padding-top: 24px !important;
  margin-top: 28px !important;
}

body.booking-white-theme .wizard-btn-prev {
  background: #F1F5F9 !important;
  border: 1px solid #E2E8F0 !important;
  color: #334155 !important;
  border-radius: 12px !important;
}

body.booking-white-theme .wizard-btn-prev:hover {
  background: #E2E8F0 !important;
  color: #0F172A !important;
}

body.booking-white-theme .wizard-btn-next {
  background: #0071E3 !important;
  border: none !important;
  color: #FFFFFF !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 14px rgba(0, 113, 227, 0.25) !important;
}

body.booking-white-theme .wizard-btn-next:hover:not(:disabled) {
  background: #0077ED !important;
  box-shadow: 0 6px 18px rgba(0, 113, 227, 0.35) !important;
  transform: translateY(-1px) !important;
}

body.booking-white-theme .wizard-btn-next:disabled {
  background: #E2E8F0 !important;
  color: #94A3B8 !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
}

body.booking-white-theme .btn-finish-booking {
  padding: 15px 32px !important;
  font-size: 1.05rem !important;
  box-shadow: 0 6px 20px rgba(0, 113, 227, 0.35) !important;
}

/* Etapa 4: Sucesso & Confirmação Flat */
body.booking-white-theme .success-icon-badge {
  background: #ECFDF5 !important;
  border: 2px solid #10B981 !important;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.2) !important;
}

body.booking-white-theme .success-icon-badge svg {
  stroke: #10B981 !important;
}

body.booking-white-theme .success-eyebrow {
  color: #059669 !important;
}

body.booking-white-theme .success-title {
  color: #0F172A !important;
}

body.booking-white-theme .success-desc {
  color: #475569 !important;
}

body.booking-white-theme .booking-summary-card {
  background: #F8FAFC !important;
  border: 1.5px solid #CBD5E1 !important;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05) !important;
}

body.booking-white-theme .summary-item {
  border-bottom: 1px solid #E2E8F0 !important;
}

body.booking-white-theme .s-label {
  color: #64748B !important;
}

body.booking-white-theme .s-value {
  color: #0F172A !important;
}

body.booking-white-theme .s-value.text-cyan {
  color: #0071E3 !important;
}

body.booking-white-theme .btn-whatsapp-green-pill {
  background: #25D366 !important;
  border: none !important;
  color: #FFFFFF !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35) !important;
}

body.booking-white-theme .btn-whatsapp-green-pill:hover {
  background: #20BA5A !important;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45) !important;
}

body.booking-white-theme .btn-pulse-wpp {
  animation: wppPulse 2.5s infinite;
}

@keyframes wppPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

body.booking-white-theme .next-steps-guide {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 14px 18px;
  margin: 20px 0;
  text-align: left;
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.5;
}

body.booking-white-theme #btnAddToCalendar {
  background: #FFFFFF !important;
  border: 1.5px solid #CBD5E1 !important;
  color: #0F172A !important;
  border-radius: 12px !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03) !important;
}

body.booking-white-theme #btnAddToCalendar:hover {
  background: #F8FAFC !important;
  border-color: #94A3B8 !important;
}

body.booking-white-theme .reset-link {
  color: #64748B !important;
}

body.booking-white-theme .reset-link:hover {
  color: #0071E3 !important;
}

/* Header & Footer preservados em Dark Theme Luxury no Agendamento */
body.booking-white-theme .header {
  background-color: #040D1A !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

body.booking-white-theme .header .nav-link {
  color: #94A3B8 !important;
}

body.booking-white-theme .header .nav-link:hover,
body.booking-white-theme .header .nav-link.active {
  color: #FFFFFF !important;
}

body.booking-white-theme .footer {
  background-color: #020710 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  color: #94A3B8 !important;
}

body.booking-white-theme .footer-links a {
  color: #94A3B8 !important;
}

body.booking-white-theme .footer-links a:hover {
  color: #00A8FF !important;
}

body.booking-white-theme .social-icon {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #FFFFFF !important;
}

body.booking-white-theme .social-icon:hover {
  background: #00A8FF !important;
  border-color: #00A8FF !important;
  color: #FFFFFF !important;
}

body.booking-white-theme .footer-tagline {
  color: #00A8FF !important;
}

body.booking-white-theme .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  color: #64748B !important;
}

/* --- 13.2 PAINEL DE CONTROLE ADMINISTRATIVO (/painel/) --- */
/* Padrão 100% Mobile-First 2026: White Theme, Geometria Limpa, Zero Pills, UX Tátil Operacional de Campo */

.admin-body {
  background-color: #F8FAFC;
  color: #0F172A;
  font-family: var(--font-body);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

.admin-body .btn {
  border-radius: 8px !important;
}

.admin-body .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .admin-body .container {
    padding: 0 24px;
  }
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}

.shake {
  animation: shake 0.35s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  border-color: #EF4444 !important;
}

/* -------------------------------------------------------------
   TELA 1: BLOQUEIO POR PIN (ACESSO RESTRITO - MOBILE FIRST)
   ------------------------------------------------------------- */
.pin-lock-screen {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  overflow: hidden;
  background-color: #0F172A;
}

/* Background com Vídeo Familiar e Overlay Neutro */
.pin-video-bg-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.pin-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.pin-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* Card do PIN - 100% White Card */
.pin-card {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 400px;
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 28px 18px;
  text-align: center;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

@media (min-width: 480px) {
  .pin-card {
    padding: 36px 28px;
  }
}

.pin-brand-logo {
  margin-bottom: 12px;
}

.pin-brand-logo img {
  height: 38px;
  width: auto;
  margin: 0 auto;
  display: block;
}

.pin-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 6px;
  background: #F1F5F9;
  color: #334155;
  border: 1px solid #E2E8F0;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.pin-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 6px;
  line-height: 1.25;
}

@media (min-width: 480px) {
  .pin-title {
    font-size: 1.45rem;
  }
}

.pin-sub {
  font-size: 0.85rem;
  color: #64748B;
  line-height: 1.45;
  margin-bottom: 20px;
}

.pin-input-wrap {
  position: relative;
  margin-bottom: 14px;
}

.pin-input {
  width: 100%;
  height: 54px;
  padding: 0 44px 0 16px;
  background: #F8FAFC;
  border: 2px solid #CBD5E1;
  border-radius: 10px;
  font-size: 1.8rem;
  letter-spacing: 0.35em;
  text-align: center;
  color: #0F172A;
  font-weight: 800;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pin-input:focus {
  border-color: #0071E3;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.12);
}

.pin-input::placeholder {
  font-size: 1.05rem;
  letter-spacing: normal;
  font-weight: 500;
  color: #94A3B8;
}

.btn-toggle-pin {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #94A3B8;
  cursor: pointer;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
}

.btn-toggle-pin:hover {
  color: #0F172A;
}

.pin-submit-btn {
  width: 100%;
  min-height: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px !important;
}

.pin-error-msg {
  display: none;
  margin-top: 12px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  color: #DC2626;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 12px;
  border-radius: 8px;
}

.pin-hint-box {
  margin-top: 16px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #475569;
  font-weight: 600;
}

.pin-hint-code {
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #0F172A;
  padding: 3px 9px;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0.12em;
  font-size: 0.9rem;
}

/* -------------------------------------------------------------
   MODO TESTE LOCALHOST - ACESSO DIRETO PARA O ADMINISTRADOR
   ------------------------------------------------------------- */
.localhost-quick-unlock {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed #CBD5E1;
  text-align: center;
}

.btn-quick-dev-login {
  background: #F1F5F9;
  border: 1px solid #CBD5E1;
  color: #1E293B;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-quick-dev-login:hover {
  background: #E2E8F0;
  border-color: #94A3B8;
  color: #0F172A;
}

.btn-dev-mock-topbar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #1D4ED8;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  min-height: 38px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.btn-dev-mock-topbar:hover {
  background: #DBEAFE;
  border-color: #93C5FD;
}

/* -------------------------------------------------------------
   TELA 2: TOPBAR DO DASHBOARD (MOBILE FIRST)
   ------------------------------------------------------------- */
.admin-dashboard-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.admin-topbar {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
  .admin-topbar {
    padding: 12px 28px;
  }
}

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

.admin-logo-link img {
  height: 32px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .admin-logo-link img {
    height: 38px;
  }
}

.admin-title-badge {
  display: none;
}

@media (min-width: 640px) {
  .admin-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 10px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #334155;
  }
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.admin-topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 640px) {
  .admin-topbar {
    padding: 8px 10px;
    gap: 6px;
  }
  .admin-topbar-left {
    gap: 6px;
    flex-shrink: 1;
    min-width: 0;
  }
  .admin-logo-link img {
    height: 25px;
    max-width: 105px;
  }
  .admin-topbar-right {
    gap: 4px;
    flex-shrink: 0;
  }
  .btn-action-ghost {
    padding: 5px 7px;
    font-size: 0.76rem;
    min-height: 34px;
    gap: 4px;
  }
  .btn-dev-mock-topbar {
    padding: 4px 6px;
    font-size: 0.68rem;
    min-height: 34px;
  }
}

.admin-date-display {
  display: none;
}

@media (min-width: 768px) {
  .admin-date-display {
    display: inline;
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748B;
    margin-right: 4px;
  }
}

.topbar-label-desktop {
  display: none;
}

.topbar-label-mobile {
  display: inline;
}

@media (min-width: 640px) {
  .topbar-label-desktop {
    display: inline;
  }
  .topbar-label-mobile {
    display: none;
  }
}

.btn-action-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #334155;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 7px 10px;
  min-height: 38px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-action-ghost:hover {
  background: #F8FAFC;
  border-color: #94A3B8;
  color: #0F172A;
}

.btn-action-ghost.loading svg {
  animation: spinSync 0.6s linear infinite;
}

@keyframes spinSync {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* -------------------------------------------------------------
   BARRA DE ABAS (TABS - iOS SEGMENTED STYLE)
   ------------------------------------------------------------- */
.admin-tabs-nav {
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  position: sticky;
  top: 53px;
  z-index: 90;
}

@media (min-width: 768px) {
  .admin-tabs-nav {
    top: 63px;
  }
}

.admin-tabs-container {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  width: 100%;
  box-sizing: border-box;
}

.admin-tab-btn {
  flex: 1 1 0;
  min-width: 0;
  background: transparent;
  border: 1px solid transparent;
  color: #64748B;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 8px 4px;
  min-height: 42px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-align: center;
}

.admin-tab-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .admin-tab-btn {
    flex: 0 0 auto;
    padding: 8px 16px;
    font-size: 0.88rem;
  }
}

.tab-label-desktop {
  display: none;
}

.tab-label-mobile {
  display: inline;
}

@media (min-width: 640px) {
  .tab-label-desktop {
    display: inline;
  }
  .tab-label-mobile {
    display: none;
  }
}

.admin-tab-btn:hover {
  background: #F8FAFC;
  color: #0F172A;
}

.admin-tab-btn.active {
  background: #EFF6FF;
  border-color: #BFDBFE;
  color: #0071E3;
  font-weight: 700;
}

.tab-badge-counter {
  background: #0071E3;
  color: #FFFFFF;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 6px;
  flex-shrink: 0;
}

/* -------------------------------------------------------------
   CONTEÚDO PRINCIPAL (MOBILE FIRST)
   ------------------------------------------------------------- */
.admin-main-content {
  padding: 16px 0 60px 0;
  flex: 1;
}

@media (min-width: 768px) {
  .admin-main-content {
    padding: 24px 0 60px 0;
  }
}

.admin-tab-pane {
  display: none;
}

.admin-tab-pane.active {
  display: block;
}

/* -------------------------------------------------------------
   CARDS DE MÉTRICAS (KPIS - 2x2 NO MOBILE)
   ------------------------------------------------------------- */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

@media (min-width: 1024px) {
  .kpi-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
  }
}

.kpi-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

@media (min-width: 768px) {
  .kpi-card {
    padding: 18px 20px;
  }
}

@media (min-width: 1024px) {
  .kpi-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
  }
}

.kpi-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.kpi-icon-wrap {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kpi-icon-wrap svg {
  width: 18px;
  height: 18px;
}

@media (min-width: 768px) {
  .kpi-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
  }
  .kpi-icon-wrap svg {
    width: 22px;
    height: 22px;
  }
}

.kpi-icon-wrap.cyan {
  background: #E0F2FE;
  color: #0284C7;
}

.kpi-icon-wrap.green {
  background: #ECFDF5;
  color: #059669;
}

.kpi-icon-wrap.blue {
  background: #EFF6FF;
  color: #2563EB;
}

.kpi-icon-wrap.purple {
  background: #F5F3FF;
  color: #7C3AED;
}

.kpi-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.kpi-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .kpi-label {
    font-size: 0.76rem;
    margin-bottom: 4px;
  }
}

.kpi-value {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #0F172A;
  line-height: 1.1;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .kpi-value {
    font-size: 1.85rem;
    margin-bottom: 4px;
  }
}

.kpi-value.text-green {
  color: #059669 !important;
}

.kpi-value.text-cyan {
  color: #0284C7 !important;
}

.kpi-value.text-purple {
  color: #7C3AED !important;
}

.kpi-subtext {
  font-size: 0.7rem;
  color: #64748B;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .kpi-subtext {
    font-size: 0.8rem;
  }
}

/* -------------------------------------------------------------
   PAINÉIS DE DETALHAMENTO ANALÍTICO (MOBILE FIRST)
   ------------------------------------------------------------- */
.analytics-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  gap: 14px;
}

@media (min-width: 1024px) {
  .analytics-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }
}

.admin-panel-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .admin-panel-card {
    padding: 22px;
  }
}

.panel-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #F1F5F9;
  flex-wrap: wrap;
  gap: 8px;
}

.panel-card-title {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #0F172A;
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .panel-card-title {
    font-size: 1.05rem;
  }
}

.panel-card-tag {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 6px;
  background: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Barras de Estatísticas */
.stat-bar-item {
  margin-bottom: 12px;
  min-width: 0;
}

.stat-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  margin-bottom: 5px;
  gap: 6px 10px;
  min-width: 0;
  flex-wrap: wrap;
}

.stat-bar-title {
  color: #334155;
  font-weight: 600;
  min-width: 0;
  word-break: break-word;
}

.stat-bar-count {
  color: #0F172A;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.stat-progress-track {
  width: 100%;
  height: 8px;
  background: #F1F5F9;
  border-radius: 4px;
  overflow: hidden;
}

.stat-progress-fill {
  height: 100%;
  border-radius: 4px;
  background: #0071E3;
  transition: width 0.4s ease;
}

.stat-progress-fill.cyan {
  background: #0284C7;
}

/* Origens de Tráfego */
.source-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  margin-bottom: 8px;
  font-size: 0.84rem;
}

.source-row:last-child {
  margin-bottom: 0;
}

.source-name {
  color: #334155;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.source-metric {
  display: flex;
  align-items: center;
  gap: 6px;
}

.source-metric strong {
  color: #0F172A;
  font-weight: 700;
}

.source-pct {
  color: #64748B;
  font-size: 0.78rem;
  font-weight: 600;
}

/* Histórico de Logs Recentes */
.recent-logs-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 290px;
  overflow-y: auto;
}

.log-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 10px;
  border-bottom: 1px solid #F1F5F9;
  font-size: 0.82rem;
  gap: 6px;
}

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

.log-time {
  color: #64748B;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: 0.78rem;
  flex-shrink: 0;
}

.log-label {
  color: #0F172A;
  font-weight: 600;
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.log-device-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 6px;
  text-transform: uppercase;
  background: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
  flex-shrink: 0;
}

.log-device-badge.desktop {
  background: #EFF6FF;
  color: #2563EB;
  border-color: #BFDBFE;
}

.log-device-badge.mobile {
  background: #ECFDF5;
  color: #059669;
  border-color: #A7F3D0;
}

.breakdown-empty {
  text-align: center;
  padding: 24px;
  color: #94A3B8;
  font-size: 0.85rem;
  font-weight: 500;
}

/* -------------------------------------------------------------
   ABA 2: AGENDA DE ATENDIMENTOS (BOOKINGS - DISPATCH MOBILE FIRST)
   ------------------------------------------------------------- */
.schedule-header-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .schedule-header-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
  }
}

.schedule-section-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 2px;
}

@media (min-width: 768px) {
  .schedule-section-title {
    font-size: 1.45rem;
    margin-bottom: 4px;
  }
}

.schedule-section-desc {
  color: #64748B;
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

.schedule-filters-wrap {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.schedule-filters-wrap::-webkit-scrollbar {
  display: none;
}

.filter-chip {
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid #CBD5E1;
  color: #475569;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.82rem;
  padding: 8px 12px;
  min-height: 38px;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.filter-chip:hover {
  background: #F8FAFC;
  border-color: #94A3B8;
  color: #0F172A;
}

.filter-chip.active {
  background: #0071E3;
  border-color: #0071E3;
  color: #FFFFFF;
  font-weight: 700;
}

.bookings-stream-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card de Agendamento - Estilo Terminal Operacional de Campo */
.booking-admin-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

@media (min-width: 768px) {
  .booking-admin-card {
    padding: 20px;
  }
}

.booking-admin-card:hover {
  border-color: #CBD5E1;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.booking-admin-card.status-pendente {
  border-left: 4px solid #F59E0B;
}

.booking-admin-card.status-confirmado {
  border-left: 4px solid #10B981;
}

.booking-admin-card.status-realizado {
  border-left: 4px solid #0071E3;
}

.booking-admin-card.status-cancelado {
  border-left: 4px solid #94A3B8;
  opacity: 0.75;
}

.booking-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
}

.booking-card-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.booking-id-tag {
  font-family: monospace;
  font-size: 0.75rem;
  font-weight: 700;
  background: #F1F5F9;
  color: #475569;
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid #E2E8F0;
}

.booking-status-badge {
  font-size: 0.68rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.booking-status-badge.status-pendente {
  background: #FEF3C7;
  color: #B45309;
  border: 1px solid #FDE68A;
}

.booking-status-badge.status-confirmado {
  background: #D1FAE5;
  color: #047857;
  border: 1px solid #A7F3D0;
}

.booking-status-badge.status-realizado {
  background: #DBEAFE;
  color: #1D4ED8;
  border: 1px solid #BFDBFE;
}

.booking-status-badge.status-cancelado {
  background: #F1F5F9;
  color: #64748B;
  border: 1px solid #E2E8F0;
}

.booking-date-badge {
  font-size: 0.8rem;
  font-weight: 700;
  color: #0F172A;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
}

.booking-card-content {
  margin-bottom: 12px;
}

.booking-service-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: #0F172A;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .booking-service-title {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }
}

.booking-info-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #334155;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.booking-info-row .info-icon {
  font-size: 0.95rem;
}

.booking-info-row .info-text {
  color: #334155;
}

.booking-info-row .info-phone {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #0284C7;
  font-weight: 700;
  background: #E0F2FE;
  padding: 2px 8px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.82rem;
  transition: all 0.2s ease;
}

.booking-info-row .info-phone:hover {
  background: #BAE6FD;
  color: #0369A1;
}

.booking-info-row.equip-notes {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 6px 10px;
  margin-top: 6px;
  color: #475569;
  font-size: 0.82rem;
}

/* Botões de Ação Imediata de Campo (Mobile-First Layout) */
.booking-card-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid #F1F5F9;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .booking-card-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.btn-card-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.84rem;
  text-decoration: none;
  border: 1px solid;
  transition: all 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
}

/* WhatsApp: Destaque Completo no Mobile */
.btn-card-action.wpp {
  width: 100%;
  min-height: 44px;
  background: #ECFDF5;
  color: #047857;
  border-color: #A7F3D0;
  font-weight: 700;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .btn-card-action.wpp {
    width: auto;
  }
}

.btn-card-action.wpp:hover {
  background: #10B981;
  color: #FFFFFF;
  border-color: #10B981;
}

/* Grupo GPS (Waze, Maps, Agenda) */
.booking-actions-group {
  display: flex;
  gap: 8px;
  width: 100%;
}

@media (min-width: 768px) {
  .booking-actions-group {
    display: contents;
  }
}

.btn-card-action.waze {
  flex: 1 1 33%;
  min-height: 42px;
  background: #F0F9FF;
  color: #0369A1;
  border-color: #BAE6FD;
  font-weight: 700;
}

@media (min-width: 768px) {
  .btn-card-action.waze {
    flex: none;
  }
}

.btn-card-action.waze:hover {
  background: #0284C7;
  color: #FFFFFF;
  border-color: #0284C7;
}

.btn-card-action.gmaps {
  flex: 1 1 33%;
  min-height: 42px;
  background: #F8FAFC;
  color: #334155;
  border-color: #CBD5E1;
  font-weight: 600;
}

@media (min-width: 768px) {
  .btn-card-action.gmaps {
    flex: none;
  }
}

.btn-card-action.gmaps:hover {
  background: #E2E8F0;
  color: #0F172A;
}

.btn-card-action.cal {
  flex: 1 1 33%;
  min-height: 42px;
  background: #F8FAFC;
  color: #334155;
  border-color: #CBD5E1;
  font-weight: 600;
}

@media (min-width: 768px) {
  .btn-card-action.cal {
    flex: none;
  }
}

.btn-card-action.cal:hover {
  background: #E2E8F0;
  color: #0F172A;
}

/* Grupo de Gerenciamento (Status e Exclusão) */
.booking-mgmt-group {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

@media (min-width: 768px) {
  .booking-mgmt-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    width: auto;
  }
}

.status-change-dropdown {
  flex: 1;
}

@media (min-width: 768px) {
  .status-change-dropdown {
    flex: none;
  }
}

.status-select {
  width: 100%;
  min-height: 42px;
  background: #FFFFFF;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #0F172A;
  cursor: pointer;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.status-select:focus {
  border-color: #0071E3;
}

.btn-card-delete {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: #FFFFFF;
  border: 1px solid #FECACA;
  color: #DC2626;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-card-delete:hover {
  background: #EF4444;
  color: #FFFFFF;
  border-color: #EF4444;
}

.bookings-empty-state {
  text-align: center;
  padding: 40px 18px;
  background: #FFFFFF;
  border: 1.5px dashed #CBD5E1;
  border-radius: 12px;
}

.empty-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #0071E3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px auto;
}

.bookings-empty-state h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 6px;
}

.bookings-empty-state p {
  color: #64748B;
  font-size: 0.88rem;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.45;
}

/* -------------------------------------------------------------
   ABA 3: CONFIGURAÇÕES, SENHA & BACKUP (MOBILE FIRST)
   ------------------------------------------------------------- */
.settings-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 1024px) {
  .settings-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}

/* Botões Corporativos Administrativos - Zero Pills & Mobile-First */
.btn-admin-primary {
  width: 100%;
  min-height: 46px;
  background: #0071E3;
  color: #FFFFFF !important;
  border: 1px solid #0071E3;
  border-radius: 8px !important;
  padding: 10px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 113, 227, 0.15);
  text-decoration: none;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .btn-admin-primary {
    width: auto;
  }
}

.btn-admin-primary:hover {
  background: #005bb5;
  border-color: #005bb5;
  transform: translateY(-1px);
}

.btn-admin-secondary {
  width: 100%;
  min-height: 46px;
  background: #FFFFFF;
  color: #0F172A !important;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px !important;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .btn-admin-secondary {
    width: auto;
  }
}

.btn-admin-secondary:hover {
  background: #F8FAFC;
  border-color: #94A3B8;
}

.btn-admin-danger {
  width: 100%;
  min-height: 46px;
  background: #FEF2F2;
  color: #DC2626 !important;
  border: 1.5px solid #FECACA;
  border-radius: 8px !important;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .btn-admin-danger {
    width: auto;
  }
}

.btn-admin-danger:hover {
  background: #EF4444;
  color: #FFFFFF !important;
  border-color: #EF4444;
}

