:root {
    --verde-1: #0a5b39;
    --verde-2: #c4c4ab;
    --verde-3: #d9dbca;
    --branco: #ffffff;
}
body {
    background: linear-gradient(0deg, var(--verde-2), transparent);
    min-height: 100vh;
    position: relative;
    padding-bottom: 50px;
}
p {
    margin: 0;
}
.h100 {
    height: 100%;
}
.centralize {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.centralize div {
    margin-top: -50px;
}
.languages {
    width: 100%;
    position: absolute;
    top: 10px;
}
.languages ul {
    width: fit-content;
    display: block;
    padding: 0;
    margin: 0 auto;
}
.languages ul li {
    list-style-type: none;
    display: inline-block;
    margin: 2px;
}
.languages ul li img {
    max-width: 30px;
}
.topo {
    height: 25vw;
    background-image: url(../img/fundo.png);
    background-position: center;
    background-size: cover;
    color: var(--branco);
}
.botao {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    color: var(--verde-1);
    background-color: var(--branco);
    text-decoration: none;
    padding: 10px 50px;
    border-radius: 30px;
    font-weight: 600;
}
.planta img {
    display: block;
    width: 30vw;
    margin: auto;
}
.inferior {
    width: 100%;
    position: absolute;
    bottom: 20px;
}
.inferior .item {
    padding: 12px;
    background-color: var(--verde-3);
    color: var(--verde-1);
    font-weight: 600;
}
.inferior .item a{
    text-decoration: none;
    color: var(--verde-1);
    font-weight: 600;
}

@media only screen and (max-width: 767px) {  
    body {
        padding-bottom: 250px;
    }
    .topo {
        height: 70vw;
    }
    .planta img {
        width: 60vw;
    }
    .inferior .item {
        margin: 10px 0px;
    }
}