:root {
  --bg: #0a0a0a;
  --surface: #0a0a0a;
  --surface-elevated: #1a1a1a;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --text-subtle: #666666;
  --red-primary: #7FFF00;
  --red-secondary: #65CC00;
  --red-dark: #4B9900;
  --red-glow: rgba(127, 255, 0, 0.3);
  --red-subtle: rgba(127, 255, 0, 0.1);
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-large: 0 8px 48px rgba(0, 0, 0, 0.6);
  --gradient-primary: linear-gradient(135deg, var(--red-primary), var(--red-dark));
  --gradient-bg: linear-gradient(135deg, #7fff0000, #4b990080);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  padding-top: 160px; /* Compensar altura do header fixo */
}

/* REGRA GLOBAL: Oculta hero__mobile-image no desktop */
@media screen and (min-width: 769px) {
  body .hero .hero__mobile-image,
  .hero__mobile-image,
  section.hero .hero__mobile-image,
  .hero__mobile-image.hero__mobile-image.hero__mobile-image {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
    animation: none !important;
  }
}

/* Garante que hero__mobile-image apareça no mobile */
@media screen and (max-width: 768px) {
  .hero__mobile-image {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
    overflow: visible !important;
    position: relative !important;
    left: auto !important;
    animation: fadeInUp 1s ease-out 0.6s both !important;
  }
}

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

/* Header - Modern Glassmorphism */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  backdrop-filter: blur(24px) saturate(180%);
  background: rgba(10, 10, 10, 0.85);
  border-bottom: 1px solid rgba(127, 255, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid rgba(127, 255, 0, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.header.transparent {
  background: rgba(10, 10, 10, 0.3);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

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

.brand__logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px var(--red-glow));
  transition: filter 0.3s ease;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem;
  border-radius: 8px;

  transition: all 0.3s ease;
}

.nav__toggle:hover {
  border-color: var(--border-hover);
  background: var(--surface);
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav__link:hover {
  color: var(--text);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav__link:hover::after {
  width: 100%;
}

.actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* Buttons - Modern Design */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.25rem 2.75rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn--primary {
  background: var(--gradient-primary);
  color: #0a0a0a;
  font-weight: 700;
  box-shadow: 0 6px 24px var(--red-glow);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px var(--red-glow), 0 0 60px rgba(127, 255, 0, 0.3);
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 2px solid rgba(127, 255, 0, 0.2);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  background: rgba(127, 255, 0, 0.1);
  border-color: rgba(127, 255, 0, 0.4);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(127, 255, 0, 0.2);
}

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

.btn--ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: var(--surface);
}

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

.btn--outline:hover {
  background: var(--red-primary);
  color: white;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* Hero Section - Modern Design */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #0a1a0a 50%, #448716 100%);
  padding: 2rem 0;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero__animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.data-stream {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--red-primary),
    transparent
  );
  animation: dataStreamFlow 3s linear infinite;
  opacity: 0.6;
}

.data-stream:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 4s;
}

.data-stream:nth-child(2) {
  left: 25%;
  animation-delay: 1s;
  animation-duration: 3.5s;
}

.data-stream:nth-child(3) {
  left: 50%;
  animation-delay: 2s;
  animation-duration: 4.5s;
}

.data-stream:nth-child(4) {
  left: 75%;
  animation-delay: 0.5s;
  animation-duration: 3s;
}

.data-stream:nth-child(5) {
  left: 90%;
  animation-delay: 1.5s;
  animation-duration: 4s;
}

.floating-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--red-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--red-glow);
  animation: particleFloat 8s linear infinite;
  will-change: transform;
}

.particle:nth-child(1) {
  left: 15%;
  animation-delay: 0s;
  animation-duration: 12s;
}

.particle:nth-child(2) {
  left: 35%;
  animation-delay: 2s;
  animation-duration: 10s;
}

.particle:nth-child(3) {
  left: 55%;
  animation-delay: 4s;
  animation-duration: 14s;
}

.particle:nth-child(4) {
  left: 75%;
  animation-delay: 1s;
  animation-duration: 11s;
}

.particle:nth-child(5) {
  left: 85%;
  animation-delay: 3s;
  animation-duration: 13s;
}

.particle:nth-child(6) {
  left: 5%;
  animation-delay: 5s;
  animation-duration: 9s;
}

.particle:nth-child(7) {
  left: 45%;
  animation-delay: 6s;
  animation-duration: 15s;
}

.particle:nth-child(8) {
  left: 65%;
  animation-delay: 7s;
  animation-duration: 8s;
}

