@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
    font-family: 'poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.cabecalho {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background-color: #cfe2f3;
    border-bottom: #DCDCDC solid 1px;
    box-shadow: 0 5px 10px #DCDCDC;
}

.cabecalho-texto {
    display: flex;
    gap: 10px;
}

.logo {
    width: 80px;
}

#languageSwitcher {
    display: flex;
    align-items: center;
}

.flag-br, .flag-us {
    width: 30px;
    cursor: pointer;
}

.principal {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.sobre {
    margin: 0 auto;
    width: 700px;
}

#contact {
    display: flex;
    width: 1100px;
    gap: 50px;
    margin: 20px auto;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #cfe2f3;
    box-shadow: 0 5px 10px #DCDCDC;
}

.contact-member {
    margin: 10px 0;
}

footer {
    text-align: center;
    padding: 20px;
}

.botao-detalhe {
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.5s ease, box-shadow 0.5s ease;
}

.botao-detalhe:hover {
    background-color: #d3d3d3;
    box-shadow: 0 10px 20px #DCDCDC;
}

.contact-member a {
    display: inline-block;
    margin: 5px;
}
