/* =======================================================================
   CALL TECH COPIADORAS – DESIGN SYSTEM PREMIUM DE ELITE
   Foco: Modernidade, Movimento, Vidro (Glassmorphism), Grade Bento e Alto Impacto
   ======================================================================= */

/* -----------------------------------------------------------------------
   1. DESIGN TOKENS & VARIÁVEIS
   ----------------------------------------------------------------------- */
:root {
  /* Brand Colors */
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-dark: #1E2035;
  /* Slate escuro da marca */
  --bg-dark-card: rgba(30, 32, 53, 0.7);

  --color-primary: #4E8E9B;
  /* Teal original ("call") */
  --color-primary-hover: #3D717C;
  --color-primary-light: rgba(78, 142, 155, 0.15);
  --color-primary-glow: rgba(78, 142, 155, 0.25);

  --color-secondary: #4D4E67;
  /* Slate original ("tech") */
  --color-secondary-hover: #3b3c52;

  /* Status & Accents (Conceito CMYK da Logo) */
  --accent-cyan: #00ADEF;
  /* Cyan CMYK */
  --accent-magenta: #C7006E;
  /* Magenta CMYK */
  --accent-amber: #D97706;
  /* Amarelo CMYK */
  --accent-emerald: #059669;
  /* Verde (OPEX/Economia) */
  --accent-emerald-light: rgba(5, 150, 105, 0.1);

  /* Neutrals */
  --neutral-50: #f8fafc;
  --neutral-100: #f1f5f9;
  --neutral-200: #e2e8f0;
  --neutral-300: #cbd5e1;
  --neutral-400: #94a3b8;
  --neutral-500: #64748b;
  --neutral-600: #475569;
  --neutral-700: #334155;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  /* Fonts */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows */
  --shadow-sm: 0 2px 8px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 24px -4px rgba(15, 23, 42, 0.04), 0 4px 12px -2px rgba(15, 23, 42, 0.02);
  --shadow-lg: 0 20px 40px -8px rgba(15, 23, 42, 0.08), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
  --shadow-glow-cyan: 0 0 25px rgba(0, 173, 239, 0.25);
  --shadow-glow-primary: 0 0 30px rgba(78, 142, 155, 0.25);

  /* Borders & Radius */
  --border-light: 1px solid rgba(226, 232, 240, 0.8);
  --border-dark: 1px solid rgba(255, 255, 255, 0.08);
  --border-glow: 1px solid rgba(78, 142, 155, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: all 0.2s var(--ease-out);
  --transition-normal: all 0.4s var(--ease-out);
  --transition-slow: all 0.8s var(--ease-out);

  /* Heights */
  --header-h: 120px;
  --topbar-h: 40px;
}

/* -----------------------------------------------------------------------
   2. RESET & BASE
   ----------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--neutral-700);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--header-h) + var(--topbar-h));
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Scrollbar Customizada */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--neutral-100);
}

::-webkit-scrollbar-thumb {
  background: var(--neutral-300);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neutral-400);
}

/* -----------------------------------------------------------------------
   3. ELEMENTOS DE ANIMAÇÃO E APRESENTAÇÃO (Scroll Reveal)
   ----------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: transform, opacity;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Aurora background */
.aurora-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, rgba(255, 255, 255, 0) 70%);
  top: -200px;
  right: -100px;
  z-index: -1;
  pointer-events: none;
  animation: aurora-rotate 25s infinite linear;
  filter: blur(40px);
}

@keyframes aurora-rotate {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-50px, 50px) rotate(180deg);
  }

  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

/* -----------------------------------------------------------------------
   4. TIPOGRAFIA & COMPONENTES COMUNS (Botões e Badges)
   ----------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--neutral-900);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

p {
  color: var(--neutral-600);
}

/* Gradientes no texto */
.text-gradient {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Utilitários de Visibilidade */
.mobile-only {
  display: none !important;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
}

.badge-teal {
  background-color: rgba(6, 182, 212, 0.08);
  color: var(--color-secondary-hover);
  border: 1px solid rgba(6, 182, 212, 0.15);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--color-secondary);
  box-shadow: 0 0 8px var(--color-secondary);
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e40af 100%);
  color: #ffffff;
  box-shadow: var(--shadow-sm), 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), var(--shadow-glow-primary);
}

