:root {
  --primary: #FF6B00;
  --primary-dark: #E55A00;
  --primary-light: #FF8533;
  --secondary: #1A1A2E;
  --dark: #0F0F1A;
  --darker: #080812;
  --light: #F8F9FA;
  --accent: #FFB800;
  --gradient-primary: linear-gradient(135deg, #FF6B00 0%, #FF8533 50%, #FFB800 100%);
  --gradient-dark: linear-gradient(180deg, #1A1A2E 0%, #0F0F1A 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  --shadow-glow: 0 0 60px rgba(255, 107, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  /* Jeton-inspired easing curves */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--darker);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==================== CLEAR STREET STYLE BACKGROUNDS ==================== */

/* Global Background Container */
.bg-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

/* Grid Pattern Overlay */
.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 107, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 0, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 0%, transparent 80%);
}

/* Fine Grid Overlay */
.bg-grid-fine {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.5;
}

/* Noise Texture Overlay */
.bg-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Animated Gradient Blobs */
.bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.5;
  animation: blobFloat 20s ease-in-out infinite;
}

.bg-blob-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.4) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.bg-blob-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 184, 0, 0.3) 0%, transparent 70%);
  bottom: 20%;
  left: -150px;
  animation-delay: -7s;
}

.bg-blob-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  animation-delay: -14s;
}

.bg-blob-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(229, 90, 0, 0.3) 0%, transparent 70%);
  bottom: -100px;
  right: 30%;
  animation-delay: -5s;
}

@keyframes blobFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(30px, -40px) scale(1.05);
  }
  50% {
    transform: translate(-20px, 20px) scale(0.95);
  }
  75% {
    transform: translate(40px, 30px) scale(1.02);
  }
}

/* Spotlight Effect */
.bg-spotlight {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse 80% 50% at 50% 0%,
    rgba(255, 107, 0, 0.15) 0%,
    transparent 50%
  );
  opacity: 0.8;
}

/* Animated Gradient Mesh */
.bg-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(at 40% 20%, rgba(255, 107, 0, 0.1) 0px, transparent 50%),
    radial-gradient(at 80% 0%, rgba(255, 184, 0, 0.08) 0px, transparent 50%),
    radial-gradient(at 0% 50%, rgba(255, 107, 0, 0.08) 0px, transparent 50%),
    radial-gradient(at 80% 50%, rgba(229, 90, 0, 0.06) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(255, 184, 0, 0.1) 0px, transparent 50%),
    radial-gradient(at 80% 100%, rgba(255, 107, 0, 0.08) 0px, transparent 50%);
  animation: meshMove 30s ease-in-out infinite;
}

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

/* Vignette Effect */
.bg-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    transparent 0%,
    rgba(8, 8, 18, 0.4) 70%,
    rgba(8, 8, 18, 0.8) 100%
  );
}

/* Animated Lines (Clear Street style) */
.bg-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bg-lines::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(255, 107, 0, 0.2) 20%,
    rgba(255, 107, 0, 0.2) 80%,
    transparent 100%
  );
  animation: lineGlow 4s ease-in-out infinite;
}

.bg-lines::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 107, 0, 0.15) 20%,
    rgba(255, 107, 0, 0.15) 80%,
    transparent 100%
  );
  animation: lineGlow 4s ease-in-out infinite 2s;
}

@keyframes lineGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Animated Orbs (Floating particles) */
.bg-orbs {
  position: absolute;
  width: 100%;
  height: 100%;
}

.orb {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 107, 0, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 107, 0, 0.4);
  animation: orbFloat 15s linear infinite;
}

.orb:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.orb:nth-child(2) { left: 20%; animation-delay: -3s; animation-duration: 18s; }
.orb:nth-child(3) { left: 30%; animation-delay: -6s; animation-duration: 22s; }
.orb:nth-child(4) { left: 40%; animation-delay: -9s; animation-duration: 16s; }
.orb:nth-child(5) { left: 50%; animation-delay: -12s; animation-duration: 24s; }
.orb:nth-child(6) { left: 60%; animation-delay: -4s; animation-duration: 19s; }
.orb:nth-child(7) { left: 70%; animation-delay: -8s; animation-duration: 21s; }
.orb:nth-child(8) { left: 80%; animation-delay: -2s; animation-duration: 17s; }
.orb:nth-child(9) { left: 90%; animation-delay: -11s; animation-duration: 23s; }

