/* ============================================
   BLOCK 8 — Proveedores (chips-grid 8 + exclusive bonus)
   ============================================ */

.home_block_8 {
  background: var(--bg-dark);
  position: relative;
}

.home_block_8_inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.home_block_8_head {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  max-width: 78ch;
}

.home_block_8_title {
  color: var(--text);
}

.home_block_8_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
}

.home_block_8_chip {
  background: var(--bg-elevated);
  border: 1px solid var(--accent-line-mid);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.home_block_8_chip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  opacity: 0.55;
  transition: opacity 0.3s ease;
}

.home_block_8_chip:hover {
  border-color: var(--accent);
  background: var(--bg-surface);
}

.home_block_8_chip:hover::before {
  opacity: 1;
}

.home_block_8_name {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.1;
  letter-spacing: -0.005em;
}

/* ===== Exclusive bonus card — asymmetric 2-col ===== */
.home_block_8_exclusive {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--bg-surface);
  border: 1px solid var(--accent);
  margin-top: 1rem;
  overflow: hidden;
}

.home_block_8_exclusive_text {
  padding: 3.4rem 3.4rem 3.4rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  justify-content: center;
}

.home_block_8_exclusive_image {
  position: relative;
  overflow: hidden;
}

.home_block_8_exclusive_image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.45) saturate(0.9) brightness(0.85) contrast(1.05);
}

.home_block_8_exclusive_image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg-surface) 0%, transparent 40%);
  pointer-events: none;
}

.home_block_8_cta {
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  .home_block_8_inner {
    gap: 5rem;
  }

  .home_block_8_grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .home_block_8_chip {
    padding: 3rem 2.4rem;
  }

  .home_block_8_name {
    font-size: 3.2rem;
  }

  .home_block_8_exclusive {
    grid-template-columns: 1fr;
  }

  .home_block_8_exclusive_text {
    padding: 4rem 3rem;
    order: 2;
  }

  .home_block_8_exclusive_image {
    order: 1;
    height: 38rem;
  }

  .home_block_8_exclusive_image::after {
    background: linear-gradient(180deg, transparent 0%, var(--bg-surface) 100%);
  }

  .home_block_8_cta {
    justify-content: center;
  }
}
