@import url('https://fonts.googleapis.com/css2?family=Arvo:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;600&family=Roboto:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


.btn1 {
    padding: 2px 7px;
    background-color: rgb(255, 255, 255);
    display: inline;
    border-radius: 50%;
    color: rgb(0, 0, 0);
    font-size: 12px;
    cursor: pointer;
    transition: background-color 0.7s;
    position: absolute;
    z-index: 1;
    font-family: 'arvo';
    font-weight: 700;
}

.btn1:hover{
    background-color: #d3a262;
}

.info{
    width: 10px;
    height: 10px;
}

.janela-modal {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #00000000;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.modal{
    width: 260px;
    height: 230px;
    background-color: #ffffff96;
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    
}

.fechar {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 0.1;
    background-color: rgb(179, 0, 0);
    color: white;
    font-size: 18px;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    cursor: pointer;
}

.janela-modal.abrir {
    display: flex;
}


.sobreNos {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.historia {
    margin-top: 10px;
    font-family: "Roboto", sans-serif;
    font-weight: 300;
}

@keyframes abrirmodal {
    from {
        opacity: 0;
        transform: translate3d(0, -20px, -5px);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fecharmodal {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
        visibility: hidden;
    }
}

/* Aplicar animação de abertura e fechamento */
.modal {
    animation-duration: 0.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: both;
}

.janela-modal.abrir .modal {
    animation-name: abrirmodal;
    animation-play-state: running;
}

