#banner {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
}

#wrapperBanner {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: center;
  z-index: -2;
  opacity: 0.9;
}

.bannerOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(11, 53, 77, 0.6) 0%, rgba(11, 53, 77, 0.4) 100%);
  z-index: -1;
}

.containerBanner {
  width: var(--container);
  max-width: var(--max-width);
  height: 100%;
  display: flex;
  justify-content: start;
  align-items: center;
  margin: 0 auto;
  padding: var(--spacing-2xl) 0;
  position: relative;
  z-index: 2;
}

.containerBanner h1 {
  width: 540px;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0 0 var(--spacing-lg) 0;
  animation: fadeInUp 1s ease-out;
}

.containerBanner p {
  width: 540px;
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--spacing-2xl) 0;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.containerBanner .actionButton {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}

.containerBanner {
  width: var(--container);
  max-width: var(--max-width);
  height: 100%;
  display: flex;
  /* justify-content: center; */
  align-items: center;
  margin: 0 auto;
  padding: var(--spacing-2xl) 0;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 800px;
  /* margin: 0 auto; */
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 8px 16px;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease-out 0.1s both;
}

.hero-badge i {
  color: #FFD700;
  font-size: 1rem;
}

.hero-badge span {
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
}

.containerBanner h1 {
  width: 100%;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: var(--font-size-6xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0 0 var(--spacing-lg) 0;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.containerBanner p {
  width: 100%;
  color: #FFFFFF;
  font-family: var(--font-primary);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--spacing-xl) 0;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--spacing-xl);
  animation: fadeInUp 1s ease-out 0.4s both;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item i {
  color: #4CAF50;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item span {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 500;
}

.containerBanner .actionButton {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.whatsapp {
  text-align: center;
  color: #FFFFFF;
  font-family: var(--font-secondary);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--letter-spacing-wide);
  margin: 0;
  padding: 0 var(--spacing-lg);
  cursor: pointer;
  min-width: 220px;
  height: 52px;
  background: var(--btn-primary);
  border-radius: var(--border-radius-lg);
  border: 3px var(--btn-primary) solid;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  box-shadow: var(--box-shadow-lg);
  animation: fadeInUp 1s ease-out 0.4s both;
  text-decoration: none !important;
  outline: none;
}

.whatsapp:hover {
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
  color: #FFFFFF;
  text-decoration: none !important;
  outline: none;
}

.whatsapp i {
  font-size: 26px;
  color: #FFFFFF;
  margin: 0 3px 0 0;
}


/* Animações */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsividade para Header */
@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    padding: 0 20px;
  }
  
  .containerBanner h1 {
    width: 100%;
    font-size: var(--font-size-4xl);
    text-align: center;
  }
  
  .containerBanner p {
    width: 100%;
    font-size: var(--font-size-base);
    text-align: center;
  }
  
  .hero-features {
    align-items: center;
  }
  
  .containerBanner .actionButton {
    justify-content: center;
  }
  
  .whatsapp {
    margin: 0;
    width: 100%;
    max-width: 300px;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  .containerBanner h1 {
    font-size: var(--font-size-3xl);
  }
  
  .containerBanner p {
    font-size: var(--font-size-sm);
  }
}