

.top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100vw;
    ;
    align-items: center;
    height: 350px;
    margin-bottom: -24px;
    background: url(../imagens/backgroundtop.jpg) no-repeat center;
    background-size: cover;
    overflow: hidden;

}




.top-text {
    display: flex;
    width: 299px;
    justify-content: center;
    opacity: 0;
    transform:translateX(-30%);
    animation: slideLeft 0.9s ease-out forwards;
}
.top-text img{
    width: 299px;
    margin-top: 20%;
}


.top p {
    margin-bottom: 36px;
    margin-top: 24px;
    padding: 10px;
    color: white;
    font-size: var(--font-size-title);

}

.aqui {
    all: unset;

    border-radius: 18px;
    padding: 10px;
    background-color: #FFC23D;
    text-transform: uppercase;
    font-weight: 800;
    margin-left: 10px;
    color: white;
    text-decoration: none;
    transition: 0.2s;
}
.aqui:hover{
        cursor:pointer;
    background-color: #fcb826;
}

.bottom-text{
    display: flex;
    justify-content: center;
    opacity: 0;
    transform: translateX(30%);
    animation: slideRight 0.9s ease-out forwards;
    margin-bottom: 20%;
}
.bottom-text p{
    color: var(--cor-texthover);
    font-size: var(--font-size-titlepc);
    font-family:Arial, Helvetica, sans-serif;
}

@keyframes slideRight {
    to{
        opacity: 1;
        transform: translateX(0)
    }
}
@keyframes slideLeft{
    to{
        opacity: 1;
        transform: translateX(0);
    }
}

.bold-font{
        font-weight: 900;
    }





