@charset "UTF-8";
@font-face {
    font-family: Gellatio;
    src: url(../fontes/gellatioregular.ttf);
}
@font-face {
    font-family: QuicheSans;
    src: url(../fontes/quichesans.otf);
}

:root{
    --cor0: rgb(100, 65, 45);
    --cor1: rgb(182, 153, 145);
    --cor2: rgb(255, 248, 224);
    --cor3: rgba(255, 255, 255, 0.603);
    --tcursivo: Gellatio, cursive;
    --tnormal: QuicheSans, Roboto, sans-serif;
    --padrao: Calibri, sans-serif;
}
/* MAIN */
.h1{
    padding: 20px;
    padding-top: 30px;
    font-family: var(--tcursivo);
    font-size: 1.5em;
    text-align: center;
    background-color: var(--cor0);
    color: white;
}
.conteudo{
    width: 90vw;
    max-width: 800px;
    padding: 30px;
    margin: auto;
    background-color: var(--cor2);
    box-shadow: inset 0 0 3px 5px rgba(0, 0, 0, 0.507);
}
#desc{
    padding-top: 10px;
}
h1{
    font-family: var(--tnormal);
    font-size: 1.3em;
    letter-spacing: 0.1em;
    padding: 20px 10px 10px 10px;
}
p{
    text-indent: 20px;
    text-align: justify;
    font-size: 1em;
    padding: 0px 10px 20px 0px;
    margin: 10px;
}
#fotos{
    position: relative;
    background-color: var(--cor0);
    height: 50vw;
    max-height: 45vh;
    text-align: center;
    box-shadow: none;
    overflow: hidden;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#fotos > .btf{
    position: absolute;
    height: 50px;
    width: 50px;
    margin: 20px;
    border-radius: 100%;
    border-width: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#fotos > .btf > span{
    font-weight: bolder;
}
#fotos > .btf > span#bvolt{
    transform: translateX(5px);
}
#avancar{
    right: 0;
}
#voltar{
    left: 0;
}
.slide{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slide > img{
    margin: 20px;
    height: calc(100% + -40px);
    border-radius: 10px;
}
#adicional{
    padding: 4vh;
}
@media screen and (max-width: 400px) {    
    #fotos{
        height: 35vh;
        max-height: 60vh;
        
    }
    .slide > img{
        margin: 15px;
        height: auto;
        width: calc(100% + -30px);
    }
    .btf{
        transform: scale(0.75);
    }
}

@media screen and (orientation: landscape) and (max-height: 400px){
    #fotos{
        height: 85vh;
        max-height: 85vh;
    }
}