/* ====== CONTAINER PRINCIPAL ====== */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  max-width: 900px;
  font-family: "Poppins", Arial, sans-serif;
}

/* ====== TÍTULO ====== */
.header .title {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
  text-align: center;
  margin-bottom: 40px;
}

/* ====== BOTÕES ====== */
.buttons-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 600px;
}

.nav-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #3a8057;
  color: #ffffff;
  text-decoration: none;
  border-radius: 14px;
  padding: 25px 35px;
  transition: background-color 0.3s ease;
}

/* Efeito hover */
.nav-button:hover {
  background-color: #4bb65a;
}

/* ====== ÍCONES ====== */
.icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.icon {
  width: 45px;
  height: 45px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
}

/* ====== TEXTO ====== */
.button-text {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.5px;
}

/* ====== RESPONSIVO ====== */
@media (max-width: 600px) {
  .nav-button {
    padding: 18px 25px;
  }
  .icon {
    width: 35px;
    height: 35px;
  }
  .button-text {
    font-size: 1.1rem;
  }
}
