/* ============================================================
   PRODUCTOS — page styles
   ============================================================ */

/* ── Hero ── */

.hero-home {
  background: var(--light-bg);
  padding: 120px 0 70px;
  background-image: url("../assets/banner-hero-productos.webp");
  background-size: cover;      /* o contain si quieres que no se recorte */
  background-position: center;
  background-repeat: no-repeat;
  height: 620px;
}

.hero-home__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-home__text h1 {
  margin-bottom: 22px;
  color: #FFF;
}

.hero-home__text .body-text {
  margin-bottom: 32px;
  max-width: 480px;
  color: #FFF;
}

.hero-home__btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Botón con ícono */
.btn-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1; /* evita que el texto empuje el icono */
}

.btn-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  flex-shrink: 0; /* evita que se deforme */
  margin-top: 4px;
}


.btn-icon svg {
  transition: transform .2s ease;
}

.btn-icon:hover svg {
  transform: translateX(3px);
}



.hero-home__img-mobile {
  display: none; /* oculto en desktop */
}

@media (max-width: 700px) {
  .hero-home {
    background-image: none; /* quitamos el fondo */
    padding: 0; /* la imagen ya ocupa espacio */
    height: auto;
  }

  .hero-home__img-mobile {
    display: block;
    width: 100%;
    height: 420px; /* puedes usar 400–450px */
    overflow: hidden;
  }

  .hero-home__img-mobile img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* evita que se deforme */
    display: block;
  }

  .hero-home__inner {
    grid-template-columns: 1fr; /* una sola columna */
    padding: 32px 24px 48px;
  }
}
/* .pr-hero {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.pr-hero__bg {
  position: absolute;
  inset: 0;
}

.pr-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.pr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,32,63,0.88) 0%, rgba(7,32,63,0.55) 100%);
  display: flex;
  align-items: center;
}

.pr-hero__text h1 {
  font-size: clamp(1.8rem, 3.2vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 18px;
}

.pr-hero__text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.68;
  max-width: 520px;
} */

/* ── Product Section ── */
.pr-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: flex-start;
}

.pr-section--reverse {
  direction: rtl;
}
.pr-section--reverse > * {
  direction: ltr;
}

.pr-info h2 {
  margin-bottom: 18px;
}

.pr-sub {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 20px;
}

.pr-list {
  list-style: disc;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 60px;
}

.pr-list li {
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.55;
}

.pr-provider-logo {
  margin-top: 10px;
}

.pr-provider-logo img {
  width: 260px;
}

.pr-provider-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pr-provider-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pr-provider-block img {
  width: 260px;
}

/* ── Product Link Items ── */
.pr-group {
  margin-bottom: 35px;
}

.pr-group-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--blue-navy);
  text-transform: uppercase;
  margin: 20px 0 8px;
}

.pr-link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 8px;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
  background: var(--white);
}

.pr-link-item:hover {
  border-color: var(--teal);
  background: #f0f9fc;
}

.pr-link-item span {
  font-size: 1rem;
  color: var(--text);
  flex: 1;
  padding-right: 12px;
  line-height: 1.4;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .pr-section {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pr-section--reverse {
    direction: ltr;
  }
  .pr-hero { height: 280px; }
}

@media (max-width: 700px) {
  .hero-home__text h1 {
    color: var(--navy);
  }
  .hero-home__text h1 span.text-yellow {
    color: var(--blue-mid);
  }
  .hero-home__text p.body-text {
    color: var(--navy);
  }
}