.btn-outline {
  background: var(--bg-secondary);
  color: var(--neutral-800);
  border: 1px solid var(--neutral-200);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-ghost {
  color: var(--neutral-700);
  background: transparent;
}

.btn-ghost:hover {
  background-color: var(--neutral-100);
  color: var(--neutral-900);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

/* -----------------------------------------------------------------------
   5. TOPBAR & SITE HEADER (Navegação)
   ----------------------------------------------------------------------- */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-h);
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  z-index: 101;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-contact {
  display: flex;
  gap: 24px;
}

.topbar-contact a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
}

.topbar-contact a:hover {
  color: #ffffff;
}

.topbar-contact svg {
  width: 14px;
  height: 14px;
  margin-left: 4px;
}

.topbar-actions {
  display: flex;
  gap: 12px;
}

.topbar-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  color: #ffffff;
  font-weight: 500;
}

.topbar-pill:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot-cyan {
  background-color: var(--accent-cyan);
  box-shadow: 0 0 6px var(--accent-cyan);
}

.dot-emerald {
  background-color: var(--accent-emerald);
  box-shadow: 0 0 6px var(--accent-emerald);
}

.dot-amber {
  background-color: var(--accent-amber);
  box-shadow: 0 0 6px var(--accent-amber);
}

/* Header Site */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  height: var(--header-h);
  background-color: rgba(248, 250, 252, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 100;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  display: flex;
  align-items: center;
  transition: var(--transition-normal);
}

.site-header.scrolled {
  --header-h: 70px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
  border-bottom-color: rgba(226, 232, 240, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: var(--header-h);
  width: auto;
  transition: var(--transition-normal);
}

.nav-menu {
  display: flex;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--neutral-600);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover {
  color: var(--color-primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

.nav-link.active {
  color: var(--color-primary);
  font-weight: 600;
}

.nav-link.active::after {
  width: 100%;
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
}

/* Overlay do menu mobile */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
  backdrop-filter: blur(2px);
}

.mobile-overlay.visible {
  opacity: 1;
  pointer-events: auto;
}

/* -----------------------------------------------------------------------
   6. HERO SECTION (Movimento e Aurora)
   ----------------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 80px 0 100px 0;
  overflow: hidden;
  background: radial-gradient(100% 100% at 50% 0%, rgba(235, 243, 255, 0.4) 0%, rgba(248, 250, 252, 0) 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-kicker {
  margin-bottom: 24px;
}

.hero-title {
  color: var(--neutral-900);
  margin-bottom: 24px;
  font-size: clamp(2.3rem, 4.5vw, 3.8rem);
  line-height: 1.15;
}

.hero-title em {
  font-style: normal;
  position: relative;
  display: inline-block;
  color: var(--color-primary);
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(37, 99, 235, 0.15);
  z-index: -1;
}

.hero-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--neutral-600);
  margin-bottom: 40px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: var(--border-light);
  padding-top: 32px;
  width: 100%;
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--neutral-900);
}

.trust-label {
  font-size: 0.8rem;
  color: var(--neutral-500);
  margin-top: 2px;
}

.trust-sep {
  width: 1px;
  height: 36px;
  background-color: var(--neutral-200);
}

/* Hero Right: Stack de Cards */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hcard-main {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  transition: var(--transition-normal);
}

.hcard-main:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.12), var(--shadow-glow-primary);
}

.hcard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.hcard-icon {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hcard-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  background-color: var(--accent-emerald-light);
  color: var(--accent-emerald);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.hcard-title {
  margin-bottom: 12px;
}

.hcard-desc {
  font-size: 0.95rem;
  color: var(--neutral-600);
  margin-bottom: 24px;
}

.hcard-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hcard-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--neutral-800);
}

.hcard-list .check {
  color: var(--accent-emerald);
  background-color: var(--accent-emerald-light);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hcard-list svg {
  width: 12px;
  height: 12px;
}

/* Floating card */
.hcard-float {
  position: absolute;
  bottom: -24px;
  right: -32px;
  background: var(--bg-dark);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), var(--shadow-glow-cyan);
  z-index: 3;
  width: 190px;
  border: var(--border-dark);
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.hcard-float-label {
  font-size: 0.75rem;
  color: var(--neutral-400);
  font-weight: 500;
}

.hcard-float-stat {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-secondary);
  line-height: 1;
  margin: 4px 0;
}

.hcard-float-desc {
  font-size: 0.75rem;
  color: var(--neutral-300);
  line-height: 1.3;
}

/* -----------------------------------------------------------------------
   7. SEÇÕES COMUNS & TITULARES
   ----------------------------------------------------------------------- */
