/* ==========================================================================
   SMART AUTOMAÇÃO COMERCIAL - ESTILOS PRINCIPAIS
   Arquitetura Mobile-First | CSS3 Puro | Performance & Conversão
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. VARIÁVEIS DE TEMA E CORES
   -------------------------------------------------------------------------- */
:root {
  /* Cores Principais da Marca */
  --primary: #FF6B00;
  --primary-dark: #E65100;
  --primary-light: #FF8A3D;
  --primary-subtle: #FFF4EC;
  --primary-gradient: linear-gradient(135deg, #FF7A00 0%, #E65100 100%);
  
  /* Cores de Acento & Ações */
  --whatsapp: #25D366;
  --whatsapp-dark: #1EBE5D;
  --whatsapp-subtle: #E8F9EE;
  
  /* Cores Neutras & Escuras */
  --dark: #0F172A;
  --dark-light: #1E293B;
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --bg-white: #FFFFFF;
  --bg-subtle: #F8FAFC;
  --bg-subtle-alt: #F1F5F9;
  --border-light: #E2E8F0;
  --border-subtle: #F1F5F9;
  
  /* Sombras Modernas */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 35px -10px rgba(255, 107, 0, 0.2);
  --shadow-whatsapp: 0 10px 25px -5px rgba(37, 211, 102, 0.35);

  /* Dimensões & Espaçamentos */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --container-max: 1260px;
  --header-height: 74px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. UTILITÁRIOS E LAYOUT
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--container-max);
}

.section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.section-bg {
  background-color: var(--bg-subtle);
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--primary-subtle);
  color: var(--primary-dark);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 107, 0, 0.2);
}

.section-title {
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

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

/* --------------------------------------------------------------------------
   4. BOTÕES & CTAS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.5rem;
  min-height: 48px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all var(--transition-fast);
  white-space: normal;
  user-select: none;
}

.btn-primary {
  background: var(--primary-gradient);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(230, 81, 0, 0.35);
}

.btn-primary:hover, .btn-primary:active {
  background: linear-gradient(135deg, #E65100 0%, #C84600 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 81, 0, 0.45);
}

.btn-whatsapp {
  background-color: var(--whatsapp);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover, .btn-whatsapp:active {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
}

.btn-outline {
  background-color: transparent;
  color: var(--dark);
  border-color: var(--border-light);
  background-color: var(--bg-white);
}

.btn-outline:hover, .btn-outline:active {
  border-color: var(--primary);
  color: var(--primary);
  background-color: var(--primary-subtle);
}

.btn-block {
  width: 100%;
}

.btn-lg {
  padding: 1rem 2rem;
  min-height: 54px;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVEGAÇÃO
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  height: var(--header-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-normal);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
  background-color: #FFFFFF;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 1002;
}

.brand-logo {
  height: 52px;
  max-height: 54px;
  width: auto;
  object-fit: contain;
}

/* Menu Mobile Overlay & Gaveta */
.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 998;
}

.nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  height: 100dvh;
  background-color: #FFFFFF;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  padding: 5.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease, opacity 0.35s ease;
  z-index: 1001;
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.nav-menu.active {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

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

.nav-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Botão Hambúrguer Mobile */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  padding: 0;
  border-radius: var(--radius-sm);
}

.hamburger-line {
  width: 24px;
  height: 2.5px;
  background-color: var(--dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(10px);
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: 2rem;
  padding-bottom: 3.5rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F3 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.badge-trial {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFF1E6;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 0.95rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 107, 0, 0.3);
  margin-bottom: 1.25rem;
}

.badge-trial .dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
  animation: pulse-dot 1.5s infinite;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

/* Selos de Confiança no Hero */
.hero-trust-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  font-size: 0.85rem;
  color: var(--text-main);
  font-weight: 600;
  margin-top: 0.5rem;
  width: 100%;
}

.hero-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  white-space: nowrap;
  font-size: 0.8125rem;
}

.hero-trust-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Imagem Showcase do Hero */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-frame {
  position: relative;
  width: 100%;
  border-radius: var(--radius-xl);
  background: #FFFFFF;
  padding: 0.65rem;
  box-shadow: 0 25px 55px -10px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(226, 232, 240, 0.8);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1500 / 1040;
  border-radius: var(--radius-lg);
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transform: scale(1.08);
  transition: transform 0.5s ease;
}

.hero-floating-badge {
  position: absolute;
  background: #FFFFFF;
  padding: 0.7rem 1.05rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
  border: 1px solid var(--border-light);
  white-space: nowrap;
}

.hero-badge-1 {
  bottom: -15px;
  left: 10px;
}

.hero-badge-2 {
  top: -15px;
  right: 10px;
}