/* Otimização para dispositivos móveis - Versão leve e funcional */
@media (max-width: 768px) {
  /* Remove o header fixo e padding-top */
  body {
    padding-top: 0;
  }
  
  /* Header não fixo em mobile */
  .header {
    position: relative !important;
    background: var(--bg) !important;
    backdrop-filter: none !important;
    border: none !important;
 
  }
  
  .header.scrolled,
  .header.transparent {
    position: relative !important;
    background: var(--bg) !important;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .nav__toggle {
    display: block;
  }
  
  .nav__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 1rem;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    display: none;
  }
  
  .nav__list.open {
    display: flex;
  }
  
  .actions {
    display: none;
  }
  
  .brand__logo {
    width: 64px;
    height: 64px;
  }
  
  /* Hero section otimizada */
  .hero {
    padding: 0 0 3rem 0;
    min-height: auto;
  }
  
  .hero__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    min-width: 200px;
  }
  
  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0;
  }
  
  .metric {
    padding: 1rem;
  }
  
  .metric__value {
    font-size: 1.5rem;
  }
  
  .metric__label {
    font-size: 0.8rem;
  }
  
  /* Remove elementos que cobrem informações */
  .hero__orbs,
  .hero__video-overlay,
  .particles {
    display: none !important;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .cta__actions {
    flex-direction: column;
    align-items: center;
  }
  
  /* Footer otimizado */
  .footer {
    padding: 3rem 0 2rem 0;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer__brand {
    align-items: center;
  }
  
  .footer__links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer__link-group {
    text-align: center;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    padding-top: 2rem;
  }
  
  /* Garante que as imagens apareçam */
  .hero__image img,
  .payment-terminal img {
    opacity: 1 !important;
    transform: none !important;
  }
  
  /* Ajusta o layout do hero para mobile */
  .hero__content,
  .hero__visual {
    grid-column: 1 / -1;
    text-align: center;
  }
  
  .hero__visual {
    margin-top: 2rem;
    order: 2;
  }
  
  /* Layout mobile moderno e limpo */
  .hero {
    padding: 4rem 0 2rem 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
  }
  
  .hero .container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 0 1.5rem;
  }
  
  .hero__content {
    padding: 0;
    max-width: 100%;
  }
  
  .hero__badge {
    margin-bottom: 1.5rem;
  }
  
  .hero__title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #7FFF00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  
  .hero__subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 100%;
  }
  
  .hero__actions {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
  }
  
  .btn--large {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
  }
  
  .hero__metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
  }
  
  .metric {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
  }
  
  .metric:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(127, 255, 0, 0.3);
    transform: translateY(-2px);
  }
  
  .metric__value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--red-primary);
    margin-bottom: 0.5rem;
  }
  
  .metric__label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
  }
  
  /* Visual mobile com imagem cyber */
  .hero__visual {
    margin-top: 0;
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero__mobile-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex; /* Mostra por padrão no mobile */
    align-items: center;
    justify-content: center;
  }
  
  .cyber-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(127, 255, 0, 0.3));
    animation: cyberFloat 6s ease-in-out infinite;
  }
  
  /* Esconde terminal no mobile */
  .payment-terminal {
    display: none !important;
  }
  
  /* Mostra imagem mobile apenas no mobile */
  .hero__mobile-image {
    display: flex !important;
  }
  
  /* Animação suave para a imagem */
  @keyframes cyberFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
  }
  
  /* Partículas decorativas ao redor da imagem */
  .hero__visual::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
  }
  
  /* Partículas flutuantes extras */
  .hero__visual::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 4px;
    height: 4px;
    background: var(--red-primary);
    border-radius: 50%;
    animation: floatParticle 6s ease-in-out infinite;
    box-shadow: 
      20px 20px 0 var(--red-secondary),
      -30px 40px 0 var(--red-glow),
      40px -20px 0 var(--red-primary);
  }
  
  @keyframes floatParticle {
    0%, 100% {
      transform: translateY(0px) rotate(0deg);
      opacity: 0.8;
    }
    33% {
      transform: translateY(-20px) rotate(120deg);
      opacity: 1;
    }
    66% {
      transform: translateY(10px) rotate(240deg);
      opacity: 0.6;
    }
  }
  
  /* Efeito de brilho na imagem */
  .cyber-image {
    position: relative;
    filter: drop-shadow(0 10px 30px rgba(127, 255, 0, 0.3));
  }
  
  .cyber-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shine 3s ease-in-out infinite;
    border-radius: 20px;
  }
  
  @keyframes shine {
    0% {
      transform: translateX(-100%) translateY(-100%);
    }
    50% {
      transform: translateX(100%) translateY(100%);
    }
    100% {
      transform: translateX(-100%) translateY(-100%);
    }
  }
  
  /* Grid de métricas mais bonito */
  .hero__metrics {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(127, 255, 0, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
  }
  
  .hero__metrics::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(127, 255, 0, 0.1), transparent);
    animation: rotate 8s linear infinite;
  }
  
  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  .metric {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .metric:hover {
    background: rgba(127, 255, 0, 0.1);
    transform: translateY(-5px);
  }
  
  .metric__value {
    background: linear-gradient(135deg, var(--red-primary), var(--red-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
  }
  
  /* Melhorias adicionais para mobile */
  .hero__badge {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-secondary) 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: badgeGlow 3s ease-in-out infinite;
  }
  
  @keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(127, 255, 0, 0.3); }
    50% { box-shadow: 0 0 30px rgba(127, 255, 0, 0.6); }
  }
  
  /* Botões mais bonitos */
  .btn--primary {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-secondary) 100%);
    border: none;
    position: relative;
    overflow: hidden;
  }
  
  .btn--primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
  }
  
  .btn--primary:hover::before {
    left: 100%;
  }
  
  .btn--secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
  }
  
  .btn--secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--red-primary);
  }
  
  /* Animações suaves para os elementos */
  .hero__title {
    animation: fadeInUp 1s ease-out;
  }
  
  .hero__mobile-image {
    animation: fadeInUp 1s ease-out 0.8s both;
  }
  
  .hero__subtitle {
    animation: fadeInUp 1s ease-out 0.2s both;
  }
  
  .hero__actions {
    animation: fadeInUp 1s ease-out 0.4s both;
  }
  
  .hero__metrics {
    animation: fadeInUp 1s ease-out 0.6s both;
  }
  
  /* Remove animação do mobile-image no desktop */
  .hero__mobile-image {
    display: none !important;
    animation: none !important;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsividade extra para telas muito pequenas */
  @media (max-width: 480px) {
    .hero {
      padding: 3rem 0 1.5rem 0;
    }
    
    .hero__title {
      font-size: 2rem;
    }
    
    .hero__subtitle {
      font-size: 1rem;
    }
    
    .cyber-image {
      max-width: 220px;
    }
    
    .hero__metrics {
      grid-template-columns: 1fr;
      gap: 1rem;
    }
    
    .metric {
      padding: 1rem;
    }
    
    .metric__value {
      font-size: 1.5rem;
    }
  }
  
  /* Garante que o desktop não seja afetado - REGRA MAIS ESPECÍFICA */
  @media screen and (min-width: 769px) {
    body .hero__mobile-image {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
      height: 0 !important;
      width: 0 !important;
      overflow: hidden !important;
    }
    
    .payment-terminal {
      display: block !important;
    }
  }
  
  /* Fundo animado otimizado para mobile */
  .hero__bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: 100% !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%) !important;
    overflow: hidden !important;
  }
  
  /* Animações leves de fundo para mobile */
  .hero__animated-bg {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0.3 !important;
    display: block !important;
  }
  
  /* Partículas flutuantes sutis */
  .floating-particles {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    opacity: 0.4 !important;
  }
  
  .particle {
    position: absolute !important;
    width: 2px !important;
    height: 2px !important;
    background: var(--red-primary) !important;
    border-radius: 50% !important;
    opacity: 0.6 !important;
    display: block !important;
    animation: particleFloat 8s ease-in-out infinite !important;
  }
  
  .particle:nth-child(1) { top: 20% !important; left: 10% !important; animation-delay: 0s !important; }
  .particle:nth-child(2) { top: 60% !important; left: 80% !important; animation-delay: 2s !important; }
  .particle:nth-child(3) { top: 80% !important; left: 30% !important; animation-delay: 4s !important; }
  .particle:nth-child(4) { top: 30% !important; left: 70% !important; animation-delay: 6s !important; }
  .particle:nth-child(5) { top: 50% !important; left: 50% !important; animation-delay: 1s !important; }
  .particle:nth-child(6) { top: 10% !important; left: 90% !important; animation-delay: 3s !important; }
  .particle:nth-child(7) { top: 70% !important; left: 20% !important; animation-delay: 5s !important; }
  .particle:nth-child(8) { top: 40% !important; left: 60% !important; animation-delay: 7s !important; }
  
  /* Stream de dados suaves */
  .data-stream {
    position: absolute !important;
    width: 1px !important;
    height: 100% !important;
    background: linear-gradient(to bottom, transparent, var(--red-primary), transparent) !important;
    opacity: 0.3 !important;
    display: block !important;
    animation: dataStreamFlow 6s linear infinite !important;
  }
  
  .data-stream:nth-child(1) { left: 20% !important; animation-delay: 0s !important; }
  .data-stream:nth-child(2) { left: 40% !important; animation-delay: 2s !important; }
  .data-stream:nth-child(3) { left: 60% !important; animation-delay: 4s !important; }
  .data-stream:nth-child(4) { left: 80% !important; animation-delay: 1s !important; }
  .data-stream:nth-child(5) { left: 30% !important; animation-delay: 3s !important; }
  
  /* Orbs sutis */
  .hero__orbs {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    opacity: 0.2 !important;
  }
  
  .orb {
    position: absolute !important;
    border-radius: 50% !important;
    background: radial-gradient(circle, var(--red-glow) 0%, transparent 70%) !important;
    display: block !important;
    animation: orbFloat 10s ease-in-out infinite !important;
  }
  
  .orb--1 { width: 60px !important; height: 60px !important; top: 20% !important; left: 15% !important; animation-delay: 0s !important; }
  .orb--2 { width: 40px !important; height: 40px !important; top: 70% !important; left: 80% !important; animation-delay: 3s !important; }
  .orb--3 { width: 50px !important; height: 50px !important; top: 50% !important; left: 40% !important; animation-delay: 6s !important; }
  
  /* Ajusta o grid do hero */
  .hero .container {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    padding: 0 1rem !important;
  }
  
  /* Melhora a visibilidade do terminal */
  .payment-terminal {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 280px;
    transform: none !important;
    backdrop-filter: none !important;
    padding: 1rem !important;
    background: var(--surface) !important;
    border: 1px solid var(--border) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  }
  
  /* Remove o fundo problemático em mobile */
  .payment-terminal::before {
    display: none !important;
  }
  
  /* Remove animações que podem causar problemas */
  .hero__badge,
  .hero__title,
  .hero__subtitle {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  /* Animações otimizadas para mobile */
  .particle {
    animation: particleFloat 15s infinite linear !important;
    opacity: 0.4 !important;
    display: block !important;
  }
  
  .orb {
    animation: orbFloat 8s ease-in-out infinite !important;
    opacity: 0.3 !important;
    display: block !important;
  }
  
  /* Efeitos de rolagem dinâmica suaves no mobile */
  .hero {
    transform: none !important;
    position: relative !important;
  }
  
  .hero__bg {
    animation: subtlePulse 4s ease-in-out infinite !important;
    transform: none !important;
    opacity: 0.8 !important;
  }
  
  .hero__animated-bg {
    animation: bgShift 20s linear infinite !important;
    opacity: 0.6 !important;
  }
  
  .hero__video-overlay {
    animation: overlayPulse 6s ease-in-out infinite !important;
    opacity: 0.3 !important;
  }
  
  .hero__orbs {
    animation: none !important;
    opacity: 0.4 !important;
  }
  
  /* Streams de dados animadas no mobile */
  .data-stream {
    animation: dataStreamFlow 3s linear infinite !important;
    opacity: 0.5 !important;
    display: block !important;
  }
  
  .floating-particles {
    animation: float 12s infinite ease-in-out !important;
    opacity: 0.6 !important;
    display: block !important;
  }
  
  /* Animações sutis para elementos no mobile */
  .feature-particle {
    animation: particleFloat 8s infinite linear !important;
    opacity: 0.7 !important;
    transform: none !important;
  }
  
  .data-packet {
    animation: dataStreamFlow 2s linear infinite !important;
    opacity: 0.8 !important;
    transform: none !important;
  }
  
  .award-card {
    animation: subtleFloat 6s ease-in-out infinite !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .flowchart__step {
    animation: stepGlow 4s ease-in-out infinite !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .integration-card {
    animation: cardPulse 5s ease-in-out infinite !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .feature-card {
    animation: featureFloat 7s ease-in-out infinite !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  .pricing-card {
    animation: pricingGlow 8s ease-in-out infinite !important;
    opacity: 1 !important;
    transform: none !important;
  }
  
  /* Transições suaves e efeitos hover otimizados */
  * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }
  
  /* Efeitos hover específicos para mobile */
  .btn:hover {
    transform: translateY(-2px) scale(1.05) !important;
    box-shadow: 0 10px 25px rgba(127, 255, 0, 0.4) !important;
  }
  
  .nav__link:hover {
    transform: translateX(5px) !important;
    color: var(--red-glow) !important;
  }
  
  .carousel-btn:hover {
    transform: scale(1.1) !important;
    background: var(--red-glow) !important;
  }
  
  .indicator:hover {
    transform: scale(1.3) !important;
    background: var(--red-glow) !important;
  }
  
  .feature-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
  }
  
  .pricing-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(127, 255, 0, 0.2) !important;
  }
  
  .integration-card:hover {
    transform: rotateY(5deg) scale(1.05) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4) !important;
  }
  
  /* Garante visibilidade total dos elementos */
  section,
  .section-header,
  .section-title,
  .section-subtitle,
  .hero__content,
  .hero__visual,
  .hero__metrics,
  .metric,
  .flowchart-content,
  .flowchart-visual,
  .features-grid,
  .awards-carousel,
  .integrations,
  .pricing,
  .cta,
  .footer {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  
  .notify-icon {
    width: 80px;
    height: 80px;
    animation: none !important;
    opacity: 0.6;
  }
  
  /* Layout mobile adicional - garante visibilidade */
  .hero__content {
    padding: 0 1rem;
    text-align: center;
  }
  
  .hero__image {
    margin-top: 2rem;
    width: 100%;
    max-width: 300px;
  }
  
  .payment-terminal {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  /* Ajusta seções para mobile */
  .features,
  .integrations,
  .pricing,
  .awards,
  .cta {
    padding: 3rem 0;
  }
  
  .feature-grid,
  .integration-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  /* Melhora a legibilidade */
  .text-center {
    padding: 0 1rem;
  }
  
  /* Ajusta fontes para mobile */
  body {
    font-size: 14px;
  }
  
  h1, h2, h3 {
    word-wrap: break-word;
  }
  
  /* Remove problemas de overflow */
  html, body {
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  /* Ajusta imagens para mobile */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Melhora a navegação mobile */
  .nav__link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  
  /* Ajusta botões */
  .btn {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  
  .hero__actions .btn {
    width: 100%;
    max-width: 240px;
  }
  
  /* Ajusta o terminal de pagamento */
  .payment-terminal {
    width: 100% !important;
    max-width: 280px !important;
    min-height: 320px !important;
    margin: 0 auto !important;
    padding: 1.5rem !important;
    transform: none !important;
    backdrop-filter: none !important;
  }
  
  .terminal__screen {
    min-width: auto !important;
    padding: 1rem !important;
    width: 100% !important;
    max-width: 260px !important;
    margin: 0 auto !important;
  }
  
  /* Ajusta os métodos de pagamento */
  .terminal__methods {
    flex-direction: column !important;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
  }
  
  .payment-method {
    flex-direction: row !important;
    justify-content: center !important;
    padding: 0.75rem !important;
    font-size: 0.9rem !important;
  }
  
  .method__icon {
    font-size: 1.2rem !important;
    margin-right: 0.5rem;
  }
  
  /* Ajusta o header do terminal */
  .terminal__header {
    flex-direction: column !important;
    gap: 0.5rem !important;
    margin-bottom: 1rem !important;
    text-align: center !important;
  }
  
  .terminal__amount {
    font-size: 1.2rem !important;
  }
  
  /* Ajusta as notificações */
  .notify-icon {
    width: 60px !important;
    height: 60px !important;
    top: auto !important;
    left: auto !important;
    right: -10px !important;
    bottom: -10px !important;
  }
  
  .notify-icon:nth-child(1) {
    top: auto !important;
    left: auto !important;
    right: -5px !important;
    bottom: 50% !important;
  }
  
  .notify-icon:nth-child(2) {
    display: none !important;
  }
  
  .notify-icon:nth-child(3) {
    display: none !important;
  }
  
  .terminal__methods {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .payment-method {
    flex-direction: row;
    justify-content: center;
    padding: 0.75rem;
  }
  
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__metrics,
  .badge {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  
  .flowchart__step,
  .integration-card,
  .feature-card,
  .pricing-card {
    animation: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

.hero__video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgb(14 26 10 / 70%) 50%, rgba(10, 10, 10, 0.8) 100%);
  z-index: 2;
}

.hero__orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow), transparent);
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

.orb--1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.orb--2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.orb--3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

/* Otimização para dispositivos móveis */
@media (max-width: 768px) {
  .orb {
    animation: none;
    opacity: 0.4;
  }
}

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

.hero__content {
  max-width: 600px;
}

.hero__badge {
  margin-bottom: 2rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.25rem;
  background: rgba(127, 255, 0, 0.08);
  border: 1px solid rgba(127, 255, 0, 0.25);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #7FFF00;
  backdrop-filter: blur(10px);
  animation: fadeInUp 0.6s ease, badgePulse 3s ease-in-out infinite;
  box-shadow: 0 4px 16px rgba(127, 255, 0, 0.15);
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 4px 16px rgba(127, 255, 0, 0.15);
  }
  50% {
    box-shadow: 0 4px 24px rgba(127, 255, 0, 0.3);
  }
}

.hero__title {
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
  animation: fadeInUp 0.8s ease;
  text-shadow: 0 4px 20px rgba(127, 255, 0, 0.2);
}

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

.hero__subtitle {
  font-size: 1.35rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  line-height: 1.7;
  font-weight: 400;
  max-width: 580px;
  animation: fadeInUp 1s ease;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 1.2s ease;
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  animation: fadeInUp 1.4s ease;
}

.metric {
  text-align: center;
}

.metric__value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--red-primary);
  display: block;
}

.metric__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* Payment Terminal */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 1.6s ease;
}