.section-pad {
  padding: 100px 0;
}

.section-head {
  margin-bottom: 60px;
  max-width: 700px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-overline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 20px;
}

.section-body {
  font-size: 1.1rem;
  color: var(--neutral-600);
}

/* Stats Strip */
.stats-strip {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 48px 0;
  border-top: var(--border-dark);
  border-bottom: var(--border-dark);
  position: relative;
  overflow: hidden;
  z-index: 5;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 30%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.85rem;
  color: var(--neutral-400);
  line-height: 1.4;
}

/* -----------------------------------------------------------------------
   8. EQUIPAMENTOS (Catálogo Dinâmico)
   ----------------------------------------------------------------------- */
.catalog-tabs-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 22px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  background-color: var(--neutral-100);
  color: var(--neutral-600);
  border: 1px solid transparent;
}

.tab-btn:hover {
  background-color: var(--neutral-200);
  color: var(--neutral-900);
}

.tab-btn.active {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-color: rgba(37, 99, 235, 0.2);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
  min-height: 480px;
}

.product-card {
  background-color: var(--bg-secondary);
  border: var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 10px 25px -5px rgba(15, 23, 42, 0.04);
  border-color: rgba(37, 99, 235, 0.2);
}

.product-img-area {
  background: radial-gradient(circle at 50% 50%, #ffffff 0%, var(--neutral-50) 100%);
  padding: 32px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
  border-bottom: 1px solid var(--neutral-100);
}

.product-img {
  max-height: 160px;
  object-fit: contain;
  transition: var(--transition-normal);
}

.product-card:hover .product-img {
  transform: scale(1.05);
}

.product-badge-abs {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: rgba(15, 23, 42, 0.06);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--neutral-800);
  z-index: 2000;
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-name {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--neutral-400);
  margin-bottom: 4px;
}

.product-model {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--neutral-900);
  margin-bottom: 16px;
}

.product-specs {
  list-style: none;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-specs li {
  display: flex;
  justify-content: space-between;
  font-size: 0.6rem;
  border-bottom: 1px dashed var(--neutral-200);
  padding-bottom: 6px;
}

.spec-k {
  color: var(--neutral-500);
}

.spec-v {
  font-weight: 600;
  color: var(--neutral-800);
}

.product-cta {
  margin-top: auto;
}

/* -----------------------------------------------------------------------
   9. SERVIÇOS (Grids Modernos)
   ----------------------------------------------------------------------- */
.services-bg {
  background-color: #f1f5f9;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.service-card {
  background-color: var(--bg-secondary);
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.25);
}

.svc-icon-wrap {
  width: 52px;
  height: 52px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.svc-icon-wrap svg {
  width: 26px;
  height: 26px;
}

.svc-title {
  margin-bottom: 12px;
}

.svc-body {
  font-size: 0.95rem;
  color: var(--neutral-600);
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.svc-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.svc-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease-out);
}

.svc-link:hover {
  color: var(--color-primary-hover);
}

.svc-link:hover svg {
  transform: translateX(4px);
}

/* -----------------------------------------------------------------------
   10. DIFERENCIAIS (BENTO GRID - PROFISSIONAL DE ELITE)
   ----------------------------------------------------------------------- */
.why-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
}

/* Bento Grid */
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.why-item {
  background-color: var(--bg-secondary);
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition-normal);
}

.why-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(37, 99, 235, 0.15);
}

/* Grid Layout Customizations for Bento */
.why-features> :nth-child(1) {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-color: rgba(37, 99, 235, 0.15);
}

.why-icon {
  width: 48px;
  height: 48px;
  background-color: rgba(6, 182, 212, 0.08);
  color: var(--color-secondary-hover);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-icon svg {
  width: 22px;
  height: 22px;
}

.why-content h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--neutral-900);
}

.why-content p {
  font-size: 0.9rem;
  color: var(--neutral-500);
}

/* Sticky Card */
.why-sticky {
  position: relative;
}