.badge-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-subtle);
  color: var(--primary);
  flex-shrink: 0;
}

.badge-icon.green {
  background: var(--whatsapp-subtle);
  color: var(--whatsapp);
}

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

.badge-text .title {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}

.badge-text .subtitle {
  font-size: 0.68rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   7. SEGMENTOS ATENDIDOS (CARROSSEL / GRID)
   -------------------------------------------------------------------------- */
.segments-wrapper {
  position: relative;
  width: 100%;
}

.segments-carousel-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0.5rem 0 1.5rem;
  margin: 0 -1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.segments-carousel-container::-webkit-scrollbar {
  display: none;
}

.segments-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.segment-card {
  scroll-snap-align: start;
  width: 150px;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.85rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  cursor: pointer;
  user-select: none;
}

.segment-card:hover, .segment-card:active {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.segment-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all var(--transition-fast);
}

.segment-card:hover .segment-icon-wrap {
  transform: scale(1.08);
  background: var(--primary);
  color: #FFFFFF;
}

.segment-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background-color: var(--border-light);
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  width: 24px;
  background-color: var(--primary);
}

/* --------------------------------------------------------------------------
   8. SEÇÃO DE VÍDEO INSTITUCIONAL
   -------------------------------------------------------------------------- */
.video-section {
  background: var(--dark);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.video-section .section-title {
  color: #FFFFFF;
}

.video-section .section-desc {
  color: var(--text-light);
}

.video-section .section-tag {
  background: rgba(255, 107, 0, 0.15);
  color: var(--primary-light);
  border-color: rgba(255, 107, 0, 0.3);
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
  background: #000000;
  aspect-ratio: 16 / 9;
}

.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  cursor: pointer;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.video-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.play-button-custom {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--primary-gradient);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.6);
  animation: pulse-glow 2s infinite;
  transition: transform 0.2s ease;
}

.play-button-custom svg {
  width: 28px;
  height: 28px;
  margin-left: 4px;
}

.play-button-custom:hover {
  transform: scale(1.1);
}

.video-prompt-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* --------------------------------------------------------------------------
   9. FUNCIONALIDADES
   -------------------------------------------------------------------------- */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 0, 0.3);
}

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

.feature-icon-box {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--primary-subtle);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-box svg {
  width: 26px;
  height: 26px;
}

.feature-content h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.feature-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   10. INTEGRAÇÕES
   -------------------------------------------------------------------------- */
.integrations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.integration-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.integration-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.integration-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 1.4rem;
}

.integration-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}

.integration-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. APLICATIVOS MÓVEIS (GIFS COM FUNDO TRANSPARENTE)
   -------------------------------------------------------------------------- */
.apps-section {
  background: linear-gradient(180deg, #F8FAFC 0%, #FFF5ED 100%);
}

.apps-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.app-block {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

/* Container do GIF 100% Transparente */
.app-media-wrap {
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.app-gif {
  width: 100%;
  height: auto;
  display: block;
  background: transparent !important;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.12));
}

.app-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--primary-subtle);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.app-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.app-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.app-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  width: 100%;
  margin-bottom: 1.5rem;
}

.app-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 600;
}

.app-benefit-item svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   12. PROVA SOCIAL & DIFERENCIAIS
   -------------------------------------------------------------------------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.stat-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.stat-number {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.3;
}

.differentials-box {
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 2rem 1.5rem;
  color: #FFFFFF;
}

.differentials-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  text-align: center;
  color: #FFFFFF;
}

.differentials-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.diff-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 107, 0, 0.2);
  color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.diff-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.diff-text p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   13. CTA FINAL DE CONVERSÃO
   -------------------------------------------------------------------------- */
.cta-final-section {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #FFFFFF;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 4rem 1.25rem;
}

.cta-final-card {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-final-title {
  font-size: clamp(1.8rem, 5vw, 2.75rem);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-final-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-final-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #94A3B8;
  margin-top: 1.25rem;
}

/* --------------------------------------------------------------------------
   14. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #0B1120;
  color: #94A3B8;
  padding-top: 3.5rem;
  padding-bottom: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.footer-logo {
  height: 42px;
  width: auto;
  filter: brightness(1.2);
}

.footer-about {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #94A3B8;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-list a {
  font-size: 0.9rem;
  color: #94A3B8;
  transition: color var(--transition-fast);
}

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

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  color: var(--primary);
  flex-shrink: 0;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.social-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.8125rem;
  color: #64748B;
}

/* --------------------------------------------------------------------------
   15. BOTÃO FLUTUANTE WHATSAPP
   -------------------------------------------------------------------------- */
.floating-whatsapp {
  position: fixed !important;
  bottom: 24px;
  bottom: max(20px, calc(16px + env(safe-area-inset-bottom, 0px)));
  right: 20px;
  right: max(16px, calc(16px + env(safe-area-inset-right, 0px)));
  z-index: 999999 !important;
  display: flex !important;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  will-change: transform;
  pointer-events: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.floating-whatsapp-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background-color: var(--whatsapp);
  color: #FFFFFF;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45), 0 8px 24px rgba(0, 0, 0, 0.25);
  position: relative;
  transition: transform 0.2s ease, background-color 0.2s ease;
  flex-shrink: 0;
  pointer-events: auto !important;
}

.floating-whatsapp-btn svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
  display: block;
}

