.perf-banners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 34px;
}

.perf-banners--grid {
  grid-template-columns: repeat(3, 1fr);
}

.perf-banner {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 18px;
  background: #f5f0ec;
  box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

.perf-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.perf-banner--dama img {
  object-position: center center;
}

.perf-banner--caballero img {
  object-position: center center;
}

.perf-banner--regalo img {
  object-position: center center;
}

@media (max-width: 992px) {
  .perf-banners--grid {
    grid-template-columns: 1fr;
  }

  .perf-banner {
    aspect-ratio: 16 / 8;
    border-radius: 14px;
  }
}

@media (max-width: 600px) {
  .perf-banner {
    aspect-ratio: 4 / 3;
  }

  .perf-banner--dama img,
  .perf-banner--caballero img,
  .perf-banner--regalo img {
    object-position: center center;
  }
}

/* ===== HERO PERFUMERÍA ESTILO LUXURY ===== */

.perf-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  text-align: center;
  background:
    linear-gradient(
      rgba(255,255,255,0.78),
      rgba(255,255,255,0.88)
    ),
    url("../img/perfumeria/banner-fondo.webp");
  background-size: cover;
  background-position: center;
  padding: 90px 20px;
  overflow: hidden;
}

.perf-hero::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(180, 135, 75, 0.35);
  pointer-events: none;
}

.perf-hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.perf-eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #9b6a2f;
  font-weight: 600;
}

.perf-hero h1 {
  max-width: 920px;
  margin: 0 auto 22px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -2px;
  color: #111;
  font-family: "Montserrat", sans-serif;
}

.perf-hero p {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.perf-hero__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.perf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all .25s ease;
}

.perf-btn--dark {
  background: #111;
  color: #fff;
  border: 1px solid #111;
}

.perf-btn--dark:hover {
  background: #8a1538;
  border-color: #8a1538;
}

.perf-btn--light {
  background: rgba(255,255,255,0.75);
  color: #111;
  border: 1px solid rgba(0,0,0,0.25);
}

.perf-btn--light:hover {
  background: #fff;
  border-color: #111;
}

/* ===== INTRO ELEGANTE ===== */

.perf-intro-luxury {
  padding: 80px 20px 60px;
  text-align: center;
  background: #fff;
}

.perf-small-title {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9b6a2f;
  font-weight: 600;
}

.perf-intro-luxury h2 {
  margin: 0 auto 24px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  color: #111;
  font-weight: 600;
}

.perf-intro-luxury p {
  max-width: 880px;
  margin: 0 auto 16px;
  font-size: 17px;
  line-height: 1.8;
  color: #444;
}

/* ===== AJUSTE TÍTULO CATEGORÍAS ===== */

.perf-section__head {
  text-align: center;
  margin-bottom: 34px;
}

.perf-section__head h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  color: #111;
  margin-bottom: 12px;
}

.perf-section__head p {
  font-size: 16px;
  color: #666;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .perf-hero {
    min-height: 420px;
    padding: 70px 18px;
  }

  .perf-hero::after {
    inset: 14px;
  }

  .perf-hero p {
    font-size: 15px;
  }

  .perf-btn {
    width: 100%;
    max-width: 300px;
  }

  .perf-intro-luxury {
    padding: 58px 18px 42px;
  }
}