.why-card {
  position: sticky;
  top: 110px;
  background: linear-gradient(135deg, var(--neutral-900) 0%, #0b1528 100%);
  border: var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  color: #ffffff;
  box-shadow: var(--shadow-lg), var(--shadow-glow-primary);
  display: flex;
  flex-direction: column;
}

.why-card-over {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  font-weight: 700;
  margin-bottom: 16px;
}

.why-card-title {
  color: #ffffff;
  margin-bottom: 16px;
}

.why-card-body {
  font-size: 0.95rem;
  color: var(--neutral-300);
  line-height: 1.6;
  margin-bottom: 32px;
}

.why-card-btn {
  background: var(--bg-secondary);
  color: var(--neutral-900);
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(255, 255, 255, 0.1);
}

.why-card-btn:hover {
  transform: translateY(-2px);
  background-color: var(--neutral-100);
}

/* -----------------------------------------------------------------------
   11. TESTEMUNHOS & PROVA SOCIAL
   ----------------------------------------------------------------------- */
.testimonials-bg {
  background-color: #f8fafc;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.testimonial-card {
  background-color: var(--bg-secondary);
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.tcard-rating {
  color: var(--accent-amber);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.tcard-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--neutral-700);
  line-height: 1.7;
  margin-bottom: 32px;
  flex-grow: 1;
}

.tcard-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tcard-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, rgba(6, 182, 212, 0.1) 100%);
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tcard-name {
  font-size: 0.95rem;
  color: var(--neutral-900);
}

.tcard-company {
  font-size: 0.75rem;
  color: var(--neutral-400);
}

/* -----------------------------------------------------------------------
   12. SOBRE NÓS
   ----------------------------------------------------------------------- */
.about-bg {
  background-color: #ffffff;
}

.about-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.about-text {
  font-size: 1rem;
  color: var(--neutral-600);
  margin-bottom: 24px;
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.about-pill {
  background-color: var(--neutral-100);
  color: var(--neutral-700);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Imagem da Sede com Efeito de Vidro */
.about-image-wrap {
  position: relative;
}

.about-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-slow);
  width: 100%;
}

.about-image-wrap:hover .about-image {
  transform: scale(1.02);
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  border: var(--border-dark);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* MVV Stack */
.mvv-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mvv-block {
  background-color: var(--neutral-50);
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: var(--transition-normal);
}



.mvv-block-dark {
  background: var(--bg-dark);
  border-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.mvv-label {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 12px;
}

.mvv-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--neutral-600);
}

.mvv-block-dark .mvv-text {
  color: var(--neutral-300);
}

.mvv-date {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: #ffffff;
}



.mvv-location {
  font-size: 0.8rem;
  color: var(--neutral-400);
  margin-top: 4px;
}

/* -----------------------------------------------------------------------
   13. FAQ (Perguntas Frequentes)
   ----------------------------------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
}

.faq-item {
  background-color: var(--bg-secondary);
  border: var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-normal);
}

.faq-item:hover {
  border-color: rgba(37, 99, 235, 0.15);
}

.faq-trigger {
  width: 100%;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  color: var(--neutral-400);
  transition: transform 0.3s var(--ease-out);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-out);
}

.faq-body-inner {
  padding: 0 24px 24px 24px;
  font-size: 0.95rem;
  color: var(--neutral-500);
  line-height: 1.6;
}

/* Estado Aberto */
.faq-item.active {
  background-color: #ffffff;
  border-color: rgba(37, 99, 235, 0.2);
  box-shadow: var(--shadow-md);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-item.active .faq-body {
  max-height: 300px;
}

/* -----------------------------------------------------------------------
   14. CONTATO & FORMULÁRIO (Card Glassmorphism)
   ----------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
}

.contact-layout>* {
  min-width: 0;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.contact-item a,
.contact-item p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--neutral-900);
  word-break: break-word;
}

.contact-item a:hover {
  color: var(--color-primary);
}

.geo-area {
  background-color: var(--neutral-100);
  border: var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-top: 48px;
}

.geo-label {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--neutral-800);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.geo-area p {
  font-size: 0.85rem;
  color: var(--neutral-600);
  line-height: 1.5;
}

/* Form Card Glass */
.form-card {
  background: var(--bg-secondary);
  border: var(--border-light);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  z-index: 10;
}

.form-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(6, 182, 212, 0.05) 100%);
  z-index: -1;
  pointer-events: none;
}

.form-card h3 {
  margin-bottom: 8px;
}

.form-card-desc {
  font-size: 0.9rem;
  color: var(--neutral-500);
  margin-bottom: 32px;
}

/* Printer Animation Overlay */
.form-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 20;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-overlay.active {
  opacity: 1;
}

.form-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.printer-svg {
  width: 64px;
  height: 64px;
  color: var(--color-primary);
  animation: printer-bounce 0.8s ease-in-out infinite alternate;
}

