/* ================================
   DESIGN SYSTEM MELHORADO - UX/UI
   ================================ */
:root {
  /* Colors - Primary Palette */
  --color-primary: #FF6600; /* Laranja */
  --color-primary-dark: #E65C00;
  --color-primary-light: #FF8533;
  --color-primary-gradient: linear-gradient(135deg, #FF6600 0%, #FF9933 100%);
  
  /* Colors - Neutral Palette */
  --color-text-primary: #0F172A;
  --color-text-secondary: #475569;
  --color-text-tertiary: #94A3B8;
  --color-bg-primary: #FFFFFF;
  --color-bg-secondary: #F8FAFC;
  --color-bg-tertiary: #F1F5F9;
  --color-border: #E2E8F0;
  --color-border-light: #F1F5F9;
  
  /* Colors - Accent */
  --color-success: #FF6600; /* Unificando com laranja para harmonia */
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  
  /* Typography - Fontes mais distintas */
  --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Font Sizes - Escala mais harmônica */
  --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.75rem);
  --text-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.875rem);
  --text-base: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
  --text-lg: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-xl: clamp(1.1rem, 1rem + 0.5vw, 1.25rem);
  --text-2xl: clamp(1.3rem, 1.2rem + 0.5vw, 1.5rem);
  --text-3xl: clamp(1.6rem, 1.4rem + 1vw, 1.875rem);
  --text-4xl: clamp(1.9rem, 1.7rem + 1vw, 2.25rem);
  --text-5xl: clamp(2.2rem, 2rem + 1.5vw, 3rem);
  --text-6xl: clamp(2.5rem, 2.2rem + 2vw, 3.75rem);
  
  /* Spacing - Sistema 8pt mais consistente */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */
  --space-16: 4rem;     /* 64px */
  --space-20: 5rem;     /* 80px */
  --space-24: 6rem;     /* 96px */
  
  /* Border Radius - Mais suave e consistente */
  --radius-xs: 0.25rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --radius-full: 9999px;
  
  /* Shadows - Sistema de elevação mais refinado */
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px 0 rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
  
  /* Transitions - Curvas de animação mais naturais */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Container - Responsivo */
  --container-max-width: 1280px;
  --container-padding: clamp(1rem, 5vw, 2rem);
  
  /* Z-index Scale */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-popover: 600;
  --z-tooltip: 700;
}

/* ================================
   RESET & BASE STYLES MELHORADOS
   ================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-secondary);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  overflow-x: hidden;
  position: relative;
}

/* Melhor seleção de texto */
::selection {
  background-color: rgba(255, 102, 0, 0.2);
  color: var(--color-text-primary);
}

/* Links acessíveis */
a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Imagens responsivas por padrão */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Buttons reset */
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

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

/* Container melhorado */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ================================
   HEADER MELHORADO - UX/UI
   ================================ */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: headerSlideDown 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes headerSlideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header.scrolled {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 5px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.3s ease;
}

.header.scrolled .container {
  height: 70px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header__logo img {
  height: 40px; 
  width: auto;
  transition: transform 0.3s ease;
}

.header__logo:hover img {
  transform: scale(1.25);
}

.header__divider {
  width: 1px;
  height: 24px;
  background: var(--color-border);
}

.header__brand {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-sm);
  letter-spacing: 0.5px;
  color: var(--color-text-secondary);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  flex: 1;
  justify-content: center;
}

.header__link {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text-primary);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-decoration: none;
}

.header__link:hover {
  color: #FF6600;
  background: rgba(255, 102, 0, 0.05);
  transform: translateY(-2px);
}

.header__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #FF6600;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.header__link:hover::after {
  width: 60%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.header__icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  background: var(--color-bg-secondary);
  transition: var(--transition-fast);
}

.header__icon-btn:hover {
  background: var(--color-bg-tertiary);
  transform: translateY(-1px);
}

.header__login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: #FF6600;
  color: white;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 102, 0, 0.2);
  text-decoration: none;
}

.header__login-btn:hover {
  background: #E65C00;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 102, 0, 0.3);
}

.header__login-btn img {
  width: 18px;
  height: 18px;
  filter: brightness(0) invert(1);
}

/* Menu mobile hamburger */
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 28px;
  height: 28px;
  padding: 4px;
  cursor: pointer;
}