@keyframes orbFloat {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(90vh) scale(1);
  }
  90% {
    opacity: 1;
    transform: translateY(10vh) scale(1);
  }
  100% {
    transform: translateY(-10vh) scale(0);
    opacity: 0;
  }
}

/* Section-specific background overlays */
.section-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.section-bg-gradient {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(8, 8, 18, 0.5) 50%,
    transparent 100%
  );
}

/* Glow orbs for section accents */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.glow-orb-primary {
  background: rgba(255, 107, 0, 0.3);
}

.glow-orb-accent {
  background: rgba(255, 184, 0, 0.25);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(80px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
  will-change: opacity, transform;
}

.reveal-scale.active {
  opacity: 1;
  transform: scale(1);
}

/* ==================== MOBILE ANIMATIONS - Suaves e otimizadas ==================== */
@media (max-width: 768px) {
  /* Animações mais suaves e lentas em mobile */
  .reveal {
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .reveal-left {
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .reveal-right {
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .reveal-scale {
    transform: scale(0.95);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  /* Reduz efeitos de background pesados em mobile para performance */
  .bg-blob {
    opacity: 0.25;
    filter: blur(120px);
    animation: none !important;
  }
  
  .bg-orbs .orb {
    display: none;
  }
  
  .bg-lines::before,
  .bg-lines::after {
    animation: none;
    opacity: 0.2;
  }
  
  .bg-mesh {
    animation: none;
    opacity: 0.3;
  }
  
  /* Shapes parallax simplificado */
  .hero-shapes .shape {
    animation: none;
    opacity: 0.3;
  }
  
  /* Cards com transição mais suave */
  .feature-card,
  .pricing-card,
  .stat-card {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  /* Desativa hover effects intensos em touch devices */
  .feature-card:hover,
  .pricing-card:hover {
    transform: translateY(-4px);
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
  
  /* Stagger animation delays mais suaves em mobile */
  .reveal:nth-child(1) { transition-delay: 0ms; }
  .reveal:nth-child(2) { transition-delay: 100ms; }
  .reveal:nth-child(3) { transition-delay: 200ms; }
  .reveal:nth-child(4) { transition-delay: 300ms; }
  .reveal:nth-child(5) { transition-delay: 400ms; }
  .reveal:nth-child(6) { transition-delay: 500ms; }
  
  /* Grid items aparecem em sequência */
  .features-grid .feature-card:nth-child(1) { transition-delay: 0ms; }
  .features-grid .feature-card:nth-child(2) { transition-delay: 150ms; }
  .features-grid .feature-card:nth-child(3) { transition-delay: 300ms; }
  .features-grid .feature-card:nth-child(4) { transition-delay: 450ms; }
  
  .pricing-grid .pricing-card:nth-child(1) { transition-delay: 0ms; }
  .pricing-grid .pricing-card:nth-child(2) { transition-delay: 150ms; }
  .pricing-grid .pricing-card:nth-child(3) { transition-delay: 300ms; }
}

/* Stagger delays for grid items */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ==================== HEADER ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.5s var(--ease-out-expo);
}

header.scrolled {
  background: rgba(15, 15, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 107, 0, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.4s var(--ease-spring);
}

.logo:hover {
  transform: scale(1.05);
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  display: block;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out-expo);
}

.logo:hover .logo-icon {
  transform: rotate(-5deg);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.logo-text {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

nav a {
  color: var(--light);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.4s var(--ease-out-quart), transform 0.4s var(--ease-spring);
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.4s var(--ease-out-expo);
}

nav a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

nav a:hover::after {
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  transform: translateX(-100%);
  transition: transform 0.6s var(--ease-out-expo);
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(255, 107, 0, 0.5);
}

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

.btn-outline {
  background: transparent;
  color: var(--light);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(255, 107, 0, 0.1);
  transform: translateY(-3px);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 28px;
  cursor: pointer;
  transition: transform 0.3s var(--ease-spring);
}

.mobile-toggle:hover {
  transform: scale(1.1);
}

/* ==================== HERO ==================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  z-index: 1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 100% 80% at 70% 10%, rgba(255, 107, 0, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(255, 184, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
  animation: heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { opacity: 0.8; }
  50% { opacity: 1; }
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 300px;
  background: linear-gradient(to top, var(--darker), transparent);
  pointer-events: none;
}

/* Hero specific glow */
.hero-glow {
  position: absolute;
  top: 20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.25) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
  animation: heroGlowPulse 8s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  50% { transform: scale(1.2) translate(-20px, 20px); opacity: 1; }
}

/* Parallax floating shapes */
.hero-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.08;
  filter: blur(80px);
}

.shape-1 {
  width: 500px;
  height: 500px;
  top: 5%;
  left: -15%;
  animation: floatShape 25s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  bottom: 10%;
  right: 5%;
  animation: floatShape 20s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  left: 25%;
  animation: floatShape 22s ease-in-out infinite 3s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(40px, -40px) rotate(120deg); }
  66% { transform: translate(-30px, 30px) rotate(240deg); }
}

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

.hero-content {
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeIn 1s var(--ease-out-expo) 0.2s forwards;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 100px;
  font-size: 14px;
  color: var(--primary);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: badgeFadeIn 0.6s var(--ease-out-expo) 0.4s forwards;
}

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

.hero-badge i {
  font-size: 16px;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  margin-bottom: 24px;
  line-height: 1.1;
  opacity: 0;
  transform: translateY(30px);
  animation: titleFadeIn 0.8s var(--ease-out-expo) 0.5s forwards;
}

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

.hero h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.typing-wrapper {
  display: inline-block;
  min-width: 280px;
}

.typing-text {
  border-right: 3px solid var(--primary);
  animation: blink 0.7s infinite;
}

@keyframes blink {
  0%, 50% { border-color: var(--primary); }
  51%, 100% { border-color: transparent; }
}

.hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  max-width: 500px;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.8s var(--ease-out-expo) 0.7s forwards;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.8s var(--ease-out-expo) 0.9s forwards;
}

.hero-visual {
  position: relative;
  opacity: 0;
  transform: translateX(60px) scale(0.95);
  animation: phoneSlideIn 1s var(--ease-out-expo) 0.6s forwards;
}

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

/* ===== REALISTIC IPHONE MOCKUP ===== */
.phone-mockup {
  position: relative;
  max-width: 320px;
  margin: 0 auto;
  perspective: 1000px;
  transition: transform 0.6s var(--ease-out-expo);
}

.phone-mockup:hover {
  transform: translateY(-10px) rotateY(-5deg);
}

.phone-frame {
  position: relative;
  background: linear-gradient(145deg, #1c1c1e, #0a0a0a);
  border-radius: 50px;
  padding: 14px;
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.6s var(--ease-out-expo);
}

/* iPhone Side Buttons */
.phone-frame::before {
  content: '';
  position: absolute;
  left: -3px;
  top: 100px;
  width: 3px;
  height: 32px;
  background: linear-gradient(180deg, #3a3a3c, #1c1c1e, #3a3a3c);
  border-radius: 2px 0 0 2px;
  box-shadow: 
    0 50px 0 0 linear-gradient(180deg, #3a3a3c, #1c1c1e, #3a3a3c),
    0 85px 0 0 linear-gradient(180deg, #3a3a3c, #1c1c1e, #3a3a3c);
}

.phone-frame::after {
  content: '';
  position: absolute;
  right: -3px;
  top: 130px;
  width: 3px;
  height: 65px;
  background: linear-gradient(180deg, #3a3a3c, #1c1c1e, #3a3a3c);
  border-radius: 0 2px 2px 0;
}

/* Volume buttons (left side) */
.phone-side-buttons {
  position: absolute;
  left: -3px;
  top: 150px;
}

.phone-side-buttons::before {
  content: '';
  position: absolute;
  width: 3px;
  height: 50px;
  background: linear-gradient(180deg, #3a3a3c, #2c2c2e, #3a3a3c);
  border-radius: 2px 0 0 2px;
}

.phone-side-buttons::after {
  content: '';
  position: absolute;
  top: 60px;
  width: 3px;
  height: 50px;
  background: linear-gradient(180deg, #3a3a3c, #2c2c2e, #3a3a3c);
  border-radius: 2px 0 0 2px;
}

.phone-mockup:hover .phone-frame {
  box-shadow: 
    0 60px 120px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(255, 107, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.5),
    0 0 100px rgba(255, 107, 0, 0.1);
}

.phone-screen {
  position: relative;
  background: #000;
  border-radius: 40px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  display: flex;
  flex-direction: column;
}

/* iOS Status Bar Area - Top safe area */
.phone-status-area {
  background: #1f2c34;
  padding: 14px 24px 0;
  position: relative;
  min-height: 54px;
  flex-shrink: 0;
}

/* Dynamic Island */
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 30px;
  background: #000;
  border-radius: 18px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
}

.phone-notch::before {
  content: '';
  position: absolute;
  right: 14px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #1d1d2e, #0d0d15);
  border-radius: 50%;
  box-shadow: inset 0 0 2px rgba(0,0,0,0.8);
}

/* iOS Status Bar */
.phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  height: 20px;
  padding-top: 2px;
}

.status-time {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.3px;
}

.status-icons {
  display: flex;
  align-items: center;
  gap: 4px;
}

.status-icons svg {
  width: 17px;
  height: 17px;
}

.battery-icon {
  display: flex;
  align-items: center;
  position: relative;
}

.battery-icon svg {
  width: 25px;
  height: 12px;
}

/* WhatsApp Header - Realistic */
.phone-header {
  background: #1f2c34;
  padding: 8px 10px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.wa-back-btn {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #00a884;
}

.wa-back-btn svg {
  width: 24px;
  height: 24px;
}

.phone-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.phone-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FF6B00, #FFB800);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.phone-info {
  flex: 1;
  min-width: 0;
}

.phone-info h4 {
  font-size: 16px;
  font-weight: 500;
  color: #e9edef;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.phone-info span {
  font-size: 13px;
  color: #8696a0;
}

.wa-header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #aebac1;
}

.wa-header-icons svg {
  width: 22px;
  height: 22px;
}

/* WhatsApp Chat Area */
/* WhatsApp Content Area */
.phone-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.phone-chat {
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  background: 
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, #0b141a 0%, #0b141a 100%);
}

/* Chat Bubbles - WhatsApp Style */
.chat-bubble {
  max-width: 80%;
  padding: 8px 10px 6px;
  border-radius: 8px;
  font-size: 14.5px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  position: relative;
  word-wrap: break-word;
}

.chat-bubble.animate {
  animation: bubbleIn 0.5s var(--ease-spring) forwards;
}

.chat-bubble.received {
  background: #202c33;
  align-self: flex-start;
  border-top-left-radius: 0;
  color: #e9edef;
}

.chat-bubble.received::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent #202c33 transparent transparent;
}

.chat-bubble.sent {
  background: #005c4b;
  align-self: flex-end;
  border-top-right-radius: 0;
  color: #e9edef;
}

.chat-bubble.sent::after {
  content: '';
  position: absolute;
  top: 0;
  right: -8px;
  border-width: 8px 8px 0 0;
  border-style: solid;
  border-color: #005c4b transparent transparent transparent;
}

.bubble-time {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  float: right;
  margin: 4px 0 -4px 8px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.bubble-time svg {
  width: 16px;
  height: 16px;
  color: #53bdeb;
}

@keyframes bubbleIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* WhatsApp Input Area */
.wa-input-area {
  padding: 6px 8px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #1f2c34;
  flex-shrink: 0;
}

.wa-input-field {
  flex: 1;
  display: flex;
  align-items: center;
  background: #2a3942;
  border-radius: 24px;
  padding: 8px 12px;
  gap: 10px;
}

.wa-input-field svg {
  width: 22px;
  height: 22px;
  color: #8696a0;
  flex-shrink: 0;
}

.wa-input-placeholder {
  flex: 1;
  font-size: 15px;
  color: #8696a0;
}

.wa-mic-btn {
  width: 46px;
  height: 46px;
  background: #00a884;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wa-mic-btn svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

/* Home Indicator */
/* Home Indicator - Bottom safe area */
.phone-bottom-area {
  background: #111b21;
  padding: 6px 0 10px;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.phone-home-indicator {
  width: 134px;
  height: 5px;
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
}

/* Glass Reflection Effect */
.phone-screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.1) 0%,
    rgba(255,255,255,0) 40%,
    rgba(255,255,255,0) 60%,
    rgba(255,255,255,0.03) 100%
  );
  pointer-events: none;
  z-index: 200;
  border-radius: 40px;
}

/* Typing Indicator Animation */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  background: #202c33;
  border-radius: 8px;
  border-top-left-radius: 0;
  align-self: flex-start;
  position: relative;
}

.typing-indicator::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  border-width: 0 8px 8px 0;
  border-style: solid;
  border-color: transparent #202c33 transparent transparent;
}

.typing-dot {
  width: 8px;
  height: 8px;
  background: #8696a0;
  border-radius: 50%;
  animation: typingBounce 1.4s ease-in-out infinite;
}

.typing-dot:nth-child(1) { animation-delay: 0s; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

/* iPhone Frame Shine */
.phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50px;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.1) 0%,
    rgba(255,255,255,0) 50%
  );
  pointer-events: none;
  z-index: 1;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.float-card {
  position: absolute;
  background: var(--gradient-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: floatCardIn 0.8s var(--ease-out-expo) forwards;
}

.float-card.card-1 {
  top: -7%;
  left: -60%;
  animation-delay: 1.2s;
}

.float-card.card-2 {
  bottom: -7%;
  right: -50%;
  animation-delay: 1.4s;
}

@keyframes floatCardIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: float 6s ease-in-out infinite;
  }
}

.float-card i {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.float-card span {
  font-size: 13px;
  font-weight: 500;
}

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

/* ==================== STATS ==================== */
.stats {
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.stats::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 107, 0, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

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

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  transition: all 0.5s var(--ease-out-expo);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
}

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

.stat-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(255, 107, 0, 0.2);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(255, 107, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  transition: transform 0.4s var(--ease-spring);
}

.stat-card:hover .stat-number {
  transform: scale(1.1);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.4s var(--ease-out-expo);
}

.stat-card:hover .stat-label {
  color: rgba(255, 255, 255, 0.9);
}

/* ==================== FEATURES ==================== */
.features {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 60% 40% at 10% 30%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 90% 70%, rgba(255, 184, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.features::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255, 107, 0, 0.15), transparent);
  pointer-events: none;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s var(--ease-out-expo);
}

.section-label:hover {
  background: rgba(255, 107, 0, 0.2);
  transform: scale(1.05);
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
}

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

.feature-card {
  padding: 40px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-xl);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 107, 0, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 107, 0, 0.2);
  background: linear-gradient(145deg, rgba(255, 107, 0, 0.05), rgba(255, 107, 0, 0.02));
}

.feature-card:hover::before {
  transform: scaleX(1);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
  transition: all 0.5s var(--ease-spring);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(255, 107, 0, 0.5);
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  transition: color 0.4s var(--ease-out-expo);
}

.feature-card:hover h3 {
  color: var(--primary-light);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  transition: color 0.4s var(--ease-out-expo);
}

.feature-card:hover p {
  color: rgba(255, 255, 255, 0.8);
}

/* ==================== ABOUT ==================== */
.about {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.about::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 60%);
  filter: blur(60px);
  pointer-events: none;
}

