/* Layout principal del hero — Home */
.hero-section {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* Párrafos del hero */
.hero-title p {
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--color-parrafo);
  max-width: 750px;
  margin: 14px auto;
  line-height: 1.6;
}

/* Cards de beneficios — sección ¿Por qué elegirnos? */
.benefit-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.benefit-card {
  background: var(--bg-card);
  border-radius: 15px;
  width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 3px solid var(--border-form);
}

.benefit-card p {
  color: var(--color-texto-card);
}

.why-choose-us h2 {
  text-align: center;
  padding: 10px;
  margin: 1rem;
}

@media (min-width: 481px) and (max-width: 1024px) {
  .why-choose-us {
    padding: 0 2rem;
  }

  .benefit-cards {
    gap: 20px;
  }
}

@media (min-width: 320px) and (max-width: 480px) {
  .benefit-cards {
    flex-direction: column;
    gap: 10px;
  }
}