.paper-rect {
  fill: #ffffff;
  stroke: var(--color-primary);
  stroke-width: 2;
  animation: paper-print 1.6s ease-in-out infinite;
}

.paper-lines {
  stroke: var(--neutral-400);
  stroke-width: 1.5;
  animation: paper-print 1.6s ease-in-out infinite;
}

.overlay-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--neutral-800);
  letter-spacing: 0.05em;
  animation: text-pulse 1.2s ease-in-out infinite alternate;
}

@keyframes printer-bounce {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-4px);
  }
}

@keyframes paper-print {
  0% {
    transform: translateY(-8px);
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    transform: translateY(4px);
    opacity: 0.8;
  }
}

@keyframes text-pulse {
  0% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}

.form-field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neutral-700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.8rem;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--neutral-200);
  background-color: var(--neutral-50);
  color: var(--neutral-900);
  transition: var(--transition-fast);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-status {
  margin-top: 16px;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  display: none;
}

.form-status.success {
  display: block;
  background-color: var(--accent-emerald-light);
  color: var(--accent-emerald);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.form-status.error {
  display: block;
  background-color: rgba(239, 68, 68, 0.08);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

/* -----------------------------------------------------------------------
   15. FOOTER
   ----------------------------------------------------------------------- */
.site-footer {
  background-color: var(--bg-dark);
  color: #ffffff;
  padding: 80px 0 40px 0;
  border-top: var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 24px;
}

.footer-brand-text {
  color: var(--neutral-400);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-300);
}

.social-link:hover {
  background-color: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer-cnpj {
  font-size: 0.75rem;
  color: var(--neutral-500);
}

.footer-col h5 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--neutral-400);
  font-size: 0.85rem;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 4px;
}

.footer-contact-info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-contact-info li {
  display: flex;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--neutral-400);
}

.footer-contact-info svg {
  width: 16px;
  height: 16px;
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-info a {
  color: var(--neutral-300);
}

.footer-contact-info a:hover {
  color: #ffffff;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-top: 24px;
}

.badge-dot-green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-emerald);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--neutral-500);
}

/* -----------------------------------------------------------------------
   16. WHATSAPP FLUTUANTE (Com micro-interações)
   ----------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  z-index: 99;
  transition: var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}

/* -----------------------------------------------------------------------
   17. MEDIA QUERIES (Responsividade Mobile-First)
   ----------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --header-h: 76px;
  }

  body {
    padding-top: var(--header-h);
  }

  .topbar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-copy {
    align-items: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hcard-float {
    right: 0;
  }

  .why-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-card {
    position: relative;
    top: 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .mvv-stack {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-layout>* {
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: var(--header-h);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-h));
    background-color: var(--bg-secondary);
    border-left: var(--border-light);
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.05);
    padding: 40px;
    transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 99;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 24px;
  }

  .mobile-only {
    display: block !important;
  }

  .btn-header-cta {
    display: none;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .why-features> :nth-child(1) {
    grid-column: span 1;
    flex-direction: column;
    align-items: flex-start;
  }

  .form-card {
    padding: 32px 20px;
  }

  .contact-item a {
    font-size: 1rem;
    word-break: break-all;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  /* Hamburger lines */
  .hamburger-lines {
    display: block;
    height: 18px;
    width: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hamburger-lines span {
    display: block;
    height: 2px;
    width: 100%;
    border-radius: 10px;
    background: var(--neutral-800);
    transition: transform 0.3s ease-in-out;
  }

  .menu-toggle[aria-expanded="true"] .hamburger-lines span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .hamburger-lines span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .hamburger-lines span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-trust {
    flex-direction: column;
    gap: 16px;
  }

  .trust-sep {
    display: none;
  }

  .stats-inner {
    grid-template-columns: 1fr;
  }
}

/* =====================================================================
   Validação e Sugestão Inteligente de E-mail (Anti-Spam & Levenshtein)
   ===================================================================== */
.field-error-msg {
  color: #ef4444;
  font-size: 0.82rem;
  font-weight: 600;
  margin-top: 6px;
  display: none;
}

.field-suggestion-box {
  background-color: rgba(37, 99, 235, 0.08);
  border: 1px dashed rgba(37, 99, 235, 0.35);
  color: #1d4ed8;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
  margin-top: 6px;
  cursor: pointer;
  display: none;
  transition: all 0.2s ease;
}

.field-suggestion-box:hover {
  background-color: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.6);
}