.about::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.2), transparent);
  pointer-events: none;
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.about-visual {
  position: relative;
}

.about-image {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.6s var(--ease-out-expo);
}

.about-image:hover {
  transform: scale(1.03);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0.1;
  transition: opacity 0.4s var(--ease-out-expo);
}

.about-image:hover::before {
  opacity: 0.2;
}

.about-image img, .about-image svg {
  width: 100%;
  display: block;
}

.about-decoration {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 3px solid var(--primary);
  border-radius: var(--radius-xl);
  bottom: -30px;
  right: -30px;
  z-index: -1;
  transition: all 0.6s var(--ease-out-expo);
}

.about-visual:hover .about-decoration {
  transform: translate(10px, -10px);
  border-color: var(--accent);
}

.about-content .section-label {
  margin-bottom: 20px;
}

.about-content h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 24px;
}

.about-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  transition: all 0.4s var(--ease-out-expo);
  cursor: default;
}

.about-list li:hover {
  transform: translateX(10px);
  color: var(--primary-light);
}

.about-list i {
  width: 28px;
  height: 28px;
  background: rgba(255, 107, 0, 0.15);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.4s var(--ease-spring);
}

.about-list li:hover i {
  background: var(--primary);
  color: white;
  transform: scale(1.2) rotate(360deg);
}