.header__mobile-toggle span {
  width: 100%;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: var(--radius-full);
  transition: var(--transition-base);
}

.header__mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================
   HERO SECTION MELHORADA
   ================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 120px; /* Espaço para o header fixo */
  padding-bottom: 80px;
}

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

.hero__background {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 102, 0, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 153, 51, 0.03) 0%, transparent 50%),
    linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--color-border-light) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border-light) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero__left {
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 102, 0, 0.08);
  border: 1px solid rgba(255, 102, 0, 0.2);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
  animation: fadeInUp 0.8s 0.1s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: var(--radius-full);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.9);
  }
}

.hero__badge span:last-child {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-success);
}

.hero__title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: var(--text-6xl);
  line-height: 1.1;
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s 0.2s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero__title-highlight {
  display: block;
  background: var(--color-primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__description {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
  max-width: 540px;
  animation: fadeInUp 0.8s 0.3s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  animation: fadeInUp 0.8s 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero__stats {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-border);
  animation: fadeInUp 0.8s 0.5s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.hero__right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Alinha na base para evitar corte no topo */
  animation: fadeInUp 0.8s 0.6s cubic-bezier(0.4, 0, 0.2, 1) backwards;
  margin-top: 20px;
}

.hero__visual {
  position: relative;
  width: 100%;
  max-width: 700px; /* Aumentado conforme solicitado */
}

.hero__character {
  width: 120%; /* Aumentado para transbordar levemente e dar destaque */
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.15));
  animation: float 6s ease-in-out infinite;
  transform-origin: bottom center;
  margin-left: -10%; /* Centraliza o aumento */
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.hero__floating-card {
  position: absolute;
  animation: floatCard 4s ease-in-out infinite;
}

.hero__floating-card--1 {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero__floating-card--2 {
  bottom: 15%;
  left: 5%;
  animation-delay: 2s;
}

@keyframes floatCard {
  0%, 100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-15px) scale(1.05);
  }
}

.card-mini {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  background: white;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(10px);
  min-width: 220px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.card-mini__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 102, 0, 0.1);
  border-radius: var(--radius-lg);
  font-size: var(--text-xl);
}

.card-mini--success .card-mini__icon {
  background: rgba(16, 185, 129, 0.1);
}

.card-mini__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text-primary);
}

.card-mini__subtitle {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
}

/* ================================
   BUTTONS SYSTEM MELHORADO
   ================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before {
  opacity: 1;
}

.btn--primary {
  background: var(--color-primary-gradient);
  color: white;
  box-shadow: 
    0 4px 14px rgba(255, 102, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(255, 102, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--secondary {
  background: white;
  color: var(--color-text-primary);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.btn--secondary:hover {
  background: var(--color-bg-secondary);
  border-color: var(--color-text-tertiary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--large {
  padding: var(--space-5) var(--space-8);
  font-size: var(--text-lg);
}

.btn svg {
  transition: transform var(--transition-base);
}

.btn:hover svg {
  transform: translateX(4px);
}

/* Scroll indicator melhorado */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-4) var(--space-6);
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-secondary);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--transition-base);
  animation: bounce 2s ease infinite;
}

.scroll-indicator:hover {
  color: var(--color-primary);
}

