/* ===================== INDUSTRIAS ===================== */

#industrias {
  padding: 0;
  margin: 0;
}

/* BANNER SUPERIOR */
.industrias-banner {
  background: url("../fondo-hero_1.jpg") 
              center center / cover no-repeat;
  padding: 80px 0;
  position: relative;
}

.industrias-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(19, 42, 19, 0.55); /* overlay verde oscuro */
}

.banner-text {
  position: relative;
  z-index: 2;
  text-align: center;
}

.banner-text .white {
  color: #fff;
}

/* GRID DE TARJETAS */
.industrias-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  padding: 70px 0;
}

/* TARJETAS */
.ind-card {
  background: #fff;
  border-radius: 18px;
  padding: 32px 22px;
  text-align: center;
  border: 1px solid rgba(144,169,85,0.35);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform .3s, box-shadow .3s;
}

.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* ICONOS */
.ind-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: rgba(144,169,85,0.2); /* suave */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TEXTOS */
.ind-card h3 {
  color: var(--green-700);
  margin: 10px 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ind-card p {
  color: #444;
  font-size: .95rem;
  line-height: 1.55;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .industrias-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .industrias-grid {
    grid-template-columns: 1fr;
  }
}
