:root{
    --tamanho_header: 10vh;
    --tamanho_footer: 3vh;
}
body{
    background-image: url(../Imagens-Gerais/logos/Estante.png);
    background-repeat: no-repeat;
    background-size: 154.7vh;
    background-position: center bottom 2.9vh;
    background-color: rgb(228, 218, 208);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    
}
main{
    margin-top: var(--tamanho_header);
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer{
    background-color: #bf92ff;
    width: 100%;
    height: var(--tamanho_footer);
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    color: #4A1981;
    font-size: 1.2rem;
    align-items: center;
}
header{
    border-bottom: 0.3vh solid #2b0952;
    box-shadow: inset 0 0  1.5vh #2b0952;
    height: var(--tamanho_header);
    flex-direction: row;
    color: black;
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #4A1981;
    transition: all 0.4s ease;
}
.container{
    border-radius: 2.5vh;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    justify-self: center;
    margin-top: 4vh;
    padding: 2vh 2.5vh 2.5vh 2vh;
    margin-bottom: 4.3vh;
    width: 66vh;
}
.caixa{
    height: 30vh;
    width: 20vh;
    margin-top: 1vh;
    border: 0.4vh solid black;
    display: flex;
    transition: all 0.6s ease-out;
    border-radius: 2vh;
    cursor: pointer;
}
.container:has(.caixa:hover) .caixa:not(:hover){
    transform: scale(0.8);
    transform: translateY(-1vh);
    background-color: grey;
    opacity: 0.4;
}

.caixa:hover{
    transform: scale(1.15) translateY(-2vh);
    opacity: 1;
}
.fotos{
    height: 100%;
    width: 100%;
    border-radius: 1.5vh;
}
.labels{
    display: flex;
    justify-self: center;
    font: normal 2vh Arial;
}
#dados-form{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}
#conta:hover ~ .formulario{
    opacity: 1;
    visibility: visible;
}
#contatos{
    position: relative;
    left: 2vh;
}
.formulario:hover{
    opacity: 1;
    visibility: visible;
}                     

.formulario{
    transition: all 0.5s ease;
    background-color: rgb(255, 255, 255);
    border: 0.2vh solid black;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    width: 27vh;
    right: 7vh;
    top: 10vh;
}
#imagens-header{
    gap: 2vh;
    display: flex;
    justify-content: flex-end;
    flex-direction: row;
    flex: 1;
}
#foto-header-contato{
    flex: 1;
}
#audio-section{
    width: 8vh;
    height: 10vh;
}
.foto-header{
    font: normal 1.5vh Arial;
    align-items: center;
    display: flex;
    position: relative;
    width: 8vh;
    height: 8vh;
    justify-content: center;
}
#inicio{
    flex: 1;
    justify-content: flex-start;
}
#logo-site{
    display: flex;
    flex: 1;
    position: relative;
    width: 40vh;
    bottom: 0vh;
    height: var(--tamanho_header);
}
#logo-site img{
    width: 100%;
    height: 100%;
}
footer span{
    padding: 0vh 1.5vh 0vh 1.5vh;
}