/* ============================================================
   HERO DESTACADA — ANIMA Audiovisual
   Usa las clases que genera el shortcode: aa-hero-featured...
   ============================================================ */

.aa-hero-featured {
  position: relative;
  width: 100%;
  min-height: 70vh;
  padding: 120px 20px 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  overflow: hidden;
}

/* Fondo de la imagen (imagen destacada) */
.aa-hero-featured__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.03);
  z-index: 1;
}

/* Degradado oscuro lateral */
.aa-hero-featured__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.80) 0%,
      rgba(0, 0, 0, 0.55) 45%,
      rgba(0, 0, 0, 0.20) 100%
  );
  z-index: 2;
}

/* Contenedor interior */
.aa-hero-featured__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* Bloque de texto */
.aa-hero-featured__content {
  max-width: 640px;
}

/* Eyebrow (+10 años en visualización 3D) */
.aa-hero-featured__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.55);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f6f7f9;
  margin-bottom: 18px;
}

/* Título principal (Contacto) */
.aa-hero-featured__title {
  font-size: clamp(2.6rem, 4.2vw, 3.8rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0 0 12px;
  color: #ffffff;
}

/* Subtítulo */
.aa-hero-featured__subtitle {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 540px;
  margin: 0 0 24px;
  color: #e8e8e8;
}

/* Botones */
.aa-hero-featured__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.aa-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.18s ease;
}

.aa-hero-btn--primary {
  background: #c87914;
  border-color: #c87914;
  color: #ffffff;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
}

.aa-hero-btn--primary:hover {
  background: #a9630f;
  border-color: #a9630f;
  transform: translateY(-2px);
}

.aa-hero-btn--ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
}

.aa-hero-btn--ghost:hover {
  background: rgba(0, 0, 0, 0.35);
  border-color: #ffffff;
  transform: translateY(-2px);
}

/* Bullets */
.aa-hero-featured__bullets {
  list-style: none;
  padding: 0;
  margin: 6px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.aa-hero-featured__bullets li {
  position: relative;
  padding-left: 14px;
}

.aa-hero-featured__bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #f5b023;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 900px) {
  .aa-hero-featured {
    min-height: 60vh;
    padding: 100px 18px 80px;
  }

  .aa-hero-featured__inner {
    justify-content: flex-start;
  }

  .aa-hero-featured__title {
    font-size: clamp(2.2rem, 6vw, 2.8rem);
  }
}

@media (max-width: 600px) {
  .aa-hero-featured {
    padding: 90px 16px 70px;
  }

  .aa-hero-featured__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .aa-hero-btn {
    width: 100%;
  }

  .aa-hero-featured__bullets {
    flex-direction: column;
    gap: 8px;
  }
}
