@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 */
.titulo{
    display: flex;
    align-items: center;
    min-height: 25vh;
    padding: 10px;
}
.titulo h1{
    font-family: var(--tcursivo);
    font-size: 1.6em;
    text-align: center;
    background-color: var(--cor3);
    border-radius: 20px 0px;
    padding: 15px 10px 5px 10px;
    margin: 10px auto;
}
.conteudo{
    width: 90vw;
    max-width: 800px;
    margin: auto;
    background-color: var(--cor2);
    margin-bottom: 0px;
    padding-top: 30px;
    box-shadow: inset 0 0 3px 5px rgba(0, 0, 0, 0.507);
}
h2{
    font-family: var(--tnormal);
    letter-spacing: 0.1em;
    padding: 0px 20px 0px 40px;
}
p{
    padding: 40px;
    padding-top: 10px;
}
main ul{
    padding: 40px;
    padding-top: 0px;
    list-style: none;
}
main ul > li{
    margin-top: 7px;
} 
main ul > li::before {
    content: '. ';
}
li > a {
    color: var(--cor0);
    text-decoration: none;
}
#fotos{
    position: relative;
    background-color: var(--cor0);
    height: 50vw;
    max-height: 50vh;
    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;
    border: 2px solid var(--cor2); 
}
#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: 20px;
    padding-top: 10px;
}
.add{
    display: flex;
    justify-content: end;
    font-weight: bolder;
    text-align: justify;  
    font-size: .9em;
}
.add a{
    background-color: var(--cor0);
    padding: 0px 10px 10px 20px;
    border-radius: 20px;
    color: white; 
    text-decoration: none;
    box-sizing: border-box;
    border: 2px solid white;
    margin-top: 10px;
}
.add span{
    transform: translateY(6px);
}
.add a:hover{
    background-color: var(--cor1);
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.507);
    border: 2px solid white;
}
@media screen and (max-width: 400px) {    
    #fotos{
        height: 60vh;
        max-height: 60vh;
    }
    .slide{
        transition: .3s ease-in;
    }
    .slide > img{
        max-height: calc(60vh - 20px);
        margin: 10px;
        height: auto;
        max-width: calc(100% + -20px);
    }
    .btf{
        transform: scale(0.75);
    }
}
@media screen and (orientation: landscape) and (max-height: 400px){
    #fotos{
        height: 85vh;
        max-height: 85vh;
    }
    .slide img{
        max-width: calc(85vh - 20px);
    }
}