.payment-terminal {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(127, 255, 0, 0.15);
  border-radius: 32px;
  padding: 2.5rem;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(127, 255, 0, 0.1);
  backdrop-filter: blur(24px) saturate(180%);
  transform: perspective(1200px) rotateY(-3deg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.payment-terminal::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -180px;
  right: -180px;
  bottom: -180px;
  background-image: url('cyber.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-radius: 200px;
  filter: blur(1px);
}

.payment-terminal:hover {
  transform: perspective(1200px) rotateY(0deg) scale(1.05);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.7), 0 0 80px rgba(127, 255, 0, 0.2);
}

/* Notification Animation */
.notify-icon {
  position: absolute;
  width: 160px;
  height: 160px;
  z-index: 10;
  pointer-events: none;
  will-change: transform, opacity;
}

/* Otimização para dispositivos móveis */
@media (max-width: 768px) {
  .notify-icon {
    width: 80px;
    height: 80px;
    animation: none !important;
    opacity: 0.6;
  }
}

/* Reduz o número de notificações em mobile */
@media (max-width: 768px) {
  .notify-icon:nth-child(2),
  .notify-icon:nth-child(3) {
    display: none;
  }
}

/* Global Cursor Animation */
* {
  cursor: none !important;
}

.notify-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 255, 136, 1)) brightness(1.5);
}