.scroll-indicator svg {
  animation: arrowDown 1.5s ease infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes arrowDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.hero__cta-bottom {
  display: flex;
  justify-content: center;
  margin-top: var(--space-16);
}

/* ================================
   BENTO GRID - DOCUMENTOS FISCAIS
   Estilo melhorado com cores suaves
   ================================ */

.documents-bento {
  margin-top: var(--space-20);
  padding: var(--space-12) 0;
}

.bento-header {
  text-align: center;
  margin-bottom: var(--space-10);
}

.bento-label {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 102, 0, 0.08);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: var(--space-4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bento-title {
  font-family: var(--font-primary);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-4);
}

.bento-description {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(16px, 2vw, 20px);
  max-width: 1000px;
  margin: 0 auto;
}

.bento-card {
  position: relative;
  padding: clamp(24px, 4vw, 32px) clamp(20px, 3vw, 28px);
  border-radius: var(--radius-3xl);
  background: #ffffff;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-base);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: clamp(140px, 20vw, 160px);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 12px 24px rgba(0, 0, 0, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

.bento-card .glow {
  position: absolute;
  inset: -1px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.bento-card:hover .glow {
  opacity: 1;
}

.bento-card .icon {
  width: clamp(40px, 8vw, 48px);
  height: clamp(40px, 8vw, 48px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(18px, 3vw, 20px);
  margin-bottom: clamp(14px, 3vw, 20px);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.bento-card:hover .icon {
  transform: scale(1.05);
}

.bento-card h3 {
  font-family: var(--font-primary);
  font-size: clamp(16px, 2.5vw, 18px);
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
  line-height: 1.3;
}

.bento-card p {
  font-size: clamp(13px, 2vw, 14px);
  color: #64748b;
  line-height: 1.5;
  font-weight: 400;
}

/* Cores específicas por tipo */
.bento-card.blue {
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  border-color: rgba(59, 130, 246, 0.15);
}

.bento-card.blue .icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.bento-card.blue:hover {
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 
    0 12px 24px rgba(59, 130, 246, 0.15),
    0 0 0 1px rgba(59, 130, 246, 0.1);
}

.bento-card.green {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border-color: rgba(34, 197, 94, 0.15);
}

.bento-card.green .icon {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.25);
}

.bento-card.green:hover {
  border-color: rgba(34, 197, 94, 0.3);
  box-shadow: 
    0 12px 24px rgba(34, 197, 94, 0.15),
    0 0 0 1px rgba(34, 197, 94, 0.1);
}

.bento-card.orange {
  background: linear-gradient(135deg, #eff6ff 0%, #ffffff 100%);
  border-color: rgba(14, 165, 233, 0.15);
}

.bento-card.orange .icon {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.25);
}

.bento-card.orange:hover {
  border-color: rgba(14, 165, 233, 0.3);
  box-shadow: 
    0 12px 24px rgba(14, 165, 233, 0.15),
    0 0 0 1px rgba(14, 165, 233, 0.1);
}

.bento-card.purple {
  background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
  border-color: rgba(168, 85, 247, 0.15);
}

.bento-card.purple .icon {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(168, 85, 247, 0.25);
}

.bento-card.purple:hover {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 
    0 12px 24px rgba(168, 85, 247, 0.15),
    0 0 0 1px rgba(168, 85, 247, 0.1);
}

.bento-card.cyan {
  background: linear-gradient(135deg, #ecfeff 0%, #ffffff 100%);
  border-color: rgba(6, 182, 212, 0.15);
}

.bento-card.cyan .icon {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.25);
}

.bento-card.cyan:hover {
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 
    0 12px 24px rgba(6, 182, 212, 0.15),
    0 0 0 1px rgba(6, 182, 212, 0.1);
}

.bento-card.pink {
  background: linear-gradient(135deg, #fdf2f8 0%, #ffffff 100%);
  border-color: rgba(236, 72, 153, 0.15);
}

.bento-card.pink .icon {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.25);
}

.bento-card.pink:hover {
  border-color: rgba(236, 72, 153, 0.3);
  box-shadow: 
    0 12px 24px rgba(236, 72, 153, 0.15),
    0 0 0 1px rgba(236, 72, 153, 0.1);
}

/* Continua no próximo arquivo... */
/* ================================
   FEATURES SECTION - UX/UI MELHORADA
   ================================ */
.features {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-border) 50%, transparent 100%);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  animation: fadeInUp 0.8s ease backwards;
}

.section-label {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 102, 0, 0.08);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: var(--space-4);
}

.section-title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: var(--text-5xl);
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: var(--space-4);
  letter-spacing: -0.01em;
}

.section-description {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: var(--color-text-secondary);
  max-width: 640px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(20px, 3vw, 24px);
}

.feature-card {
  padding: clamp(28px, 4vw, 36px);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-2xl);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-primary-light);
}

.feature-card__icon {
  width: clamp(48px, 10vw, 56px);
  height: clamp(48px, 10vw, 56px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.1) 0%, rgba(255, 153, 51, 0.1) 100%);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-2);
}

.feature-card__icon img {
  width: 24px;
  height: 24px;
  filter: invert(35%) sepia(97%) saturate(2943%) hue-rotate(205deg) brightness(101%) contrast(106%);
}

