.inovacoes-title {
    font-size: 2rem;
    color: #fafafa;
    margin-top: 2rem;
}

.inovacoes-grid {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    background: linear-gradient(rgb(40, 39, 39),rgb(126, 124, 124));
    padding: 3rem 1.5rem ;
}

.inovacoes {
    max-width: 80rem;
    width: 100%;
    margin-top: 2rem;
    padding: 3rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.inovacoes ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
}
@media screen and (max-width: 850px){
    .inovacoes ul {
        grid-template-columns: repeat(2,1fr);
    }
    .inovacoes-title {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 650px){
    .inovacoes ul {
        grid-template-columns: repeat(1,1fr);
    }
    .inovacoes-title {
        font-size: 1.5rem;
    }
}

.inovacoes li {
    width: calc(25rem - 20px);
    text-align: left;
    position: relative;
    min-height: 16.5rem;
}
@media screen and (max-width: 1200px){
    .inovacoes li {
        width: calc(18rem - 20px);
    }
}
@media screen and (min-width: 850px  ) and (max-width: 970px){
    .inovacoes li {
        width: calc(15rem - 20px);
    }
}
@media screen and (max-width: 400px){
    .inovacoes li {
        width: calc(15rem - 20px);
    }
}



.image-container {
    width: 70%;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.8s ease;
}
.inovacoes img {
    width: 100%;
    transition: transform 0.8s ease;
}

.inovacoes li:hover .image-container {
    transform: scale(0.5);
}

.inovacao {
    position: relative;
}

.inovacao-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.inovacao p,
.inovacao h2 {
    position: relative;
    margin-bottom: 1rem;
    width: 100%;
}

.inovacao h2.inovacao-title {
    color: #ffed00;
    font-size: 1.3rem;
    line-height: 1.3rem;

}

.inovacao p {
    color: #fafafa;
    font-size: 1em;
    line-height: 1.3rem;
    width: 100%;
    text-align: justify;
}

.text-container {
    display: none;
    width: 80%;
}
@media screen and (max-width: 1200px){
    .text-container {
        width: 100%;
    }
}