@keyframes notifyFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.2);
  }
  10% {
    opacity: 0.7;
    transform: translateY(-40px) scale(0.8);
  }
  40% {
    opacity: 1;
    transform: translateY(-100px) scale(1.3);
  }
  80% {
    opacity: 0.9;
    transform: translateY(-160px) scale(1.6);
  }
  100% {
    opacity: 0;
    transform: translateY(-200px) scale(2);
  }
}

.notify-icon {
  animation: notifyFloat 8s ease-out infinite;
}

.notify-icon:nth-child(1) {
  top: 70%;
  left: 15%;
  animation-delay: 0s;
}

.notify-icon:nth-child(2) {
  top: 40%;
  right: 10%;
  animation-delay: 2s;
}

.notify-icon:nth-child(3) {
  top: 80%;
  left: 60%;
  animation-delay: 4s;
}

.terminal__screen {
  background: rgba(0, 0, 0, 0.8);
  border: 1px solid rgba(127, 255, 0, 0.15);
  border-radius: 20px;
  padding: 2rem;
  min-width: 320px;
  animation: terminalProcessing 3s ease-in-out infinite;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.terminal__screen::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red-primary), transparent);
  animation: progressFill 2s linear infinite;
}

.terminal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.terminal__status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  animation: statusBlink 1.5s ease-in-out infinite;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-subtle);
}