.feature-card__title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-xl);
  color: var(--color-text-primary);
  line-height: 1.3;
}

.feature-card__description {
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-secondary);
  flex: 1;
}

.feature-card__footer {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border-light);
}

.feature-card__tag {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: var(--text-xs);
  padding: var(--space-1) var(--space-3);
  background: rgba(255, 102, 0, 0.2);
  color: var(--color-primary);
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Feature card destacado */
.feature-card--highlighted {
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.03) 0%, rgba(255, 153, 51, 0.03) 100%);
  border-color: rgba(255, 102, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card--highlighted::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary-gradient);
}

/* Feature showcase (se houver) */
.feature-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  margin-top: var(--space-20);
  padding: var(--space-16);
  background: white;
  border-radius: var(--radius-3xl);
  box-shadow: var(--shadow-lg);
}

.feature-showcase__content h3 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-3xl);
  color: var(--color-text-primary);
  margin-bottom: var(--space-6);
  line-height: 1.2;
}

.feature-showcase__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.feature-showcase__list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.feature-showcase__list svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-success);
}

.feature-showcase__visual {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.feature-showcase__visual img {
  width: 100%;
  height: auto;
}

/* ================================
   INTEGRATIONS SECTION - ORIGINAL
   ================================ */
.integrations {
  padding: var(--space-20) 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.integrations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-border) 50%, transparent 100%);
}

/* ===============================
   INTEGRATIONS SLIDER - ORIGINAL
   =============================== */

.integrations-slider {
  position: relative;
  margin-top: var(--space-12);
  overflow: hidden;
}

/* ===============================
   FADE NAS LATERAIS - ORIGINAL
   =============================== */

.integrations-slider::before,
.integrations-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 160px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

/* esquerda */
.integrations-slider::before {
  left: 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    rgba(255, 255, 255, 0.85) 35%,
    rgba(255, 255, 255, 0) 100%
  );
}

/* direita */
.integrations-slider::after {
  right: 0;
  background: linear-gradient(
    to left,
    #ffffff 0%,
    rgba(255, 255, 255, 0.85) 35%,
    rgba(255, 255, 255, 0) 100%
  );
}

.integration-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: white;
transition: all var(--transition-base);
  height: 320px;
}



.integration-card img {
  max-width: 100%;
  max-height: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Responsivo para integrações */
@media (max-width: 1024px) {
  .integration-card {
    height: 280px;
  }

  .integration-card img {
    max-height: 220px;
  }
}

@media (max-width: 600px) {
  .integration-card {
    height: 220px;
  }

  .integration-card img {
    max-height: 180px;
  }
  
  .integrations-slider::before,
  .integrations-slider::after {
    width: 80px;
  }
}

/* ================================
   CTA SECTION - MELHORADA
   ================================ */
.cta-section {
  padding: var(--space-20) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-border) 50%, transparent 100%);
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding: clamp(40px, 6vw, 64px) clamp(32px, 5vw, 56px);
  background: linear-gradient(135deg, #FF6600 0%, #FF9933 100%);
  border-radius: var(--radius-3xl);
  overflow: hidden;
  box-shadow: 
    0 25px 50px rgba(255, 102, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

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

.cta-card__title {
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: var(--text-5xl);
  color: white;
  margin-bottom: var(--space-4);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.cta-card__description {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  max-width: 540px;
}

.cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.cta-card__actions .btn--primary {
  background: white;
  color: var(--color-primary);
  box-shadow: 
    0 4px 14px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-card__actions .btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.cta-card__actions .btn--secondary {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.cta-card__actions .btn--secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.cta-card__note {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
  margin-top: var(--space-6);
}

.cta-card__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-card__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-3xl);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-card__badge span {
  display: block;
  font-family: var(--font-primary);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.75rem);
  color: white;
  line-height: 1;
  margin-bottom: var(--space-2);
}

.cta-card__badge small {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.9);
  opacity: 0.9;
  font-weight: 500;
}

/* ================================
   FOOTER - MELHORADO
   ================================ */
.footer {
  padding: var(--space-20) 0 var(--space-8);
  background: var(--color-text-primary);
  color: white;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: var(--space-16);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-8);
}

.footer__brand img {
  height: 36px;
  margin-bottom: var(--space-4);
  filter: brightness(0) invert(1);
}

.footer__tagline {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-6);
  max-width: 300px;
  line-height: 1.6;
}

