
@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&display=swap');

@font-face {
    font-family: 'Frunchy';
    src: url('static/font/FrunchySage/FontsFree-Net-Frunchy.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
   
}
    
:root{

--cor-marrom: #725D48;
--cor-marromfraco: #B29A7E;
--cor-verde: #62745C;
--cor-verde-bg: #7d9578df;


    /* --cor-marrom: #825e43;
    --cor-marromfraco: #966625;
    --cor-verde: #7d9578;
    --cor-verde: #5F705D;
    --cor-verde-bg: #7d9578df; */
}

#sugestoes::-webkit-scrollbar {
    width: 10px;
    opacity: 0.8;
    height: 5px;
    max-height: 5px;
}

#sugestoes::-webkit-scrollbar-track {
    background-color: #ccc;
    border-radius: 50px;
       height: 5px;
      max-height: 5px;
}

#sugestoes::-webkit-scrollbar-thumb {
    background-color: var(--cor-marromfraco);
    border-radius: 50px;
    height: 5px;
  max-height: 5px;
}

#sugestoes::-webkit-scrollbar-thumb:hover {
    background-color: var(--cor-verde);
}

body {
    /* font-family: 'Poppins', sans-serif; */
    font-family: "EB Garamond", serif;
    background-image: url('../img/branco.png');
    max-width: 2048px;
    margin: 0;            
    position: relative;
    overflow-x: hidden;
    z-index: 2;
}

body::after {
    content: ''; 
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100% ;
    background-color: rgba(255, 255, 255, 0.3);  
    pointer-events: none; 
    z-index: -1;
}

.interface{
    max-width: 1280px;
    margin: 0 auto;
    
}
.foto{
    display: flex;
    align-items: center;
    justify-content: center;
}
.foto img{
width: 220px;
height: auto;
}


header {
    display: flex;
    justify-content: start;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    font-family: "poppins";
    margin-top: 30px;
    margin-left: 30px;
    gap: 15px;
}


header .button-voltar{
    height: 50px;
    width: 50px;
    background-color: transparent;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px #999999 solid;
    border-radius: 15px;
}


section.confirmarpresenca  {
    padding: 25px 4%;
    width: 100%;
    height: auto;
    margin-top: 80px;
    box-shadow: none;
    overflow: visible; 
    position: relative;
    color: var(--cor-marrom);
    /* background: linear-gradient(to center, #7d9578df, #ffffff); */
}
section.confirmarpresenca  h1{
    text-align: center;
    margin-top: 60px;
    margin-bottom: 12px;
    font-size: 55px;
    font-family: "Imperial Script", cursive;
    font-weight: 100;
    color: var(--cor-marrom);


} 
  section.confirmarpresenca  .interface {
    height: 100%;
    position: relative;

}

a{
    text-decoration: none;
    color: #725D48;
}

section.confirmarpresenca  .flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;

}

section.confirmarpresenca .flex .container {
    display: flex;
    gap: 20px;
    flex-direction: column;
    /* transform: translateY(-60px); */

}

section.confirmarpresenca  h2{
    font-size: 35px;
    font-weight: bold;
    color: #000;
    text-align: center;
}


section.confirmarpresenca  p{
    font-size: 15px;
    font-family: "poppins";
    font-weight: 500;
    text-align: center;
    color: var(--cor-marrom);
}   

section.confirmarpresenca .input-nome {
    padding: 10px;
    width: 490px;
    border-radius: 25px;
    border: 2px solid var(--cor-verde);
}
section.confirmarpresenca .btn-confirmar {
    padding: 10px 70px;
    background-color: var(--cor-verde);
    border-radius: 25px;
    width: 490px;
    color: white;
    border: none;
    cursor: pointer;
    font-family: "poppins";
    font-size: 16px;
    transition: 1s;
}

section.confirmarpresenca  .btn-confirmar:hover {
    background-color: #000;
}




/* animacao */


.hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.show {
    opacity: 1;
    transform: translateY(0) !important;

}



.sugestoes {
    width: 490px;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    border: 2px solid var(--cor-verde);
    border-radius: 15px;
    margin-top: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
    font-family: 'Poppins', sans-serif;
}

.sugestoes div {
    padding: 10px 20px;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 15px;
    color: var(--cor-marrom);
}

.sugestoes div:hover {
    background-color: var(--cor-verde-bg);
    color: white;
    border-radius: 15px;
}

.btn-confirmar:disabled {
    background-color: #ccc !important;
    cursor: not-allowed !important;
    pointer-events: none;
    opacity: 0.6;
}

/* Estilos para dispositivos móveis */
@media (max-width: 600px) {
    body {
        font-size: 14px;
        /* padding: 10px; */
    }
    .desktop{
        display: none !important;
    }
     .mobile{
        display: block !important;
    }
    section.confirmarpresenca .container h2{
        font-size: 25px;
    
    }

    section.confirmarpresenca {
        padding: 0px 4%
    }
    

    .foto img {
        width: 100px;
        height: auto;
    }
    
    section.confirmarpresenca  p{
        font-size: 14px;

        padding: 5px 10px;
    }   
    
    section.confirmarpresenca .container .input-nome {
        width: 100%;
    }
    section.confirmarpresenca .container .btn-confirmar {
        width: 100%;
    }
    

    .floating-button {
        width: 50px;
        height: 50px;
    }

    .floating-button i {
        font-size: 20px;
    }

    .sugestoes {
        width: 100% !important;
    };
}