.status-dot--active {
  background: #00ff88;
  animation: pulse 2s infinite;
}

.terminal__amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--red-primary);
  animation: amountPulse 2s ease-in-out infinite;
}

.terminal__methods {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.payment-method {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
  animation: methodGlow 3s ease-in-out infinite;
}

.payment-method--active {
  border-color: var(--red-primary);
  background: var(--red-subtle);
}

.method__icon {
  font-size: 1.5rem;
}

.terminal__progress {
  text-align: center;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: var(--surface);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  width: 100%;
  animation: progressFill 3s ease-in-out infinite;
}

.progress-text {
  color: #00ff88;
  font-weight: 600;
  animation: statusBlink 1s ease-in-out infinite;
}

/* Sections */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, rgba(127, 255, 0, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Features */
.features {
  padding: 6rem 0;
  background: var(--surface);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

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

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

.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(127, 255, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(127, 255, 0, 0.1);
  background: rgba(127, 255, 0, 0.05);
}

.feature__icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(127, 255, 0, 0.15), rgba(127, 255, 0, 0.05));
  border: 1px solid rgba(127, 255, 0, 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--red-primary);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature__icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 8px 32px rgba(127, 255, 0, 0.3);
}

.feature__title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.feature-card:hover .feature__title {
  color: var(--red-primary);
}

.feature__description {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Integrations */
.integrations {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  background: var(--gradient-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.integrations::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 10, 0.8) 0%,
    rgba(26, 10, 10, 0.7) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 1;
}

.integrations__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.integrations__animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.integrations__orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.integrations__orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, var(--red-glow), transparent);
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
  will-change: transform;
}

.integrations__orb--1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.integrations__orb--2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.integrations__orb--3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

.integrations .container {
  position: relative;
  z-index: 3;
}

/* Data streams para animação */
.integrations__data-streams {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.integrations__stream {
  position: absolute;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red-glow), transparent);
  animation: dataFlow 3s linear infinite;
}

.integrations__stream:nth-child(1) {
  left: 20%;
  animation-delay: 0s;
}

.integrations__stream:nth-child(2) {
  left: 50%;
  animation-delay: 1s;
}

.integrations__stream:nth-child(3) {
  left: 80%;
  animation-delay: 2s;
}

/* Partículas flutuantes */
.integrations__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.integrations__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--red-primary);
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 8s ease-in-out infinite;
}