/* ==================== PRICING ==================== */
.pricing {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, 
    rgba(8, 8, 18, 0) 0%, 
    rgba(26, 26, 46, 0.8) 30%, 
    rgba(26, 26, 46, 0.8) 70%, 
    rgba(8, 8, 18, 0) 100%
  );
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 107, 0, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(255, 184, 0, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.pricing::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 107, 0, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 60px;
  position: relative;
}

.pricing-toggle button {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.pricing-toggle button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
  z-index: -1;
}

.pricing-toggle button:hover {
  border-color: rgba(255, 107, 0, 0.5);
  color: rgba(255, 255, 255, 0.9);
}

.pricing-toggle button.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(255, 107, 0, 0.4);
}

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

.pricing-card {
  padding: 40px 32px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: all 0.5s var(--ease-out-expo);
  position: relative;
}

.pricing-card.featured {
  background: linear-gradient(145deg, rgba(255, 107, 0, 0.15), rgba(255, 107, 0, 0.05));
  border-color: rgba(255, 107, 0, 0.3);
  transform: scale(1.05);
}

.pricing-card.featured .popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gradient-primary);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: badgeBounce 2s ease-in-out infinite;
}

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

.pricing-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 107, 0, 0.1);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-12px);
}

.pricing-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
  transition: transform 0.4s var(--ease-spring);
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.2) rotate(-10deg);
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.pricing-card .description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  min-height: 42px;
}

