/* =====================================================
   2. HERO SLIDER PRINCIPAL - VARIANTE 1
   Objetivo: hero fijo sin franja inferior negra en Swiper.
===================================================== */

.home-hero {
  position: relative;
  height: 620px;
  min-height: 620px;
  background: #020617;
  overflow: hidden;
}

.home-hero-swiper,
.home-hero-swiper .swiper-wrapper,
.home-hero-swiper .swiper-slide {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.home-hero .swiper {
  display: block;
}

.home-hero .swiper-wrapper {
  align-items: stretch;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Capa visual oscura del hero */
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(2, 12, 32, 0.96) 0%,
      rgba(3, 18, 46, 0.88) 36%,
      rgba(3, 18, 46, 0.48) 66%,
      rgba(0, 0, 0, 0.18) 100%
    );
}

/* Detalle geométrico tipo enterprise */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      120deg,
      transparent 0%,
      transparent 40%,
      rgba(0, 103, 209, 0.12) 40.2%,
      rgba(0, 103, 209, 0.02) 62%,
      transparent 62.2%
    );
  pointer-events: none;
}

/* Slide 1 */
.hero-slide-1 {
  background-image:
    url("https://www.hp.com/content/dam/sites/worldwide/printers/large-formats/designjet-t850-t950-plotters/jpg/HP_DesignJet_T850-T950_PDP-Technical_banner.jpg");
}

/* Slide 2 */
.hero-slide-2 {
  background-image:
    url("https://www.hp.com/content/dam/sites/worldwide/printers/designjet-xl-3800-printer/HP_DesignJet_XL_3800_PDP-Highlights_02-DESKTOP.jpg");
}

/* Slide 3 */
.hero-slide-3 {
  background-image:
    url("https://www.hp.com/content/dam/sites/worldwide/printers/designjet-plotters/designjet-t600/HP_DesignJet_T600_PDP-Applications-img02v2.png");
}

/* Slide 4 */
.hero-slide-4 {
  background-image:
    url("https://www.hp.com/content/dam/sites/worldwide/printers/designjet-plotters/designjet-t600/KSP_3_Desktop_Tab1_2x.jpg");
}

.hero-slide-planos {
  background-image:
    url("https://www.hp.com/content/dam/sites/worldwide/printers/large-formats/security/visid/visid_august_2024/HP_large_format_security-Highlights_img04.jpg");
}

.hero-slide-xl3800 {
  background-image:
    url("https://www.hp.com/content/dam/sites/worldwide/printers/large-formats/security/visid/visid_august_2024/HP_Large-format_print_security-Hero-banner_full.jpg");
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding-top: 0;
  padding-bottom: 0;
}

.home-eyebrow,
.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-blue-light);
  font-size: 13px;
  letter-spacing: 0.12em;
  font-weight: 900;
  text-transform: uppercase;
  padding-top: 8vh;
}

.home-eyebrow::before,
.home-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.hero-slide-content h1,
.hero-slide-content h2 {
  font-size: clamp(44px, 4vw, 82px);
  line-height: 0.94;
  letter-spacing: -3px;
  max-width: 780px;
  margin: 22px 0;
}

.hero-slide-content h1 span,
.hero-slide-content h2 span {
  color: var(--home-blue-light);
}

.hero-slide-content p {
  font-size: 20px;
  line-height: 1.6;
  color: #dbeafe;
  max-width: 630px;
}

.home-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 9px;
  font-weight: 900;
  transition: 0.25s ease;
}

.home-btn:hover {
  transform: translateY(-3px);
}

.home-btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--home-blue), #004ab0);
  box-shadow: 0 18px 36px rgba(0, 103, 209, 0.28);
}

.home-btn-primary::after {
  content: "→";
  margin-left: 12px;
}

.home-btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.home-btn-outline::after {
  content: "→";
  margin-left: 12px;
}

/* Beneficios visuales del primer slide */
.hero-benefits {
  display: flex;
  gap: 42px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-benefit-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(0, 103, 209, 0.12);
  border: 1px solid rgba(0, 103, 209, 0.25);
  color: #2ea3ff;
  font-size: 18px;
}

.hero-benefit-text {
  display: flex;
  flex-direction: column;
}

.hero-benefit-text strong {
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-benefit-text small {
  color: #bfd7ff;
  font-size: 14px;
  margin-top: 3px;
}

/* Swiper controls */
.home-hero .swiper-button-next,
.home-hero .swiper-button-prev {
  width: 52px;
  height: 52px;
  color: #ffffff;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  transition: 0.25s ease;
}

.home-hero .swiper-button-next:hover,
.home-hero .swiper-button-prev:hover {
  background: rgba(0, 103, 209, 0.75);
  border-color: rgba(0, 103, 209, 0.75);
}

.home-hero .swiper-button-next::after,
.home-hero .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 900;
}

.home-hero .swiper-pagination {
  bottom: 34px !important;
}

.home-hero .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 0.45;
}

.home-hero .swiper-pagination-bullet-active,
.products-pagination .swiper-pagination-bullet-active {
  background: var(--home-blue-light);
  opacity: 1;
}