/* Seção de Benefícios Simplificada */
#benefits {
  padding: 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.benefits-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefits-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 19, 59, 0.8) 0%, rgba(0, 19, 59, 0.6) 100%);
}

.benefits-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 24px;
}

.benefits-header h2 {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.benefits-header .highlight {
  color: #2196F3;
}

.benefits-header p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.6;
  color: #ffffff;
}

.benefits-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.benefit-card {
  background: white;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid rgba(0, 19, 59, 0.1);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #2196F3, #FF6B35);
  border-radius: 12px 12px 0 0;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #2196F3, #FF6B35);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.benefit-icon i {
  font-size: 1.5rem;
  color: white;
}

.benefit-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 12px;
}

.benefit-content p {
  color: #6c757d;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .benefits-hero {
    height: 40vh;
    min-height: 300px;
  }
  
  .benefits-header h2 {
    font-size: 2.2rem;
  }
  
  .benefits-header p {
    font-size: 1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .benefit-card {
    padding: 20px;
  }
  
  .benefits-container {
    padding: 60px 16px;
  }
}

@media (max-width: 480px) {
  .benefits-hero {
    height: 35vh;
    min-height: 250px;
  }
  
  .benefits-header h2 {
    font-size: 1.8rem;
  }
  
  .benefits-container {
    padding: 40px 16px;
  }
}