.price {
  margin-bottom: 24px;
}

.price .currency {
  font-size: 20px;
  vertical-align: top;
}

.price .amount {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.4s var(--ease-spring);
  display: inline-block;
}

.price .amount.changing {
  animation: priceChange 0.4s var(--ease-out-expo);
}

@keyframes priceChange {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

.price .period {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.total-anual {
  margin-top: -16px;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(255, 107, 0, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 0, 0.2);
  animation: fadeInUp 0.4s var(--ease-out-expo);
}

.total-anual .total-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

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

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

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 14px;
  transition: all 0.3s var(--ease-out-expo);
}

.pricing-features li:hover {
  padding-left: 10px;
  background: rgba(255, 107, 0, 0.05);
  border-radius: var(--radius-sm);
}

.pricing-features li i {
  color: var(--primary);
  font-size: 16px;
  transition: transform 0.3s var(--ease-spring);
}

.pricing-features li:hover i {
  transform: scale(1.3);
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ==================== TESTIMONIALS ==================== */
.testimonials {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: 
    radial-gradient(circle, rgba(255, 107, 0, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(255, 184, 0, 0.08) 0%, transparent 40%);
  pointer-events: none;
  animation: testimonialGlow 10s ease-in-out infinite;
}

@keyframes testimonialGlow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.testimonials::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.2), transparent);
  pointer-events: none;
}

