/* ===== RESET E VARIÁVEIS - DESIGN SYSTEM MODERNO ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Cores Principais - Vibrantes para Dark Mode */
  --primary-blue: #3b82f6;
  --primary-blue-light: #60a5fa;
  --primary-blue-dark: #2563eb;
  --primary-blue-darker: #1e40af;

  --accent-purple: #a78bfa;
  /* Mais claro para contraste */
  --accent-purple-light: #c4b5fd;
  --accent-purple-dark: #8b5cf6;

  --success-green: #34d399;
  /* Mais brilhante */
  --success-green-light: #6ee7b7;

  --warning-amber: #fbbf24;

  /* Neutros - Dark Mode Scale */
  --gray-50: #020617;
  /* Fundo mais escuro */
  --gray-100: #0f172a;
  --gray-200: #1e293b;
  --gray-300: #334155;
  --gray-400: #475569;
  --gray-500: #64748b;
  --gray-600: #94a3b8;
  --gray-700: #cbd5e1;
  --gray-800: #e2e8f0;
  --gray-900: #f8fafc;
  /* Texto mais claro */

  /* Text - Invertido para Dark Mode */
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-tertiary: #94a3b8;

  /* Backgrounds - Dark Mode */
  --bg-white: #0f172a;
  /* Slate 900 */
  --bg-light: #1e293b;
  /* Slate 800 */
  --bg-gray: #020617;
  /* Slate 950 */
  --bg-card: rgba(30, 41, 59, 0.7);
  /* Glassmorphism dark */

  /* Sombras - Adaptadas para fundo escuro */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 24px 48px rgba(0, 0, 0, 0.6);
  --shadow-2xl: 0 32px 64px rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 20px rgba(59, 130, 246, 0.3);

  /* Bordas */
  --border-color: rgba(255, 255, 255, 0.1);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Espaçamentos */
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Animações */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-primary);
  background: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

/* Prevenir overflow horizontal */
img,
svg,
video {
  max-width: 100%;
  height: auto;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container-wide {
    padding: 0 20px;
  }
}

/* ===== HEADER FLUTUANTE ===== */
.header-float {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  max-width: 1300px;
  z-index: 1000;
  animation: slideDownHeader 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDownHeader {
  from {
    opacity: 0;
    transform: translate(-50%, -30px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.header-content {
  background: rgba(15, 23, 42, 0.7);
  /* Dark glass */
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all var(--transition);
}

.header-content:hover {
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(59, 130, 246, 0.1);
}

.logo-new {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-svg {
  height: 36px;
  width: auto;
}

.logo-badge {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-new {
  display: flex;
  gap: 4px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
  position: relative;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-purple-light));
  opacity: 0;
  border-radius: var(--radius-full);
  transition: opacity var(--transition);
  z-index: -1;
}

.nav-link:hover {
  color: var(--primary-blue);
  transform: translateY(-1px);
}

.nav-link:hover::before {
  opacity: 0.1;
}

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

.btn-text {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.btn-text:hover {
  color: var(--primary-blue);
  background: var(--gray-100);
}

/* Botões Modernos */
.btn-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  color: white;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.btn-gradient::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-blue-dark), var(--accent-purple-dark));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-gradient:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

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

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

.btn-gradient:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: rgba(59, 130, 246, 0.05);
}

.btn-large {
  padding: 16px 32px;
  font-size: 16px;
}

.btn-xl {
  padding: 20px 40px;
  font-size: 18px;
}

.menu-mobile {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-mobile span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ===== HERO SECTION - LAYOUT ASSIMÉTRICO ===== */
.hero-new {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-bg-elements {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.floating-element {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.3;
  animation: floatRandom 30s ease-in-out infinite;
  pointer-events: none;
}

.el-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25), transparent 70%);
  top: -250px;
  right: -150px;
  animation-delay: 0s;
}

.el-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent 70%);
  bottom: -200px;
  left: -200px;
  animation-delay: 5s;
}

.el-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.15), transparent 70%);
  top: 60%;
  left: 60%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes floatRandom {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(-30px, 30px) scale(1.05);
  }

  50% {
    transform: translate(30px, -20px) scale(0.95);
  }

  75% {
    transform: translate(-20px, -30px) scale(1.02);
  }
}

.grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(59, 130, 246, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 60%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(139, 92, 246, 0.08));
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 12px 20px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 16px;
  animation: badgeEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Badge de 14 Dias Grátis */
