.desarmadero-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: inherit;
}

.desarmadero-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.desarmadero-header h2 {
  font-size: 38px;
  font-weight: 800;
  margin: 0;
}

.btn-repuestos {
  background: linear-gradient(135deg, #ABDB36, #ABDB36);
  color: #FFF;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-repuestos:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.desarmadero-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.desarmadero-grid .item p {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
}

.img-bg {
  width: 100%;
  height: 220px;
  background: #dbe9ff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-bg img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .desarmadero-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .desarmadero-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .desarmadero-grid {
    grid-template-columns: 1fr;
  }
}