.testimonials-slider {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 20px 0;
  cursor: grab;
}

.testimonials-slider:active {
  cursor: grabbing;
}

.testimonials-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 400px;
  padding: 40px;
  background: var(--gradient-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  scroll-snap-align: start;
  transition: all 0.5s var(--ease-out-expo);
}

.testimonial-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: var(--accent);
  font-size: 18px;
  transition: transform 0.3s var(--ease-spring);
}

.testimonial-card:hover .testimonial-rating i {
  animation: starPop 0.4s var(--ease-spring);
}

.testimonial-card:hover .testimonial-rating i:nth-child(1) { animation-delay: 0s; }
.testimonial-card:hover .testimonial-rating i:nth-child(2) { animation-delay: 0.05s; }
.testimonial-card:hover .testimonial-rating i:nth-child(3) { animation-delay: 0.1s; }
.testimonial-card:hover .testimonial-rating i:nth-child(4) { animation-delay: 0.15s; }
.testimonial-card:hover .testimonial-rating i:nth-child(5) { animation-delay: 0.2s; }

@keyframes starPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.testimonial-card blockquote {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  transition: transform 0.4s var(--ease-spring);
}

.testimonial-card:hover .testimonial-avatar {
  transform: scale(1.1) rotate(-5deg);
}

.testimonial-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-info span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ==================== FAQ ==================== */
.faq {
  padding: 120px 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(8, 8, 18, 0) 0%,
    rgba(26, 26, 46, 0.6) 20%,
    rgba(26, 26, 46, 0.6) 80%,
    rgba(8, 8, 18, 0) 100%
  );
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse 40% 30% at 20% 20%, rgba(255, 107, 0, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(255, 184, 0, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.faq::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.15), transparent);
  pointer-events: none;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}

