.soluciones-content {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 2rem 3rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.soluciones-header {
    display: flex;
    width: 100%;
    max-height: 200px;
    min-height: 80px;
    align-items: center;
    justify-content: center;
    color: white;
    background: black;
}

.soluciones-header h2{
    color: white;
    text-align: center;
}

.soluciones-info{
    display: flex;
    width: 100%;
    flex-direction: column;
    background: white;
}

.soluciones-destacadas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.solucion-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.img-container {
  width: 100%;
  overflow: hidden;
}

.img-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.solucion-item:hover .img-container img {
  transform: scale(1.05);
}


.solucion-item h4 {
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}
