.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-image: url('../images/fundo da hero.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(27, 60, 97, 0.2) 0%, rgba(18, 44, 72, 0.3) 100%);
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 144, 217, 0.15) 0%, transparent 70%);
  animation: float 8s ease-in-out infinite;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 100px;
  align-items: center;
  width: 100%;
}

.hero-text .line-break {
  display: inline;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-text h1 span {
  color: var(--accent);
  position: relative;
}

.hero-text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-pdv-svg {
  width: 100%;
  max-width: 420px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(74, 144, 217, 0.4);
  border-radius: var(--border-radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-accent);
}

.hero-card-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-glow);
}

.hero-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.stat-item {
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(74, 144, 217, 0.3);
  border-radius: var(--border-radius-lg);
  transition: all var(--transition-base);
}

.stat-item:hover {
  background: rgba(74, 144, 217, 0.2);
  border-color: rgba(74, 144, 217, 0.5);
  transform: translateY(-4px);
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  font-weight: 600;
}

.floating-badge {
  position: absolute;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 4s ease-in-out infinite;
  z-index: 3;
}

.floating-badge.top {
  top: -10px;
  right: -30px;
}

.floating-badge.bottom {
  bottom: 60px;
  left: -40px;
  animation-delay: 2s;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-accent);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.badge-text {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.875rem;
}

@media (max-width: 1200px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--header-height) + 40px);
  }
  
  .hero-text h1 {
    font-size: 2.25rem;
  }
  
  .hero-text p {
    font-size: 1.125rem;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 24px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .floating-badge {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.875rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }
}