.faq-item:hover {
  border-color: rgba(255, 107, 0, 0.2);
  background: rgba(255, 107, 0, 0.02);
}

.faq-item.open {
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: none;
  border: none;
  color: var(--light);
  font-size: 17px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s var(--ease-out-expo);
}

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

.faq-question i {
  font-size: 20px;
  color: var(--primary);
  transition: transform 0.4s var(--ease-out-expo);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease-out-expo);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 32px 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

/* ==================== CTA ==================== */
.cta {
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-box {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
}

.cta-box:hover {
  transform: scale(1.02);
  box-shadow: 
    0 40px 80px rgba(255, 107, 0, 0.4),
    0 0 100px rgba(255, 107, 0, 0.2);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(15deg);
  pointer-events: none;
  transition: transform 0.8s var(--ease-out-expo);
}

.cta-box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
  pointer-events: none;
}

.cta-box:hover::before {
  transform: rotate(15deg) translateX(30px);
}

.cta-box h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  position: relative;
}

.cta-box p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.cta .btn-white {
  background: white;
  color: var(--primary-dark);
}

.cta .btn-white:hover {
  background: var(--light);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ==================== FOOTER ==================== */
footer {
  background: linear-gradient(180deg, rgba(8, 8, 18, 0.5) 0%, var(--darker) 100%);
  padding: 80px 0 30px;
  position: relative;
  z-index: 1;
}

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

footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  position: relative;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  margin-bottom: 24px;
  max-width: 300px;
}

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

.social-links a {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 18px;
  transition: all 0.4s var(--ease-spring);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.4);
}

.footer-links h4 {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--light);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s var(--ease-out-expo);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-12px);
  }
}

