.grid-area-tecnologica {
    display: grid;
    grid-template-columns:  repeat(auto-fill, minmax(min(100% / 1, max(200px, 95% / 3)), 1fr));
    gap: 2rem;
    margin-bottom: 80px;
}

.grid-item-area-tech {
    background-color: rgba(34, 42, 54, 0.5); 
    border-radius: 15px; 
    padding: 30px; 
    min-height: 280px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.grid-item-area-tech:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(74, 141, 194, 0.3);
    background-color: rgba(34, 42, 54, 0.7);
}

.grid-item-area-tech ul {
    margin-top: 2rem;
}
.grid-item-area-tech ul li {
    list-style: none;
    font-size: 1.5rem;
}


@media screen and (max-width: 767px) {
    .grid-area-tecnologica {
        display: grid;
        grid-template-columns:  repeat(2, minmax(40%, 1fr));
    }
    .grid-item-area-tech>h5 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 490px) {
    .grid-area-tecnologica {
        display: grid;
        grid-template-columns: 1fr;
    }

}
