/* Section Styling */
.features-section {
  width: 100%;
  min-height: 100vh;
  background-image: url('/assets/images/bg_features.jpg');
  background-size: cover;
  background-position: right; /* Move a imagem para o canto direito */
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Garante que o texto fique no lado esquerdo */
  padding: 0 5%; /* Espaçamento lateral */
}

/* Centraliza o conteúdo */
.container {
  text-align: left; /* Alinha o texto à esquerda */
  max-width: 600px; /* Limita a largura do texto */
  z-index: 2; /* Garante que fique acima da imagem */
}

/* Title Styling */
.features-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  line-height: 1.4;
  margin-bottom: 2rem;
}

/* List Styling */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3rem 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.features-list i {
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.8); /* White with slight transparency */
}

.features-list p {
  font-size: 1.2rem;
  color: white;
  margin: 0;
  line-height: 1.5;
}

/* Button Styling */
.cta-button {
  background-color: #239b39;
  color: white;
  font-size: 1.2rem;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s;
  width: 250px; /* Wider button */
}

.cta-button:hover {
  background-color: #1d852e;
}

/* Para telas menores que 1366px (notebooks pequenos) */
@media (max-width: 1366px) {
  .features-section {
    background-image: none; /* Remove o fundo */
    background-color: #239b39; /* Cor sólida como substituição */
    justify-content: center;
    align-items: center;
    text-align: center; /* Centraliza o texto */
    padding: 3rem 1.5rem;
  }
}

/* Para telas menores que 768px (tablets) */
@media (max-width: 768px) {
  .features-section {
    background-image: none; /* Remove o fundo */
    background-color: #239b39; /* Cor sólida */
    padding: 2rem 1rem;
  }
}

/* Para telas menores que 576px (smartphones) */
@media (max-width: 576px) {
  .features-section {
    background-image: none; /* Remove o fundo */
    background-color: #239b39; /* Cor sólida */
    flex-direction: column; /* Garantir alinhamento vertical */
    text-align: center;
    padding: 1.5rem 1rem;
  }
}