@media (max-width: 992px) {
  .hero .container,
  .about .container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .phone-mockup {
    max-width: 280px;
  }
  
  .phone-frame {
    border-radius: 42px;
    padding: 10px;
  }
  
  .phone-screen {
    border-radius: 34px;
  }
  
  .phone-notch {
    width: 90px;
    height: 26px;
    top: 8px;
  }
  
  .phone-status-area {
    padding: 12px 20px 0;
    min-height: 48px;
  }
  
  .phone-status-bar {
    font-size: 12px;
  }
  
  .phone-header {
    padding: 6px 8px 8px;
    gap: 8px;
  }
  
  .phone-avatar {
    width: 34px;
    height: 34px;
  }
  
  .phone-info h4 {
    font-size: 14px;
  }
  
  .phone-info span {
    font-size: 11px;
  }
  
  .wa-header-icons {
    gap: 12px;
  }
  
  .wa-header-icons svg {
    width: 18px;
    height: 18px;
  }
  
  .chat-bubble {
    font-size: 13px;
    padding: 6px 8px 4px;
  }
  
  .bubble-time {
    font-size: 10px;
  }
  
  .float-card {
    display: none;
  }
  
  .stats .container {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ==================== RESPONSIVE DESIGN - MOBILE MENU ==================== */
/* 
  IMPORTANTE: A ordem das media queries importa!
  1. Estilos base (desktop) definidos nas linhas 561-594
  2. Sobrescrever para mobile aqui
  3. Restaurar desktop explicitamente no final
*/

@media (max-width: 768px) {
  nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 107, 0, 0.2);
    padding: 100px 30px 30px;
    flex-direction: column;
    gap: 30px;
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
  }
  
  nav.active {
    right: 0;
  }
  
  nav a {
    font-size: 18px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.3s ease, transform 0.3s ease, color 0.3s ease;
  }
  
  /* Remove os estilos de after do nav a em mobile */
  nav a::after {
    display: none;
  }
  
  nav.active a {
    opacity: 1;
    transform: translateX(0);
  }
  
  nav.active a:nth-child(1) { transition-delay: 0.1s; }
  nav.active a:nth-child(2) { transition-delay: 0.15s; }
  nav.active a:nth-child(3) { transition-delay: 0.2s; }
  nav.active a:nth-child(4) { transition-delay: 0.25s; }
  nav.active a:nth-child(5) { transition-delay: 0.3s; }
  
  .mobile-toggle {
    display: block;
    z-index: 1001;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .mobile-toggle:active {
    transform: scale(0.9);
  }
  
  .mobile-toggle i {
    transition: transform 0.3s ease;
  }
  
  .mobile-toggle.active i {
    transform: rotate(90deg);
  }
  
  /* Overlay escuro quando menu está aberto */
  body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 998;
    pointer-events: none;
  }
  
  body.menu-open::after {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  
  body.menu-open {
    overflow: hidden;
  }
  
  .hero h1 {
    font-size: 36px;
    line-height: 1.2;
  }
  
  .hero-content p {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .hero-badge {
    font-size: 13px;
    padding: 8px 16px;
  }
  
  .section-header h2 {
    font-size: 28px;
    line-height: 1.2;
  }
  
  .section-header p {
    font-size: 15px;
  }
  
  .stats .container {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .stat-card {
    padding: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .pricing-card {
    padding: 28px 24px;
  }
  
  .pricing-toggle {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .testimonial-card {
    min-width: 280px;
  }
  
  .cta-box {
    padding: 50px 24px;
  }
  
  .cta-box h2 {
    font-size: 26px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  /* FAQ responsivo */
  .faq-question {
    font-size: 15px;
    padding: 18px 20px;
    padding-right: 50px;
  }
  
  .faq-answer {
    padding: 0 20px 18px;
    font-size: 14px;
  }
  
  /* About section responsivo */
  .about-visual img {
    max-width: 100%;
    border-radius: 16px;
  }
  
  /* Container padding em mobile */
  .container {
    padding: 0 20px;
  }
  
  /* Seções com padding vertical reduzido */
  section {
    padding: 60px 0;
  }
  
  .hero {
    padding-top: 100px;
    padding-bottom: 60px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .section-header h2 {
    font-size: 24px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .pricing-card {
    padding: 24px 20px;
  }
  
  .pricing-price {
    font-size: 36px;
  }
  
  .cta-box h2 {
    font-size: 22px;
  }
  
  .testimonial-card {
    min-width: 260px;
    padding: 24px;
  }
}

/* ==================== SCROLL PROGRESS INDICATOR ==================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-primary);
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ==========================================================================
   Responsive Utility Classes
   ========================================================================== */

/* Esconde elemento por padrão */
.d-none {
  display: none !important;
}

/* ==================== DESKTOP MENU FIX - ALTA PRIORIDADE ==================== */
/* 
  CRÍTICO: Esta media query DEVE ficar no final do CSS para sobrescrever
  qualquer estilo mobile que possa ter sido aplicado.
  
  Especificidade aumentada com seletor header para garantir que funcione
  em ambientes de produção (minificação, cache, etc).
*/

@media (min-width: 769px) {
  .d-md-inline-block {
    display: inline-block !important;
  }
  
  /* Garante que o nav funcione corretamente em desktop */
  header nav,
  nav {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    background-color: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    border-left: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    gap: 40px !important;
    right: auto !important;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }
  
  header nav a,
  nav a {
    color: var(--light) !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: none !important;
    border-bottom: none !important;
    background: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: relative !important;
    display: inline-block !important;
    transition: color 0.4s var(--ease-out-quart), transform 0.4s var(--ease-spring) !important;
  }
  
  header nav a::after,
  nav a::after {
    content: '' !important;
    display: block !important;
    position: absolute !important;
    bottom: -4px !important;
    left: 0 !important;
    width: 0 !important;
    height: 2px !important;
    background: var(--primary) !important;
    transition: width 0.4s var(--ease-out-expo) !important;
  }
  
  header nav a:hover,
  nav a:hover {
    color: var(--primary) !important;
    transform: translateY(-2px) !important;
  }
  
  header nav a:hover::after,
  nav a:hover::after {
    width: 100% !important;
  }
  
  .mobile-toggle {
    display: none !important;
    visibility: hidden !important;
  }
  
  /* Remove overlay em desktop */
  body::after {
    display: none !important;
    content: none !important;
    visibility: hidden !important;
  }
  
  body.menu-open {
    overflow: auto !important;
  }
}

/* ==================== FIM DO CSS ==================== */