.integrations__particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.integrations__particle:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 2s;
}

.integrations__particle:nth-child(3) {
  top: 80%;
  left: 30%;
  animation-delay: 4s;
}

.integrations__particle:nth-child(4) {
  top: 30%;
  left: 70%;
  animation-delay: 6s;
}

@keyframes dataFlow {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.6;
  }
  25% {
    transform: translateY(-20px) translateX(10px);
    opacity: 1;
  }
  50% {
    transform: translateY(10px) translateX(-10px);
    opacity: 0.8;
  }
  75% {
    transform: translateY(-10px) translateX(5px);
    opacity: 1;
  }
}

.integrations__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.integration-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  backdrop-filter: blur(12px);
}

.integration-card:nth-child(1) { animation-delay: 0.1s; }
.integration-card:nth-child(2) { animation-delay: 0.2s; }
.integration-card:nth-child(3) { animation-delay: 0.3s; }
.integration-card:nth-child(4) { animation-delay: 0.4s; }
.integration-card:nth-child(5) { animation-delay: 0.5s; }
.integration-card:nth-child(6) { animation-delay: 0.6s; }
.integration-card:nth-child(7) { animation-delay: 0.7s; }
.integration-card:nth-child(8) { animation-delay: 0.8s; }

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

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

.integration-card:hover {
  transform: translateY(-12px) scale(1.05);
  border-color: rgba(127, 255, 0, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 60px rgba(127, 255, 0, 0.15);
  background: rgba(127, 255, 0, 0.06);
}

.integration__image {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  filter: drop-shadow(0 4px 8px var(--red-glow));
  transition: all 0.4s ease;
  background: #ffffff;
  border-radius: 12px;
  padding: 8px;
}

.integration-card:hover .integration__image {
  transform: scale(1.1);
  filter: drop-shadow(0 8px 16px var(--red-glow));
}

.integration__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
  letter-spacing: -0.01em;
  transition: color 0.4s ease;
}

.integration-card:hover .integration__title {
  color: var(--red-primary);
  text-shadow: 0 0 20px rgba(127, 255, 0, 0.3);
}

.integration__description {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  transition: color 0.4s ease;
}

.integration-card:hover .integration__description {
  color: var(--text);
}

.integrations-cta {
  text-align: center;
  margin-top: 3rem;
}

.integrations-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Responsive Integrations */
@media (max-width: 1024px) {
  .integrations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .integrations {
    padding: 4rem 0;
    min-height: auto;
    position: relative;
  }
  
  .integrations__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
  }
  
  .integrations .container {
    position: relative;
    z-index: 3;
  }
  
  .integrations__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  
  .integration-card {
    padding: 1.5rem;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  
  .integration__image {
    width: 60px;
    height: 60px;
  }
  
  .integration__title {
    font-size: 1.1rem;
  }
  
  .integration__description {
    font-size: 0.9rem;
  }
  
  .integrations__orbs,
  .integrations__data-streams,
  .integrations__particles {
    display: none;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
    opacity: 0.8;
  }
  
  .integrations-cta {
    text-align: center;
    padding: 0 1rem;
  }
  
  .integrations-cta .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    max-width: 280px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .integrations {
    padding: 3rem 0;
  }
  
  .integrations__grid {
    gap: 1rem;
    max-width: 100%;
    padding: 0 0.5rem;
  }
  
  .integration-card {
    padding: 1.25rem;
    max-width: 320px;
    margin: 0 auto;
  }
  
  .integration__image {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
  }
  
  .integration__title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .integration__description {
    font-size: 0.85rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  .integrations-cta .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    max-width: 250px;
  }
}

/* Footer */