.free-trial-badge-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--success-green), var(--success-green-light));
  color: white;
  padding: 16px 28px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 32px;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
  animation: badgeEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
  position: relative;
  overflow: hidden;
}

.free-trial-badge-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

.free-trial-badge-hero svg {
  width: 24px;
  height: 24px;
  stroke: white;
  animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes badgeEntry {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.3);
  }
}

.hero-title-new {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  animation: titleEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

@keyframes titleEntry {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight-text {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
  opacity: 0.3;
  border-radius: 3px;
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  animation: subtitleEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

@keyframes subtitleEntry {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: ctaEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

@keyframes ctaEntry {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: trustEntry 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

@keyframes trustEntry {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-white);
  margin-left: -12px;
  box-shadow: var(--shadow);
}

.avatar:first-child {
  margin-left: 0;
}

.avatar-more {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-800);
  border: 2px solid var(--bg-white);
  margin-left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: var(--shadow);
}

.trust-text p {
  font-size: 14px;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.trust-stars {
  color: var(--warning-amber);
  font-size: 16px;
  letter-spacing: 2px;
}

/* Dashboard Preview */
.hero-right {
  position: relative;
  animation: dashboardEntry 1s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

@keyframes dashboardEntry {
  from {
    opacity: 0;
    transform: translateX(40px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.dashboard-preview {
  position: relative;
  width: 100%;
  height: 600px;
}

.preview-card {
  position: absolute;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-color);
  transition: all var(--transition);
}

.preview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
}

.card-1 {
  top: 20px;
  left: 0;
  width: 280px;
  animation: cardFloat 6s ease-in-out infinite;
}

.card-2 {
  top: 180px;
  right: 0;
  width: 280px;
  animation: cardFloat 6s ease-in-out 2s infinite;
}

.card-3 {
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  animation: cardFloat 6s ease-in-out 4s infinite;
}

@keyframes cardFloat {

  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }

  50% {
    transform: translateY(-15px) translateX(-50%);
  }
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon.blue {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  color: var(--primary-blue);
}

.card-icon.purple {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
  color: var(--accent-purple);
}

.card-header span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.card-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.card-trend {
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
}

.card-trend.up {
  background: rgba(16, 185, 129, 0.1);
  color: var(--success-green);
}

.mini-chart {
  margin-bottom: 12px;
}

.mini-chart svg {
  width: 100%;
  height: 80px;
}

.chart-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.5;
    transform: translateX(-50%) translateY(10px);
  }
}

.scroll-indicator span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}

.scroll-arrow {
  font-size: 24px;
  color: var(--primary-blue);
}

/* ===== STATS SHOWCASE ===== */
.stats-showcase {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-box {
  text-align: center;
  padding: 40px 20px;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}

.stat-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary-blue-light);
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-secondary);
}

.stat-decoration {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1), transparent 70%);
  border-radius: 50%;
}

/* ===== FEATURES BENTO ===== */
.features-bento {
  padding: 120px 0;
  position: relative;
}

.section-header-new {
  margin-bottom: 64px;
}

.section-header-new.centered {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title-new {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.highlight-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
}

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

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 24px;
}

.bento-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition-slow);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  opacity: 0;
  transition: opacity var(--transition);
}

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

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

.bento-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card.medium {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-card.small {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-purple-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}

.bento-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.bento-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.feature-visual,
.automation-flow {
  margin-top: 24px;
}

.calendar-mini {
  display: flex;
  gap: 12px;
}

.calendar-day {
  width: 60px;
  height: 60px;
  background: var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-tertiary);
  transition: all var(--transition);
}

.calendar-day.active {
  background: var(--primary-blue);
  color: white;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.automation-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.flow-step {
  width: 56px;
  height: 56px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.flow-arrow {
  font-size: 24px;
  color: var(--text-tertiary);
}

/* ===== PRICING SECTION ===== */
.pricing-new {
  padding: 120px 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.pricing-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-plan {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-2xl);
  padding: 48px 40px;
  position: relative;
  transition: all var(--transition-slow);
}

.pricing-plan:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.pricing-plan.featured {
  border-color: var(--primary-blue);
  box-shadow: 0 16px 48px rgba(59, 130, 246, 0.2);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  color: white;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: var(--radius-full);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.plan-header {
  text-align: center;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray-200);
}

.plan-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 12px;
}

.currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-tertiary);
}

.amount {
  font-size: 64px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  color: var(--text-primary);
  line-height: 1;
}

