.cabecalho {
    text-align: center;
    align-items: center;
    background-color: orange;
    display: flex;
    justify-content: space-between;
    padding-left: 2rem;
    padding-right: 2rem;
}

.menu_item {
    list-style: none;
}

.menu_link {
    width:30%;
    background-color: rgb(222, 222, 222);
    border:0px;
    padding:5px;
    margin: 2px;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    text-decoration: none;
}

.menu_link:hover {
    background: rgb(115,188,255);
    box-shadow: inset 2px 2px 2px rgba(0,0,0,0.2);
    text-shadow: none;
}

.destino_botao {
    background: #8d0606;
    border: none;
    border-radius: 5px;
    color: #fdfdfd;
    padding: 1rem;
    transition: all .1s ease-in-out;
}

.destino_botao:hover {
    background: #620404;
    cursor: pointer;
}

.destino_conteudo {
    padding: 1rem;
}

.destino_descricao {
    font-size: 1.1875rem;
    line-height: 1.5;
    text-align: center;
}

.destino_imagem {
    height: 250px;
}

.destino_titulo {
    font-size: 1.4375rem;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.destino {
    background: #fdfdfd;
    display: flex;
    flex-direction: column;
    margin-bottom: 5rem;
}

.destino:hover {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
}

@media screen and (min-width: 0) {
    .destino {
        margin-right: 1rem;
        width: 100%;
    }
}
@media screen and (min-width: 768px) {
    .destino {
        margin-right: 2.5rem;
        width: calc(33.33% - 2.5rem);
    }
}
@media screen and (min-width: 992px) {
    .destino {
        margin-right: 5rem;
        width: calc(25% - 5rem);
    }
}

.destinos {
    background: #e5e5e5;
    display: flex;
    flex-wrap: wrap;
}

@media screen and (min-width: 0) {
    .destinos {
        padding: 5rem 0 0 1rem;
    }
}
@media screen and (min-width: 768px) {
    .destinos {
        padding: 5rem 0 0 2.5rem;
    }
}
@media screen and (min-width: 992px) {
    .destinos {
        padding: 5rem 0 0 5rem;
    }
}

.titulo {
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.pessoa__imagem {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
    height: 300px;
    margin: 0 auto;
    width: 300px;
}

.pessoa__nome {
    color: orange;
    font-size: 2rem;
    margin: 1rem 0;
}

.pessoa {
    display: flex;
    flex-direction: column;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

@media screen and (min-width: 0) {
    .pessoa {
        margin-bottom: 2rem;
    }
}
@media screen and (min-width: 768px) {
    .pessoa {
        margin-bottom: 0;
    }
}

.pessoas {
    display: flex;
    justify-content: space-around;
    padding-top: 3rem;
}

@media screen and (min-width: 0) {
    .pessoas {
        flex-direction: column;
    }
}

@media screen and (min-width: 768px) {
    .pessoas {
        flex-direction: row;
    }
}

.quem-somos__descricao {
    color: #595959;
    font-size: 1.75rem;
    font-weight: 100;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.quem-somos__titulo {
    color: red;
    font-size: 3.1875rem;
    margin-bottom: 1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.quem-somos {
    padding: 5rem;
    text-align: center;
}

.rodape {
    background: black;
    color: orange;
    text-align: center;
    padding: 1.5625rem 5rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

@media screen and (min-width: 0) {
    .rodape {
        font-size: 1.125rem;
    }
}
@media screen and (min-width: 768px) {
    .rodape {
        font-size: 2rem;
    }
}

.sobre_descricao {
    color: #595959;
    font-weight: 100;
    text-align: center;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

@media screen and (min-width: 0) {
    .sobre_descricao {
        font-size: 1.3rem;
    }
}
@media screen and (min-width: 768px) {
    .sobre_descricao {
        font-size: 1.75rem;
    }
}
