/* ===== HERO ===== */
.hero-industrial {
  width: 100%;
  height: 55vh;
  overflow: hidden;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== CARDS ===== */
.industrial-card {
  border: 1px solid #eee;
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s ease;
}

.industrial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.industrial-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  padding: 2rem;
  background: #fff;
}

.industrial-card .card-body {
  padding: 1.5rem;
}

.industrial-card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.industrial-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industrial-card li {
  margin-bottom: 0.7rem;
  color: #555;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ===== GALERÍA ===== */
.gallery-section {
  background: #f8f8f8;
}

.gallery-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 16px;
  transition: 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.02);
}

/* ===== CTA ===== */
.cta-industrial {
  background: #f7f7f7;
  padding: 4rem 2rem;
  border-radius: 24px;
}

/* ===== BOTONES ===== */
.botonx {
  display: inline-block;
  background: #111;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
  border: 1px solid #111;
}

.botonx:hover {
  background: #fff;
  color: #111;
}

.volver-btn {
  display: inline-block;
  border: 1px solid #ccc;
  color: #444;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s ease;
}

.volver-btn:hover {
  background: #eee;
  color: #111;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .hero-industrial {
    height: 38vh;
  }

  .industrial-card img {
    height: 180px;
    padding: 1.5rem;
  }

  .gallery-img {
    height: 180px;
  }

}