.cents {
  font-size: 32px;
  font-weight: 900;
  color: var(--text-primary);
}

.period {
  font-size: 18px;
  color: var(--text-tertiary);
  margin-left: 4px;
}

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

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-primary);
}

.plan-features li svg {
  flex-shrink: 0;
}

.btn-plan {
  width: 100%;
  text-align: center;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: block;
  transition: all var(--transition);
}

.btn-plan-outline {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.btn-plan-outline:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
  background: rgba(59, 130, 246, 0.05);
  transform: translateY(-2px);
}

.btn-plan-gradient {
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  color: white;
  border: none;
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.btn-plan-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
}

.coming-soon-text {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-tertiary);
  font-style: italic;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding: 120px 0;
  background: var(--bg-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.testimonial-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition-slow);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03), rgba(139, 92, 246, 0.03));
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius-xl);
}

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

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

.testimonial-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(139, 92, 246, 0.05));
  border-color: var(--primary-blue-light);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: var(--shadow);
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.testimonial-info p {
  font-size: 14px;
  color: var(--text-tertiary);
  margin: 0;
}

.testimonial-stars {
  color: var(--warning-amber);
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-content {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

.testimonial-metrics {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
  position: relative;
  z-index: 1;
}

.metric-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.metric-value {
  font-size: 24px;
  font-weight: 900;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 13px;
  color: var(--text-tertiary);
  font-weight: 600;
}

.trust-logos {
  text-align: center;
  padding-top: 64px;
  border-top: 1px solid var(--gray-200);
}

.trust-logos-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.logos-marquee {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.logo-item {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-tertiary);
  padding: 12px 24px;
  background: var(--gray-100);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.logo-item:hover {
  background: var(--primary-blue);
  color: white;
  transform: translateY(-4px);
}

/* ===== CTA FINAL ===== */
.cta-final {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
}

.cta-title .highlight-gradient {
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.8));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

.cta-final .btn-gradient {
  background: white;
  color: var(--primary-blue);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cta-final .btn-gradient:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.cta-note {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
}

.cta-decoration {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  filter: blur(60px);
}

.circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -100px;
}

.circle-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ===== FOOTER ===== */
.footer-new {
  background: var(--bg-gray);
  color: white;
  padding: 80px 0 40px;
}

/* Footer Top - Logo, Contato e Redes Sociais */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  flex: 1;
  max-width: 400px;
}

.footer-brand p {
  color: var(--gray-400);
  margin: 16px 0 0;
  line-height: 1.6;
  font-size: 15px;
}

.footer-logo {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-contact {
  flex: 1;
}

.footer-contact h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray-400);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: all var(--transition);
  padding: 12px 16px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.footer-email:hover {
  color: var(--primary-blue-light);
  background: rgba(59, 130, 246, 0.1);
  transform: translateX(4px);
}

.footer-email svg {
  stroke: currentColor;
  flex-shrink: 0;
}

.footer-social {
  flex: 1;
}

.footer-social h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
}

/* Footer Links - Layout Horizontal */
.footer-links-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-link-group h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

.footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer-links-row a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 15px;
  transition: color var(--transition);
  position: relative;
}

.footer-links-row a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-blue-light);
  transition: width var(--transition);
}

.footer-links-row a:hover {
  color: var(--primary-blue-light);
}

.footer-links-row a:hover::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-400);
  font-size: 14px;
  gap: 16px;
}

.footer-bottom p {
  margin: 0;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
  animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}

/* ===== RESPONSIVE ===== */

