*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root{
    --cor1: #E3DACF;
    --cor2: #5E736A;
    --cor3: #B57A55;
    --cor4: #D1AA92;
    --cor5: #183047;
    --branco: #fff;
}

body{
    width: 100%;
    height: 100%;
    font-family: "Red Hat Display", sans-serif;
    background-color: var(--branco);
    display: flex;
    flex-direction: column;
    color: #333;
    overflow-x: hidden;
}

header{
    width: 100dvw;
    height: 100dvh;
}
.banner_abertura{
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    background-image: linear-gradient(to top, var(--cor5), rgba(255,255,255, 0.2)), url("./imgs/principal.jpeg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover;
    background-attachment: fixed;
    
    & menu{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 50px;
        background-color: var(--branco);
        position: absolute;
        top: 0;
        width: 100%;
        height: 50px;
        font-size: 20px;
        border-bottom: var(--cor3) 2px solid;
        
        & a{
            text-decoration: none;
            color: var(--cor5);
            font-weight: 600;
        }
    }
    
    & .abertura_logo{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 50px;
        background-color: var(--branco);
        width: 380px;
        height: 400px;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 5px 5px 20px rgba(10,10,10, 0.5);
        border: var(--cor3) 2px solid;
        
        & .texto_abertura{
            & p{
            font-size: 18px;
            text-align: center;
        }
            & h2{
                font-size: 25px;
                font-weight: 500;
                /* text-align: center; */
                margin-bottom: 10px;
                color: var(--cor5);
                text-align: center;
            }
        }
    }
}

.linha1{
    background-color: var(--cor3);
    width: 100%;
    height: 5px;
}

.sobre{
    width: 100dvw;
    height: 100dvh;
    padding: 20px;
    gap: 20px;
    background-color: var(--cor5);
    color: var(--branco);
    display: flex;
    justify-content: center;
    align-items: center;

    & .sobre_imagens{
        display: flex;
        max-width: 500px;
        
        & img{
            height: 450px;            
            border-radius: 5px;
            border: 4px solid var(--branco);
           
        }
        & img:nth-of-type(1){
            
            transform: translate(0, -20px);
        }
        & img:nth-of-type(2){
           
            transform: translate(-25px, 10px);
        }
        
    }
    & .sobre_textos{
        max-width: 500px;
        font-size: 18px;
        
        & h2{
            color: var(--cor4);
            margin-bottom: 15px;
            font-weight: 100;
            font-size: 35px;
        }
        & p{
            font-weight: 100;
        }
        & ul{
            font-weight: 100;
            margin-left: 20px;
        }
    }
}

@media (max-width: 700px) {
    .sobre_imagens img{
        display: none;
    }
}


.fotos{
    width: 100%;
    height: 100dvh;

    & iframe{
        width: 100%;
        height: 100%;
    }
}

.contato{
    width: 100%;
    height: 100dvh;
    background-color: var(--cor5);
    color: var(--branco);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 200;

    & .logo_footer{
        margin-bottom: 80px;
    }

    & .contato_infos{
        display: flex;
        gap: 100px;

        & .contatos, .conecte{
            display: flex;
            flex-direction: column;
            width: 300px;
            gap: 10px;
            
        }

        & .conecte{
            align-items: end;
        }
        
    }

}

.infos{
    display: flex;
    gap: 5px;
    align-items: center;
    & a{
        text-decoration: none;
        font-size: 18px;
        color: var(--branco);
    }
}

.address{
    display: flex;
    & div{
       display: flex;
    flex-direction: column;
    }
}

.titulo_infos{
    font-size: 30px;
    color: var(--cor4);
    font-weight: 200;
}

.linha2{
    background-color: var(--cor3);
    width: 50px;
    height: 2px;
    margin: 20px 0;
}