/* GARANTIA FINAL: hero__mobile-image aparece no mobile */
@media screen and (max-width: 768px) {
  .hero__mobile-image {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 2rem auto !important;
    text-align: center !important;
  }
  
  .cyber-image {
    display: inline-block !important;
    width: 100% !important;
    max-width: 280px !important;
    height: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* Footer */
.footer {
  background: rgba(18, 18, 18, 0.95);
  border-top: 1px solid rgba(127, 255, 0, 0.1);
  padding: 4rem 0 2rem;
  backdrop-filter: blur(20px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.footer__content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer__brand p {
  color: var(--text-muted);
  line-height: 1.6;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer__column h4 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer__column ul {
  list-style: none;
}

.footer__column li {
  margin-bottom: 0.5rem;
}

.footer__column a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__column a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer__legal {
  display: flex;
  gap: 1rem;
}

.footer__legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__legal a:hover {
  color: var(--text);
}

/* Section Animations */
section {
  opacity: 0;
  transition: opacity 0.3s ease;
}

section.visible {
  opacity: 1;
}

.feature-card,
.integration-card {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card.visible,
.integration-card.visible {
  opacity: 1;
}

/* Stagger animation delays */
/* Removidos delays de animação para aparição instantânea */

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

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



@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes progressFill {
  0% {
    width: 0%;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}

@keyframes dataStreamFlow {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(100vh);
    opacity: 0;
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 0; /* Remove padding no mobile */
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .nav__toggle {
    display: block;
  }
  
  .nav__list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin: 1rem;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
    display: none;
  }
  
  .nav__list.open {
    display: flex;
  }
  
  .actions {
    display: none;
  }
  
  .brand__logo {
    width: 96px;
    height: 96px;
  }
  
  .hero__title {
    font-size: 2.5rem;
  }
  
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .cta__actions {
    flex-direction: column;
    align-items: center;
  }
  
  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .footer__brand {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer__logo {
    margin: 0 auto 1rem;
  }
  
  .footer__links {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Flowchart Section */
.flowchart-section {
  padding: 8rem 0 6rem 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  /* margin-top: 2rem; */
}

.flowchart-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, var(--red-glow), transparent 50%),
    radial-gradient(circle at 80% 70%, var(--red-glow), transparent 50%);
  opacity: 0.3;
  z-index: 1;
}

.flowchart-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  position: relative;
  z-index: 2;
}

.flowchart-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.flowchart-text__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.flowchart-logo {
  width: 300px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px var(--red-glow));
}

.flowchart-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.flowchart-subtitle {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--red-primary);
  margin: 0.5rem 0 1.5rem 0;
  text-shadow: 0 0 20px rgba(127, 255, 0, 0.2);
}

.flowchart-description {
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.flowchart-highlight {
  color: var(--text);
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  padding: 1rem;
  background: var(--red-subtle);
  border-left: 4px solid var(--red-primary);
  border-radius: 0 8px 8px 0;
}

.flowchart-cta {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.flowchart-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flowchart-visual__title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2rem;
  text-align: center;
}

.flowchart {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  max-width: 400px;
}

.flowchart__step {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  position: relative;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInStep 0.8s ease forwards;
  backdrop-filter: blur(12px);
}

.flowchart__step:nth-child(1) { animation-delay: 0.2s; }
.flowchart__step:nth-child(2) { animation-delay: 0.4s; }
.flowchart__step:nth-child(3) { animation-delay: 0.6s; }
.flowchart__step:nth-child(4) { animation-delay: 0.8s; }
.flowchart__step:nth-child(5) { animation-delay: 1.0s; }

.flowchart__step:hover {
  transform: translateX(12px) scale(1.03);
  border-color: rgba(127, 255, 0, 0.4);
  box-shadow: 0 12px 40px rgba(127, 255, 0, 0.3), 0 0 60px rgba(127, 255, 0, 0.15);
  background: rgba(127, 255, 0, 0.06);
}

.flowchart__step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  transform: scaleY(0);
  transition: transform 0.6s ease;
}

.flowchart__step.active::before {
  transform: scaleY(1);
}

.step__icon {
  width: 60px;
  height: 60px;
  background: var(--red-subtle);
  border: 2px solid var(--red-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-primary);
  position: relative;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.step__icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.flowchart__step:hover .step__icon::before {
  opacity: 0.2;
}

.step__logo {
  width: 35px;
  height: 35px;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px var(--red-glow));
}

.step__content {
  flex: 1;
}

.step__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.step__description {
  color: var(--text-muted);
  line-height: 1.4;
  font-size: 0.9rem;
}

.step__connector {
  position: absolute;
  bottom: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 2rem;
  background: var(--border);
  transition: all 0.6s ease;
}

.flowchart__step:last-child .step__connector {
  display: none;
}

.step__connector::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--border);
  transition: all 0.6s ease;
}

.flowchart__step.active .step__connector {
  background: var(--red-primary);
}

.flowchart__step.active .step__connector::after {
  border-top-color: var(--red-primary);
}

/* Animated Data Flow */
.data-flow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 3;
}

.data-packet {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--red-primary);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red-glow);
  opacity: 0;
  animation: dataFlow 4s ease-in-out infinite;
}

.data-packet[data-flow="1"] {
  left: 10%;
  animation-delay: 0s;
}

.data-packet[data-flow="2"] {
  left: 50%;
  animation-delay: 1.3s;
}

.data-packet[data-flow="3"] {
  left: 90%;
  animation-delay: 2.6s;
}

/* Step Number Indicators */
.flowchart__step::after {
  content: attr(data-step);
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: white;
  box-shadow: 0 4px 12px var(--red-glow);
}

/* Animations */
@keyframes slideInStep {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes dataFlow {
  0% {
    opacity: 0;
    top: 20%;
    transform: scale(0.5);
  }
  25% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    top: 40%;
    transform: scale(1.2);
  }
  75% {
    top: 60%;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    top: 80%;
    transform: scale(0.5);
  }
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 12px var(--red-glow);
  }
  50% {
    box-shadow: 0 0 24px var(--red-glow), 0 0 36px var(--red-glow);
  }
}

@keyframes orbFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.4;
  }
}

/* Premium Features Section */
.features {
  padding: 8rem 0;
  position: relative;
  background: linear-gradient(135deg, var(--dark-bg) 0%, #0a0a0a 100%);
  overflow: hidden;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, var(--red-primary) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, var(--red-secondary) 0%, transparent 50%);
  opacity: 0.03;
  pointer-events: none;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

.feature-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--red-primary) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: var(--red-primary);
  box-shadow: 0 20px 40px rgba(127, 255, 0, 0.3);
}

.feature-card:hover::before {
  left: 100%;
}

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

.feature__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--gradient-primary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}

.feature-card:hover .feature__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px var(--red-glow);
}

.feature__icon svg {
  width: 40px;
  height: 40px;
  color: white;
  transition: all 0.4s ease;
}

.feature-card:hover .feature__icon svg {
  transform: scale(1.2);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.feature__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.feature-card:hover .feature__title {
  color: var(--red-primary);
}

.feature__description {
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 2;
  transition: color 0.4s ease;
}

.feature-card:hover .feature__description {
  color: var(--text-primary);
}

/* Feature Particles Background */
.feature-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

.feature-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--red-primary);
  border-radius: 50%;
  opacity: 0;
  animation: floatParticle 8s ease-in-out infinite;
}

.feature-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.feature-particle:nth-child(2) { top: 60%; left: 80%; animation-delay: 2s; }
.feature-particle:nth-child(3) { top: 80%; left: 30%; animation-delay: 4s; }
.feature-particle:nth-child(4) { top: 30%; left: 70%; animation-delay: 6s; }
.feature-particle:nth-child(5) { top: 50%; left: 50%; animation-delay: 1s; }

