/* Página inicial */
.hero {
  background:
    linear-gradient(rgba(20,17,13,0.5), rgba(20,17,13,0.5)),
    url("../../img/barbershop-hero.jpg") center/cover no-repeat;
  color: #f1ece3;
  padding: 5rem 0;
  text-align: center;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #f1ece3;
}
.hero .accent { color: var(--color-primary); }
.hero p {
  font-size: 1.15rem;
  max-width: 55ch;
  margin: 0 auto 2rem;
  color: #d9d2c4;
}
.hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}
@media (min-width: 36em) {
  .hero h1 { font-size: 3.2rem; }
  .hero-ctas { flex-direction: row; justify-content: center; }
}
@media (min-width: 48em) {
  .hero { padding: 7rem 0; }
  .hero h1 { font-size: 4rem; }
}

/* Cards de destaque */
.features {
  display: grid;
  gap: 1.5rem;
}
.feature {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  border-left: 3px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
}
.feature h3 {
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--color-dark);
}
.feature p { margin: 0; color: var(--color-text-muted); }
@media (min-width: 48em) {
  .features { grid-template-columns: repeat(3, 1fr); }
}

/* Bloco CTA final */
.cta-banner {
  background: var(--color-dark);
  color: #f1ece3;
  padding: 3rem 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}
.cta-banner h2::after { display: none; }
.cta-banner p { margin-bottom: 1.75rem; color: #d9d2c4; }
