@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
:root{
    --textos:white;
    --textos-2:white;
    --textos-claros:rgb(175, 175, 175);
    --fundos-claros:rgb(218, 218, 218);
    --terciary: rgb(212, 191, 0);
    --fundo-black:black;
}
a{text-decoration: none;color: var(--textos);}
h1,h2,h3,h3{color: var(--textos);}
input{border: none;outline: none;}
/*reseter global*/*{z-index: 99;;transition: 0.6s;margin: 0;padding: 0;box-sizing: border-box;font-family: 'Roboto', sans-serif;}
/*center*/.center{margin: 0 auto;max-width: 1127px; width: 100%;}
body,html{height: 100%;width: 100%;background-color: var(--fundo-black);}

/*header*/
header{height: 120px;align-items: center;border-bottom:1px solid #9e9e9e;}
header .center{padding:0 0;display: flex;justify-content: left;align-items: center;height: 100%;}

/*informacoes da terapeuta*/
#informacoes-terapeuta{width: 100%;margin:0 0 70px 0;}
#informacoes-terapeuta .img-wrapper{
    width: 50%;
}
#informacoes-terapeuta .center{display: flex;
    flex-wrap: wrap;
    border-right: 1px solid #9e9e9eda;;
    -webkit-box-shadow: -2px 3px 0px 1px #000000; 
    box-shadow: -2px 3px 0px 1px #000000;
}
#informacoes-terapeuta .img-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#informacoes-terapeuta .text-wrapper{
    width: 50%;
    padding: 100px;
}
#informacoes-terapeuta .text-wrapper h2{
    margin-bottom: 35px;
}
#informacoes-terapeuta .text-wrapper p{
    margin-bottom: 35px;
    letter-spacing: 1px;
    font-size: 15px;
    color: var(--textos-claros);
}
#informacoes-terapeuta .text-wrapper h3{
    margin-bottom: 10px;
}
#informacoes-terapeuta .text-wrapper .button-contato{
    padding: 10px;
    width: 120px;
    height: 30px;
    background-color: var(--terciary);color: white;
}
#informacoes-terapeuta .text-wrapper .button-contato i{
    margin-right: 5px;font-size: 18px;
}
#informacoes-terapeuta .text-wrapper .button-contato:hover{
    opacity: 0.5;
}

/*galeria de fotos*/
#galeria-fotos{width: 100%;}
#galeria-fotos .center{display: flex;
justify-content: center;flex-wrap: wrap;}
#galeria-fotos h2{margin: 20px;width: 100%;
display: flex;justify-content: center;}
#galeria-fotos .galeria{width: 100%;display: flex;
justify-content: center;flex-wrap: wrap;}
#galeria-fotos .galeria .box{cursor: pointer;;display: flex;justify-content: center;
align-items: center;margin: 10px;}
#galeria-fotos .galeria .box img{
    width: 100%;
    height: 100%;object-fit: cover;
}
/*imagem single clisk*/
.imagem-single-click{
    position: fixed; top: 0;left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    opacity: 0;
    z-index: -9;
}
.imagem-single-click .box{
    width: 80%;
    opacity: 0;
    height: auto;
    max-height: 700px;
    position: relative;
    top: 50%;
    left: 50%;
    display: flex;
    flex-wrap: wrap;
    transform: translate(-50%,-50%);
    background-color: white;    
}
.imagem-single-click .fechar{display: none;width: 100%;;padding: 5px;position: relative;}
.imagem-single-click .fechar span{
    color:black;
    margin: 5px;
    cursor: pointer;
    font-size: 25px;
}
.imagem-single-click .imagem{
    height: 600px;
    width: 100%;
    padding: 0 0 5px 0;
    display: none;
}
.imagem-single-click .imagem img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.imagem-single-click.active {
    display: block;
    opacity: 1;
    z-index: 999;
}
.imagem-single-click.active .box{
    opacity: 1;
}
.imagem-single-click.active .imagem{
    display: block;
}
.imagem-single-click.active .fechar{
    display: block;
}
/*footer*/
footer{min-width: 100%!important;background-color: rgb(0, 0, 0);padding: 20px 0;}
footer .center{display: flex;justify-content: space-between;
align-items: center;max-width: 100%;padding: 0 1%;
}
footer ul{width: 100%;list-style: none;display: flex;justify-content: space-between;}
footer ul li{width: 33%; display: flex;align-items: center;justify-content: center;}
footer ul li a{color: white;}
@media only screen and (max-width: 820px) {
    header .center,footer .center{padding:0 2%;}
    #informacoes-terapeuta .img-wrapper{
        width: 100%;
        height: 100vh;
    }
    #informacoes-terapeuta .text-wrapper{
        width: 100%;
    }
}
@media only screen and (max-width: 650px) {
    footer a{font-size: 12.5px;}
    #galeria-fotos .galeria .box{width: 80%!important;}
}
@media only screen and (max-width: 500px) {
    #informacoes-terapeuta .text-wrapper{
        padding: 0 50px;
    }
    #informacoes-terapeuta .img-wrapper img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #informacoes-terapeuta .center{
        border: none;
        box-shadow: none;
    }
    #informacoes-terapeuta .text-wrapper .button-contato {
        padding: 10px;
        width: 151px;
        height: 60px;
        display: flex;
        background-color: var(--terciary);
        color: white;
    }
    footer ul{flex-wrap: wrap;}
    footer a{font-size: 11px;}
    footer ul li{
        width: 100%;
        margin: 10px 0;
    }
    footer ul img{width: 80px;}
    .imagem-single-click .box{
        max-height: 600px;
        
    }
    .imagem-single-click .imagem{
        height: 90%;
        padding:0;
    }
    .imagem-single-click .imagem img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
@media only screen and (max-width: 300px){
    footer a{font-size: 10px;}
}