@keyframes floatParticle {
  0%, 100% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-100px) scale(1);
  }
}

/* Awards Carousel Section */
.awards-carousel {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0a0a0a 0%, var(--dark-bg) 100%);
  position: relative;
  overflow: hidden;
}

.awards-carousel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, var(--red-primary) 0%, transparent 40%),
    radial-gradient(circle at 70% 70%, var(--red-secondary) 0%, transparent 40%);
  opacity: 0.05;
  pointer-events: none;
}

.carousel-container {
  position: relative;
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 80px;
}

.carousel-wrapper {
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-card {
  min-width: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
  padding: 3rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(127, 255, 0, 0.12);
  border-radius: 28px;
  backdrop-filter: blur(16px) saturate(180%);
  opacity: 0;
  transform: scale(0.95) translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.award-card.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  border-color: rgba(127, 255, 0, 0.2);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(127, 255, 0, 0.1);
}

.award-image {
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.award-image img {
  width: 250px;
  height: 250px;
  object-fit: contain;
  filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.award-card:hover .award-image img {
  transform: scale(1.08) rotate(3deg);
}

.award-content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(127, 255, 0, 0.3);
}

.award-content p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1.2rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(127, 255, 0, 0.08);
  border: 2px solid rgba(127, 255, 0, 0.2);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #7FFF00;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
  backdrop-filter: blur(12px);
}

.carousel-btn:hover {
  background: rgba(127, 255, 0, 0.15);
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 12px 40px rgba(127, 255, 0, 0.3);
  border-color: rgba(127, 255, 0, 0.5);
  color: #7FFF00;
}

.carousel-btn--prev {
  left: 0;
}

.carousel-btn--next {
  right: 0;
}

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

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(127, 255, 0, 0.3);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.indicator.active {
  background: var(--red-primary);
  transform: scale(1.4);
  border-color: var(--red-primary);
  box-shadow: 0 0 24px var(--red-glow), 0 0 40px rgba(127, 255, 0, 0.2);
}

.indicator:hover {
  background: rgba(127, 255, 0, 0.3);
  border-color: rgba(127, 255, 0, 0.6);
  transform: scale(1.3);
}

/* Responsive Integrations */
@media (max-width: 768px) {
  .integrations {
    padding: 5rem 0;
  }
  
  .integrations__grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  
  .integration-card {
    padding: 2rem 1.5rem;
  }
  
  .integration__logo {
    font-size: 2.5rem;
  }
  
  .integration-card h3 {
    font-size: 1.1rem;
  }
}

/* Responsive Flowchart */
@media (max-width: 968px) {
  .flowchart-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .flowchart-text {
    text-align: center;
  }
  
  .flowchart-text__header {
    justify-content: center;
  }
  
  .flowchart-cta {
    justify-content: center;
  }
  
  .flowchart-visual {
    order: -1;
  }
}

@media (max-width: 768px) {
  .flowchart {
    gap: 1.5rem;
  }
  
  .flowchart__step {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.5rem;
  }
  
  .step__icon {
    width: 60px;
    height: 60px;
  }
  
  .step__logo {
    width: 35px;
    height: 35px;
  }
  
  .step__title {
    font-size: 1.1rem;
  }
  
  .step__description {
    font-size: 0.9rem;
  }
  
  .flowchart__step::after {
    left: 50%;
    top: -15px;
    transform: translateX(-50%);
  }
  
  .step__connector {
    left: 50%;
    bottom: -1.5rem;
    height: 1.5rem;
  }
  
  .flowchart-cta {
    flex-direction: column;
    align-items: center;
  }
}

/* Animações otimizadas para mobile */
@keyframes subtlePulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.8; }
}

/* Animação de progressão do terminal */
@keyframes terminalProcessing {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(127, 255, 0, 0);
  }
  25% {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(127, 255, 0, 0.3);
  }
  50% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(127, 255, 0, 0.5);
  }
  75% {
    transform: scale(1.01);
    box-shadow: 0 0 25px rgba(127, 255, 0, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(127, 255, 0, 0);
  }
}

@keyframes progressFill {
  0% { width: 0%; }
  25% { width: 25%; }
  50% { width: 50%; }
  75% { width: 75%; }
  100% { width: 100%; }
}

@keyframes statusBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

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

@keyframes methodGlow {
  0%, 100% { 
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
  }
  50% { 
    background: rgba(127, 255, 0, 0.2);
    border-color: rgba(127, 255, 0, 0.5);
  }
}

@keyframes bgShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes overlayPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

@keyframes stepGlow {
  0%, 100% { 
    box-shadow: 0 0 20px rgba(127, 255, 0, 0.3);
    border-color: rgba(127, 255, 0, 0.5);
  }
  50% { 
    box-shadow: 0 0 40px rgba(127, 255, 0, 0.6);
    border-color: rgba(127, 255, 0, 0.8);
  }
}

@keyframes cardPulse {
  0%, 100% { 
    transform: scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  50% { 
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(127, 255, 0, 0.2);
  }
}

@keyframes featureFloat {
  0%, 100% { 
    transform: translateY(0) rotate(0deg);
  }
  33% { 
    transform: translateY(-10px) rotate(1deg);
  }
  66% { 
    transform: translateY(-5px) rotate(-1deg);
  }
}

@keyframes pricingGlow {
  0%, 100% { 
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  50% { 
    border-color: rgba(127, 255, 0, 0.5);
    box-shadow: 0 15px 40px rgba(127, 255, 0, 0.3);
  }
}

@keyframes subtleFloat {
  0%, 100% { 
    transform: translateY(0) scale(1);
  }
  50% { 
    transform: translateY(-8px) scale(1.01);
  }
}

/* Footer */