.beneficios-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--azul-noite), var(--azul-aco));
}

.beneficios-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.beneficios-text {
  max-width: 600px;
}

.section-title-left {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-align: left;
  line-height: 1.2;
}

.beneficios-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 40px;
  font-weight: 300;
}

.beneficios-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
}

.beneficio-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  align-items: flex-start;
}

.beneficio-item:last-child {
  margin-bottom: 0;
}

.beneficio-icon {
  width: 50px;
  height: 50px;
  background: var(--dourado-claro);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--azul-noite);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(200, 169, 120, 0.25);
}

.beneficio-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 5px 0;
}

.beneficio-item p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

.beneficios-image {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(13, 27, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit-img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,0.5) 100%);
  pointer-events: none;
}

.image-wrapper:hover .benefit-img {
  transform: scale(1.06);
}

.beneficios-action {
  margin-top: 40px;
}

@media (max-width: 968px) {
  .beneficios-section {
    padding: 70px 0;
  }

  .beneficios-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .section-title-left {
    text-align: center;
    font-size: 2.2rem;
  }

  .beneficios-description {
    text-align: center;
    font-size: 1rem;
  }

  .beneficios-text {
    max-width: 100%;
  }
  
  .benefit-img {
    height: 380px;
  }

  .beneficios-action {
    text-align: center;
  }
}