.footer__social {
  display: flex;
  gap: var(--space-3);
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: white;
  transition: all var(--transition-base);
}

.footer__social a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-8);
}

.footer__column-title {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: var(--text-base);
  margin-bottom: var(--space-4);
  color: white;
}

.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
  display: inline-block;
}

.footer__list a:hover {
  color: white;
  transform: translateX(4px);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-sm);
}

/* ================================
   RESPONSIVIDADE - MOBILE FIRST
   ================================ */

/* Tablets e dispositivos médios */
@media (max-width: 1024px) {
  :root {
    --container-padding: 1.5rem;
  }
  
  .header .container {
    min-height: 64px;
  }
  
  .header__nav {
    display: none !important;
  }
  
  .header__nav.active {
    display: flex !important;
  }
  
  .header__mobile-toggle {
    display: flex;
  }
  
  .hero__content {
    grid-template-columns: 1fr;
    gap: var(--space-12);
  }
  
  .hero__right {
    order: -1;
  }
  
  .hero__left {
    text-align: center;
  }
  
  .hero__cta {
    justify-content: center;
  }
  
  .hero__stats {
    justify-content: center;
  }
  
  .bento-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }
  
  .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  }
  
  .feature-showcase {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  
  .cta-card {
    grid-template-columns: 1fr;
    gap: var(--space-8);
    text-align: center;
  }
  
  .cta-card__actions {
    justify-content: center;
  }
  
  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}

/* Smartphones */
@media (max-width: 640px) {
  :root {
    --container-padding: 1rem;
  }
  
  .header .container {
    min-height: 56px;
  }
  
  .header__logo img {
    height: 28px;
  }
  
  .header__brand {
    display: none;
  }
  
  .header__divider {
    display: none;
  }
  
  .header__login-btn span {
    display: none;
  }
  
  .hero {
    padding: var(--space-12) 0 var(--space-16);
  }
  
  .hero__title {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }
  
  .hero__description {
    font-size: var(--text-base);
  }
  
  .hero__cta {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .bento-card {
    min-height: 120px;
  }
  
  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .cta-card {
    padding: var(--space-8) var(--space-6);
  }
  
  .cta-card__title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }
  
  .footer__links {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  :root {
    --container-padding: 0.875rem;
  }
  
  .hero__badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .btn {
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
  }
  
  .btn--large {
    padding: var(--space-4) var(--space-6);
  }
}

/* Landscape mobile */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    padding: var(--space-8) 0;
  }
  
  .hero__content {
    gap: var(--space-6);
  }
}

/* Print styles */
@media print {
  .header,
  .hero__cta,
  .scroll-indicator,
  .cta-section,
  .footer__social {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  .container {
    max-width: 100%;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Dark mode support (preparado para futuro) */
@media (prefers-color-scheme: dark) {
  /* Adicionar suporte dark mode no futuro */
}

/* High contrast mode */
@media (prefers-contrast: high) {
  :root {
    --color-border: #000000;
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
  }
  
  .btn--primary {
    border: 2px solid currentColor;
  }
}

/* ==========================================================================
   NOVA SEÇÃO DE CONTATO (ESTILO BARRA CLEAN)
   ========================================================================== */
.cta-clean-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 3rem;
  background: #121212;
  border-radius: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  gap: 2rem;
  margin: 2rem 0;
}

.cta-clean-bar__content {
  flex: 1;
}

.cta-clean-bar__title {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.cta-clean-bar__description {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cta-clean-bar__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cta-clean-bar__note {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Inter', sans-serif;
}

.btn-contact-orange {
  background: #FF6B00;
  color: #ffffff;
  padding: 0.875rem 2.5rem;
  font-weight: 700;
  border-radius: 9999px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
}

.btn-contact-orange:hover {
  background: #E66000;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

@media (max-width: 991px) {
  .cta-clean-bar {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 2rem;
  }
  
  .cta-clean-bar__actions {
    width: 100%;
  }
  
  .btn-contact-orange {
    width: 100%;
    max-width: 300px;
  }
}
