body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#hero h1{
    text-align: center;
    margin-bottom: 1rem;
}

#hero {
    margin-bottom: 1rem;
}

.menu-links {
    align-items: center;
    border-radius: 20px;
    gap: 1rem;
    margin-bottom: 2rem;
}

.div-topo-menu{
    background-color: #1d273f;
    margin:0;
    width: 100%;
    border-radius: 20px 20px 0 0 ;
    padding: 1rem;    
    text-align: center;
}
.div-topo-menu h2{
    color: white;
}

.div-links-menu{
    display: flex;
    padding: 1rem;
    box-shadow: #1d273f 0px 0px 10px;
    align-items: stretch;
    border-radius: 0 0 20px 20px;
    gap: 0.8rem;
}

.card-ferramenta{
    display: flex;
    flex-direction: column;
    background-color: #f4f5fa;
    border-radius: 15px;
    padding: 1rem 2rem;
    flex: 1;
    gap: 0.8rem;
    box-shadow: #1d273f 0px 0px 5px;
}

.card-ferramenta > *{
    color: #1d273f;
}

.card-ferramenta div {
    background-color: #4e53fb;
    padding: 1rem 1rem;
    border-radius: 15px;
    margin-top: auto;
    width: 100%;
    color: white;
    font-weight: bolder;

}

.card-ferramenta a{
    text-decoration: none;
}

#porqueUsar{
    display: flex;
    gap: 0.5rem;
    background-color: #f4f5fa;
    padding: 2rem;
    border-radius: 15px;
    align-items: stretch;
    margin-top: 1rem;
}

#porqueUsar div {
    flex: 1;
    background-color: white;
    border-radius: 15px;
    padding: 1rem 0.5rem;
    display: flex;
    align-items: center;
}

@media (max-width:600px) {
    .div-links-menu{
        flex-direction: column;
    }
    #porqueUsar{
        flex-direction: column;
    }
}