body{
    width: 100%;
    height: fit-content;
}
.sobre-empresa{
    width: 100%;
    display: flex;
    justify-content: center;
}

.empresa-content{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}
.empresa-content h1{
    font-size: max(40px);
    margin: 3rem 0 2rem 0;
    color: var(--azul);
    border-bottom:3px solid var(--amarelo) ;
    width: fit-content;
}
.empresa-content p{
    text-align: justify;
    margin-bottom: 2rem;
    font-size: 16px;
}


/* *Sessão valores */
.valores {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: fit-content;
    /* background-color: red; */
}

.val-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
    background-image:linear-gradient(0deg, var(--azul)  5%, rgba(218, 225, 14, 0.136) 60%), url(../../images/diversos/fundo.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding:  3rem 1rem;
}

.val-container .val-item{
    width: 300px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--border);
    background-color: var(--branco);
    transition: .2s cubic-bezier(0, 0.24, 0.45, 0.43);
    z-index: 0;
    position: relative;
}
.val-container .val-item:hover{
    box-shadow: 0px 14px 13px 0px #00063a9a;
    transform: translateY(-10px);
}

.val-container .val-item p{
    font-size:14px;
    padding: 0 10px;
    text-align: justify;
}
.val-container .val-item h3{
    padding: 0 10px;
    margin-bottom: 1rem;
    color: var(--azul);
    font-weight: 600;
    text-align: justify;
}

.val-container .val-item img{
    width: 10em;
    height: 10em;
    align-self: center;
    object-fit: contain;
    margin-top: 1rem;
    margin-bottom: 5px;
}
