@charset "UTF-8";


#imagedesc{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-left: 20px;
    margin-right: 20px;
    columns: 2;
}

img{
    width: 100%;
    max-width: auto;
    height: auto;
    border-radius: 15px 15px 15px 15px;
}

#img1{
    margin: auto;
    width: 150%;
    height: 100%;
    border-radius: 15px 15px 15px 15px;
}

#img1:hover{
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

#img1:not(:hover){
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

#desc{
    margin:auto;
    width: 150%;
    text-align: center;
    justify-content: center;
    font-size: 30px;
}

#caracteristicas{
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-left: 20px;
    margin-right: 20px;
    columns: 2;
}

#PublicoAlvo{
    width: 100%;
    font-size: 30px;
}

#img2{
    margin: auto;
    width: 50%;
    height: 50%;
    border-radius: 15px 15px 15px 15px;
    margin-bottom: 100px;
}

#Razoes{
    font-size: larger;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #0e0e0e;
    padding: 10px;
    text-align: center;
    color: whitesmoke;
}