/* ============================================
   APEXPY - HERO BANNER - DARK THEME
   ============================================ */

.hero-banner {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: var(--spacing-3xl) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    var(--bg-primary) 0%,
    var(--bg-secondary) 100%
  );
}

.hero-banner .container {
  max-width: 1400px;
  width: 100%;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(0, 191, 99, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 191, 99, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 0 var(--spacing-xl);
}

/* Texto do Hero */
.hero-text {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
  animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: 3.5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
}

.hero-title .highlight-green {
  color: var(--apexpy-green);
  position: relative;
  display: inline-block;
}

.hero-title .highlight-green::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--apexpy-green), transparent);
  opacity: 0.3;
  animation: underlineGlow 2s ease-in-out infinite;
}

@keyframes underlineGlow {
  0%, 100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

.hero-subtitle strong {
  color: var(--apexpy-green);
  font-weight: var(--font-weight-semibold);
}

.hero-description {
  font-size: var(--font-size-lg);
  color: var(--text-tertiary);
  margin: 0;
  font-style: italic;
}

/* Botão Hero */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) var(--spacing-2xl);
  background: var(--apexpy-green);
  color: var(--text-inverse);
  border-radius: var(--radius-md);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-green);
  max-width: fit-content;
  margin-top: var(--spacing-md);
}

.btn-hero:hover {
  background: var(--apexpy-green-light);
  box-shadow: var(--shadow-green-glow);
  transform: translateY(-2px);
}

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

.btn-hero:hover i {
  transform: translateX(4px);
}

/* Visual do Hero - Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 0.8s ease;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.phone-mockup-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: auto;
}

.phone-mockup {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 60px rgba(0, 191, 99, 0.3));
  animation: phoneFloat 3s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes phoneFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

/* Notificações Flutuantes */
.notification {
  position: absolute;
  z-index: 2;
  animation: notificationFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}

.notification-svg {
  width: 100%;
  height: auto;
  display: block;
  animation: notificationPulse 2s ease-in-out infinite;
}

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

@keyframes notificationPulse {
  0%, 100% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(0, 191, 99, 0.5));
  }
  50% {
    opacity: 0.9;
    filter: drop-shadow(0 0 20px rgba(0, 191, 99, 0.8));
  }
}

/* Posicionamento das Notificações */
.notification-1 {
  top: 15%;
  left: -15%;
  width: 240px;
  animation-delay: 0s;
  animation-duration: 3.5s;
}

.notification-2 {
  top: 45%;
  right: -20%;
  width: 260px;
  animation-delay: 1s;
  animation-duration: 4s;
}

.notification-3 {
  bottom: 20%;
  left: -10%;
  width: 250px;
  animation-delay: 2s;
  animation-duration: 3.8s;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-banner .container {
    max-width: 1200px;
  }
  
  .hero-content {
    padding: 0 var(--spacing-lg);
  }
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-2xl);
    text-align: center;
    padding: 0;
  }
  
  .hero-visual {
    order: -1;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .notification-1,
  .notification-2,
  .notification-3 {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: auto;
    padding: var(--spacing-xl) 0;
  }
  
  .hero-content {
    gap: var(--spacing-xl);
    padding: 0 var(--spacing-md);
  }
  
  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: var(--font-size-sm);
    line-height: 1.6;
  }
  
  .hero-description {
    font-size: var(--font-size-sm);
  }
  
  .btn-hero {
    padding: var(--spacing-sm) var(--spacing-xl);
    font-size: var(--font-size-base);
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
  
  .phone-mockup-container {
    max-width: 280px;
  }
  
  .notification-1,
  .notification-2,
  .notification-3 {
    width: 100px;
  }
  
  .notification-1 {
    top: 8%;
    left: -8%;
  }
  
  .notification-2 {
    top: 35%;
    right: -12%;
  }
  
  .notification-3 {
    bottom: 12%;
    left: -5%;
  }
}

