.soluciones-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #333;
}

.soluciones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.solucion-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.solucion-item a {
    text-decoration: none !important; /* Esto elimina el subrayado */
    color: inherit; /* Mantiene el color del texto original */
    display: block;
    height: 100%;
}

.solucion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.solucion-img-container {
    height: 180px;
    overflow: hidden;
}

.solucion-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solucion-item:hover .solucion-img {
    transform: scale(1.03);
}

.solucion-icon-container {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.solucion-icon-container i {
    font-size: 4rem;
    color: #13733d;
    transition: all 0.3s ease;
}

.solucion-item:hover .solucion-icon-container i {
    transform: scale(1.1);
    color: #0d5a2c;
}

.solucion-content {
    padding: 1.5rem;
    text-align: center;
}

.solucion-content h2 {
    color: linear-gradient(to right, #0D1421, #2BB67E); /* Degradado de verde a negro */
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    text-decoration: none !important; /* Asegura que los títulos no tengan subrayado */
}

.solucion-content p {
    color: #666;
    margin-bottom: 1rem;
    text-decoration: none !important; /* Asegura que los párrafos no tengan subrayado */
}

.solucion-link {
    display: inline-block;
    color: #13733d;
    font-weight: 500;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none !important; /* Elimina subrayado del "Ver más" */
}

.solucion-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.solucion-item:hover .solucion-link {
    color: #0d5a2c;
}

.solucion-item:hover .solucion-link i {
    transform: translateX(3px);
}
