.intro {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f9f9f9;
  color: black;
  z-index: 2;
}

.intro__title {
  margin-top: 90px;
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-primary-green);
}

.intro__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-dark);
}

/* CONTENEDOR DE BOTONES */
.intro__buttons {
  margin-top: 60px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px; /* gap consistente */
  flex-wrap: wrap; /* por si no cabe en pantallas intermedias */
}

/* Ambos botones mismo tamaño en desktop */
.intro__buttons .btn {
  width: 100%;
  max-width: 320px; /* evita que se encojan demasiado */
}

/* Responsive */
@media (max-width: 768px) {
  .intro__title {
    font-size: 28px;
    margin-top: 70px;
  }

  .intro__buttons {
    flex-direction: column;
    gap: 14px; /* gap en móvil */
  }

  .intro__buttons .btn {
    width: 100%;
    max-width: 320px;
    flex: 0 0 auto;
    min-width: 0;
  }
}
