/* Banner de Registra tu producto  */
.register-equipment-banner {
  width: 100%;
  min-height: 320px;
  margin: 60px 0;
  overflow: hidden;
  position: relative;
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 25, 55, 0.98) 0%,
      rgba(7, 25, 55, 0.88) 35%,
      rgba(7, 25, 55, 0.45) 62%,
      rgba(7, 25, 55, 0.05) 100%
    ),
    url("https://www.hp.com/content/dam/sites/worldwide/printers/designjet-plotters/designjet-t600/HP_DesignJet_T600_PDP-Applications-img02v2.png");
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
}

.register-equipment-banner-2 {
  width: 100%;
  min-height: 320px;
  margin: 60px 0;
  overflow: hidden;
  position: relative;
  background-image:
    linear-gradient(
      90deg,
      rgba(7, 25, 55, 0.98) 0%,
      rgba(7, 25, 55, 0.88) 35%,
      rgba(7, 25, 55, 0.45) 62%,
      rgba(7, 25, 55, 0.05) 100%
    ),
    url("https://www.hp.com/content/dam/sites/worldwide/printers/large-format/designjet-technical-plotters/HP_DesignJet_Technical_plotters-Solutions_services-entry01.jpg");
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
}

.register-banner-content {
  max-width: 520px;
  padding: 50px 60px;
  color: #fff;
}

.register-banner-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.register-banner-content h2 {
  margin: 0 0 24px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.05;
  font-weight: 800;
}

.register-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--home-blue), #004ab0);
  color: #e2e2e2;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.register-banner-btn:hover {
  transform: translateY(-2px);
  background: #0056ac;
}

/* Responsive */
@media (max-width: 768px) {
  .register-equipment-banner {
    min-height: 420px;
    background-image:
      linear-gradient(
        180deg,
        rgba(7, 25, 55, 0.96) 0%,
        rgba(7, 25, 55, 0.82) 42%,
        rgba(7, 25, 55, 0.38) 72%,
        rgba(7, 25, 55, 0.08) 100%
      ),
      url("https://www.hp.com/content/dam/sites/worldwide/printers/designjet-plotters/designjet-t600/HP_DesignJet_T600_PDP-Applications-img02v2.png");
    background-position: center bottom;
    align-items: flex-start;
    text-align: center;
  }

  .register-equipment-banner-2 {
    min-height: 420px;
    background-image:
      linear-gradient(
        180deg,
        rgba(7, 25, 55, 0.96) 0%,
        rgba(7, 25, 55, 0.82) 42%,
        rgba(7, 25, 55, 0.38) 72%,
        rgba(7, 25, 55, 0.08) 100%
      ),
      url("https://www.hp.com/content/dam/sites/worldwide/printers/large-format/designjet-technical-plotters/HP_DesignJet_Technical_plotters-Solutions_services-entry01.jpg");
    background-position: center bottom;
    align-items: flex-start;
    text-align: center;
  }

  .register-banner-content {
    max-width: 100%;
    padding: 38px 24px;
  }

  .register-banner-content h2 {
    font-size: 30px;
  }

  .register-banner-btn {
    margin: 0 auto;
    background: linear-gradient(135deg, var(--home-blue), #004ab0);
    color: #e2e2e2;
  }
}
