/* Bonus Section - Profissão Inteligente */

.bonus-section {
  padding: 80px 30px;
  background: linear-gradient(145deg, var(--primary-bg), var(--secondary-bg));
  position: relative;
  overflow: hidden;
}

.bonus-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Título da Seção */
.bonus-title {
  text-align: center;
  margin-bottom: 60px;
}

.bonus-title h2 {
  font-size: 2.5rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.bonus-title h2 span {
  color: var(--secondary-accent);
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

.bonus-title p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Cards de Bônus */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.bonus-card {
  display: flex;
  background: rgba(13, 13, 13, 0.7);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 255, 242, 0.1);
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 255, 242, 0.3);
}

.bonus-content {
  flex: 1;
  padding: 30px;
}

.bonus-number {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 15px;
}

.bonus-name {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.bonus-description {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bonus-value {
  font-size: 1.1rem;
  color: var(--secondary-accent);
  font-weight: 600;
  margin-bottom: 20px;
}

.bonus-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
  color: #000;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0, 255, 242, 0.2);
  border: none;
  cursor: pointer;
}

.bonus-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 20px rgba(0, 255, 242, 0.4);
}

.bonus-image {
  flex: 0 0 40%;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  min-height: 300px;
}

.bonus-image::after {
  content: "Imagem do Bônus";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--primary-accent);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Selo de Garantia */
.guarantee-section {
  margin-top: 60px;
  background: rgba(0, 255, 136, 0.08);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border-left: 4px solid var(--secondary-accent);
}

.guarantee-section h3, .guarantee-section h4 {
  font-size: 1.5rem;
  color: var(--secondary-accent);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-section h3 i, .guarantee-section h4 i {
  margin-right: 10px;
  font-size: 1.8rem;
}

.guarantee-section p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 10px;
}

.guarantee-box {
  background: rgba(0, 255, 136, 0.08);
  border-radius: 12px;
  padding: 25px;
  margin: 30px 0;
  text-align: center;
  border-left: 4px solid var(--secondary-accent);
}

.guarantee-box h4 {
  color: var(--secondary-accent);
  margin-bottom: 15px;
}

/* Responsividade */
@media (max-width: 992px) {
  .bonus-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .bonus-card {
    flex-direction: column-reverse;
  }
  
  .bonus-image {
    height: 200px;
    width: 100%;
  }
  
  .bonus-title h2 {
    font-size: 1.8rem;
  }
  
  .bonus-name {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .bonus-section {
    padding: 60px 20px;
  }
  
  .bonus-title h2 {
    font-size: 1.6rem;
  }
  
  .bonus-content {
    padding: 20px;
  }
}