/* Tablet Landscape - 1200px */
@media (max-width: 1200px) {
  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .bento-card.large,
  .bento-card.medium {
    grid-column: span 2;
  }

  .footer-links-horizontal {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Tablet Portrait - 968px */
@media (max-width: 968px) {
  .header-float {
    width: calc(100% - 32px);
    top: 16px;
  }

  .header-content {
    padding: 10px 20px;
  }

  .nav-new,
  .header-actions {
    display: none;
  }

  /* Menu mobile ativo */
  .nav-new.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    padding: 24px;
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-lg);
    margin: 0 16px;
    z-index: 999;
    gap: 8px;
    border: 1px solid var(--border-color);
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .nav-new.active .nav-link {
    padding: 14px 20px;
    border-radius: var(--radius);
    width: 100%;
    text-align: left;
    font-size: 16px;
  }

  .menu-mobile {
    display: flex;
  }

  .hero-new {
    padding: 120px 0 60px;
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-title-new {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .dashboard-preview {
    height: 500px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .pricing-comparison {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 32px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-links-horizontal {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  /* Testimonials responsivo */
  .testimonials-section {
    padding: 80px 0;
  }

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

  .testimonial-card.featured {
    grid-column: span 1;
  }

  .trust-logos {
    padding-top: 48px;
  }

  .logos-marquee {
    gap: 20px;
  }
}

/* Mobile - 640px */
@media (max-width: 640px) {
  .container-wide {
    padding: 0 16px;
  }

  .header-float {
    width: calc(100% - 24px);
    top: 12px;
  }

  .header-content {
    padding: 8px 16px;
  }

  .logo-svg {
    height: 28px;
  }

  .logo-badge {
    font-size: 9px;
    padding: 3px 8px;
  }

  .hero-new {
    padding: 100px 0 40px;
    min-height: auto;
  }

  .hero-badge {
    font-size: 12px;
    padding: 8px 14px;
    display: inline-flex;
    max-width: 100%;
  }

  .hero-badge span {
    font-size: 12px;
  }

  .free-trial-badge-hero {
    font-size: 12px;
    padding: 12px 18px;
    gap: 8px;
    margin-bottom: 24px;
  }

  .free-trial-badge-hero svg {
    width: 18px;
    height: 18px;
  }

  .hero-title-new {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .hero-cta-group {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
  }

  .btn-new {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
  }

  .btn-large {
    padding: 14px 24px;
    font-size: 14px;
  }

  .hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .trust-avatars {
    flex-wrap: wrap;
  }

  .avatar {
    width: 36px;
    height: 36px;
    border-width: 2px;
  }

  .avatar-more {
    width: 36px;
    height: 36px;
    font-size: 11px;
    border-width: 2px;
  }

  .trust-text p {
    font-size: 13px;
  }

  .trust-stars {
    font-size: 14px;
  }

  .dashboard-preview {
    height: auto;
    margin-top: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 0;
  }

  .preview-card {
    padding: 16px;
    position: relative !important;
    width: 100% !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
  }

  .card-1,
  .card-2,
  .card-3 {
    width: 100% !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    animation: none !important;
  }

  .card-header span {
    font-size: 12px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
  }

  .card-icon svg {
    width: 20px;
    height: 20px;
  }

  .card-value {
    font-size: 28px;
  }

  .card-trend {
    font-size: 11px;
    padding: 4px 10px;
  }

  .chart-label {
    font-size: 12px;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-indicator span {
    font-size: 11px;
  }

  .stats-showcase {
    padding: 60px 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-box {
    padding: 28px 16px;
  }

  .stat-number {
    font-size: 44px;
  }

  .stat-label {
    font-size: 14px;
  }

  .features-bento {
    padding: 80px 0;
  }

  .section-header-new {
    margin-bottom: 40px;
  }

  .section-tag {
    font-size: 12px;
    padding: 6px 14px;
  }

  .section-title-new {
    font-size: 28px;
  }

  .section-desc {
    font-size: 15px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 16px;
  }

  .bento-card.large,
  .bento-card.medium,
  .bento-card.small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-card {
    padding: 24px;
    min-height: 180px;
  }

  .bento-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .bento-icon svg {
    width: 24px;
    height: 24px;
  }

  .bento-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .bento-card p {
    font-size: 14px;
  }

  .calendar-mini {
    gap: 8px;
    justify-content: flex-start;
  }

  .calendar-day {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .flow-step {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }

  .flow-arrow {
    font-size: 20px;
  }

  .pricing-new {
    padding: 80px 0;
  }

  .pricing-comparison {
    gap: 20px;
  }

  .pricing-plan {
    padding: 32px 20px;
  }

  .popular-badge {
    font-size: 11px;
    padding: 6px 18px;
    top: -14px;
  }

  .plan-header h3 {
    font-size: 20px;
  }

  .amount {
    font-size: 48px;
  }

  .cents {
    font-size: 24px;
  }

  .currency {
    font-size: 20px;
  }

  .period {
    font-size: 16px;
  }

  .plan-desc {
    font-size: 14px;
  }

  .plan-features li {
    font-size: 14px;
    padding: 10px 0;
  }

  .btn-plan {
    padding: 14px 28px;
    font-size: 15px;
  }

  .coming-soon-text {
    font-size: 12px;
  }

  .testimonials-section {
    padding: 60px 0;
  }

  .testimonial-card {
    padding: 20px;
  }

  .testimonial-header {
    gap: 12px;
    flex-wrap: wrap;
  }

  .testimonial-avatar {
    width: 48px;
    height: 48px;
    border-width: 2px;
  }

  .testimonial-info h4 {
    font-size: 15px;
  }

  .testimonial-info p {
    font-size: 13px;
  }

  .testimonial-stars {
    font-size: 14px;
    margin-top: 8px;
    width: 100%;
  }

  .testimonial-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .testimonial-metrics {
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
  }

  .metric-value {
    font-size: 20px;
  }

  .metric-label {
    font-size: 12px;
  }

  .trust-logos {
    padding-top: 32px;
  }

  .trust-logos-title {
    font-size: 12px;
    margin-bottom: 24px;
  }

  .logos-marquee {
    gap: 12px;
  }

  .logo-item {
    font-size: 13px;
    padding: 10px 18px;
  }

  .cta-final {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .cta-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .btn-xl {
    padding: 16px 32px;
    font-size: 16px;
  }

  .cta-note {
    font-size: 14px;
  }

  .footer-new {
    padding: 60px 0 32px;
  }

  .footer-top {
    gap: 24px;
    flex-direction: column;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .footer-brand p {
    font-size: 14px;
  }

  .footer-logo {
    height: 32px;
  }

  .footer-contact h4,
  .footer-social h4 {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .footer-email {
    font-size: 14px;
    padding: 10px 14px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .footer-links-horizontal {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }

  .footer-link-group h4 {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .footer-links-row {
    flex-direction: column;
    gap: 10px;
  }

  .footer-links-row a {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 13px;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-float svg {
    width: 22px;
    height: 22px;
  }

  /* Floating elements mais sutis em mobile */
  .floating-element {
    opacity: 0.15;
  }

  .el-1,
  .el-2,
  .el-3 {
    filter: blur(60px);
  }

  .el-1 {
    width: 300px;
    height: 300px;
  }

  .el-2 {
    width: 250px;
    height: 250px;
  }

  .el-3 {
    width: 200px;
    height: 200px;
  }
}

/* Mobile Extra Small - 480px */
@media (max-width: 480px) {
  .container-wide {
    padding: 0 14px;
  }

  .header-float {
    width: calc(100% - 20px);
    top: 10px;
  }

  .header-content {
    padding: 6px 14px;
  }

  .logo-svg {
    height: 26px;
  }

  .logo-badge {
    font-size: 8px;
    padding: 2px 6px;
  }

  .hero-title-new {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-badge {
    font-size: 11px;
    padding: 7px 12px;
  }

  .free-trial-badge-hero {
    font-size: 11px;
    padding: 10px 16px;
  }

  .btn-new {
    padding: 13px 20px;
    font-size: 13px;
  }

  .btn-large {
    padding: 13px 20px;
    font-size: 13px;
  }

  .btn-xl {
    padding: 14px 28px;
    font-size: 15px;
  }

  .dashboard-preview {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .card-1,
  .card-2,
  .card-3 {
    width: 100% !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    transform: none !important;
    animation: none !important;
  }

  .preview-card {
    position: relative !important;
    width: 100% !important;
  }

  .card-value {
    font-size: 24px;
  }

  .section-title-new {
    font-size: 26px;
  }

  .section-desc {
    font-size: 14px;
  }

  .stat-number {
    font-size: 38px;
  }

  .stat-box {
    padding: 24px 12px;
  }

  .bento-card {
    padding: 20px;
    min-height: 160px;
  }

  .bento-icon {
    width: 44px;
    height: 44px;
  }

  .bento-card h3 {
    font-size: 17px;
  }

  .calendar-day {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .flow-step {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .amount {
    font-size: 44px;
  }

  .cents {
    font-size: 22px;
  }

  .pricing-plan {
    padding: 28px 18px;
  }

  .testimonial-card {
    padding: 18px;
  }

  .cta-title {
    font-size: 26px;
  }

  .cta-subtitle {
    font-size: 15px;
  }

  .footer-email {
    font-size: 13px;
    padding: 9px 12px;
  }

  .footer-bottom {
    font-size: 12px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 20px;
    height: 20px;
  }
}

/* Landscape Mobile */
@media (max-width: 900px) and (max-height: 500px) {
  .hero-new {
    min-height: auto;
    padding: 120px 0 40px;
  }

  .scroll-indicator {
    display: none;
  }
}