.floating-whatsapp-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
}

.floating-whatsapp:hover .floating-whatsapp-btn,
.floating-whatsapp:active .floating-whatsapp-btn {
  transform: scale(1.08);
  background-color: var(--whatsapp-dark);
}

.floating-whatsapp-tooltip {
  display: none !important;
}

@media (max-width: 480px) {
  .floating-whatsapp {
    bottom: max(18px, calc(14px + env(safe-area-inset-bottom, 0px)));
    right: max(16px, calc(14px + env(safe-area-inset-right, 0px)));
    display: flex !important;
  }
  
  .floating-whatsapp-btn {
    width: 56px;
    height: 56px;
    display: flex !important;
  }
  
  .floating-whatsapp-btn svg {
    width: 30px;
    height: 30px;
  }
  
  .floating-whatsapp-tooltip {
    display: none !important;
  }

  .hero-floating-badge {
    padding: 0.45rem 0.75rem;
    gap: 0.45rem;
  }

  .hero-floating-badge .badge-icon {
    width: 28px;
    height: 28px;
  }

  .hero-floating-badge .badge-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero-floating-badge .title {
    font-size: 0.76rem;
  }

  .hero-floating-badge .subtitle {
    font-size: 0.68rem;
  }

  .hero-badge-1 {
    bottom: -10px;
    left: 4px;
  }

  .hero-badge-2 {
    top: -10px;
    right: 4px;
  }
}

/* --------------------------------------------------------------------------
   16. MEDIA QUERIES (TABLET & DESKTOP EXPANSION)
   -------------------------------------------------------------------------- */

/* TABLET (481px até 768px) */
@media (min-width: 481px) {
  .hero-cta-group {
    flex-direction: row;
  }
  
  .hero-cta-group .btn {
    flex: 1;
  }
  
  .cta-final-buttons {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
  
  .cta-final-buttons .btn {
    width: auto;
    min-width: 260px;
  }
}

/* TABLET GRANDE / DESKTOP (769px+) */
@media (min-width: 769px) {
  .floating-whatsapp-tooltip {
    display: inline-flex !important;
    align-items: center;
    background-color: #FFFFFF;
    color: var(--dark);
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.45rem 0.85rem;
    border-radius: var(--radius-full);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    border: 1px solid var(--border-light);
    pointer-events: auto;
  }

  .section {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  
  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2.5rem;
  }
  
  .hero-visual {
    max-width: 100%;
    margin: 0;
  }

  .hero-card-frame {
    padding: 0.75rem;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .integrations-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  
  .app-block {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    padding: 2.5rem 2rem;
    gap: 2.5rem;
  }
  
  .app-block.reverse {
    grid-template-columns: 1.1fr 0.9fr;
  }
  
  .app-block.reverse .app-media-wrap {
    order: 2;
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
  }
}

/* DESKTOP (1025px+) */
@media (min-width: 1025px) {
  .hamburger-btn {
    display: none;
  }
  
  .nav-backdrop {
    display: none;
  }
  
  .nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    height: 100%;
  }

  .logo-link {
    position: relative;
    z-index: 10;
  }
  
  /* Menu Totalmente Centralizado no Topo */
  .nav-menu {
    position: absolute;
    left: 50%;
    top: 50%;
    right: auto;
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
    background: transparent;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
  
  .nav-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  
  .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    font-size: 0.94rem;
    font-weight: 600;
    padding: 0 0.85rem;
    line-height: 1;
    border-radius: var(--radius-sm);
    white-space: nowrap;
  }
  
  .nav-actions {
    display: none;
  }
  
  /* Hero Imagem com Destaque Gigante */
  .hero-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 3.5rem;
    align-items: center;
  }

  .hero-visual {
    max-width: 100%;
    transform: scale(1.08);
    transform-origin: center center;
  }

  .hero-card-frame {
    padding: 0.85rem;
  }

  .hero-trust-list {
    flex-wrap: nowrap;
    gap: 0.45rem;
  }

  .hero-trust-item {
    font-size: 0.78rem;
    padding: 0.35rem 0.55rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .integrations-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .differentials-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
