* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --corMarrom: #BD9155;
    --corAzul: #08192b;
    --fontetitulo: "Libre Baskerville", serif;
    --fonteTexto: "Inter", serif;
    --corCinza: #333333;
    --corDescr: #9a9292;
}

body {
    background-color: var(--corAzul);
    overflow-x: hidden;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

header .logo img {
    width: 200px;
    height: 100px;
    margin-left: 20px;
}

header #menu {
    position: absolute;
    top: 35px;
    right: 50px;
    font-size: 35px;
    color: #fff;
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.5s;
    pointer-events: all;
}

header #menu2 {
    position: absolute;
    top: 35px;
    right: 50px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

header .icones {
    position: absolute;
    top: 10px;
    left: 300px;
    display: flex;
    flex-direction: row;
}

header .icones .caixa {
    color: rgba(27, 47, 68, 0.8);
    width: 35px;
    height: 35px;
    border-radius: 100%;
    margin: 0 10px;
    display: flex;
    cursor: pointer;
}

header .icones .caixa i {
    display: flex;
    margin: auto;
    color: #fff;
    font-size: 22px;
}

.atuacao .saibaOff {
    display: none;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}

#saibaOn {
    opacity: 1;
    pointer-events: all;
    color: #fff;
}

header ul {
    position: relative;
    top: 10px;
    left: -1500px;
    width: 100%;
    background-color: var(--corAzul);
    display: flex;
    flex-direction: column;
    z-index: 1;
    padding-bottom: 20px;
    transition: left 0.5s;
}

header ul div {
    display: flex;
    flex-direction: column;
}

#menuOn {
    left: 0;
}

#select {
    color: var(--corMarrom);
}

header ul a {
    padding: 10px 0;
    font-family: var(--fontetitulo);
    color: #fff;
    padding-left: 30px;
}

header ul a:hover {
    color: var(--corMarrom);
}

main .sobreNos {
    width: 100%;
    height: 600px;
    display: flex;
    flex-direction: row;
    position: relative;
    top: 0;
    left: 0;
}

main .sobreNos .fotoSobre {
    width: 100%;
    height: 600px;
}

main .sobreNos .fotoSobre #fundoSobre {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

main .sobreNos #fotoSobre {
    position: absolute;
    bottom: 0;
    left: 140px;
    width: 350px;
}

main .sobreNos .infor {
    position: absolute;
    top: 100px;
    right: 70px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 50%;
}

main .sobreNos .infor p {
    font-family: var(--fonteTexto);
    font-size: 19px;
    width: 100%;
    line-height: 40px;
    color: #555555;
    text-align: justify;
    margin-left: auto;
    margin-right: 60px;
}

main .sobreNos .infor h2 {
    font-family: var(--fonteTexto);
    font-size: 35px;
    color: var(--corMarrom);
    margin: 0 auto;
    margin-bottom: 30px;
}