
@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; */
}

::-webkit-scrollbar {
    width: 10px;
    opacity: 0.8;
}

::-webkit-scrollbar-track {
    background-color: #ccc;
    border-radius: 1px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--cor-marromfraco);
    border-radius: 1px;
}

::-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;
}



.interface{
    max-width: 1280px;
    margin: 0 auto;
    
}
.foto{
    display: flex;
    align-items: center;
    justify-content: center;
}
.foto img{
width: 220px;
height: auto;
}
main{
    height: auto;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    font-family: "poppins";

    margin-left: 30px;
}

header .btn-loja button{
    margin-right: 20px;
    margin-top: 20px;
    padding: 10px 30px;
    background-color: var(--cor-marrom);
    border-radius: 25px;
    color: white;
    border: none;
    cursor: pointer;
    font-family: "poppins";
    font-size: 16px;
    transition: 1s;
    display: flex;
    align-items: center;
}


header .btn-loja button i {
    font-size: 25px;
    margin-right: 5px;
}
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;
    margin-top: 30px;
}


section.listapresente  {
    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.listapresente  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.listapresente  .interface {
    height: 100%;
    position: relative;

}

a{
    text-decoration: none;
    color: #725D48;
}

section.listapresente  .flex {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;

}

section.listapresente .flex .container {
    display: flex;
    gap: 20px;
    flex-direction: column;
    /* transform: translateY(-60px); */

}

section.listapresente  h2{
    font-size: 35px;
    font-weight: bold;
    color: #000;
}


section.listapresente  p{
    font-size: 15px;
    font-family: "poppins";
    font-weight: 500;
    text-align: center;
    color: var(--cor-marrom);
}   

section.listapresente .input-nome {
    padding: 10px;
    width: 490px;
    border-radius: 25px;
    border: 2px solid var(--cor-verde);
}


section.listapresente .container {
    position: relative;
    /* background-color: var(--cor-verde); */
    width: 100%;
    height: auto;
    margin-top: 10px;
    padding: 20px 4%;
}


.grid-presentes{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 20px));
    gap: 20px;
    justify-content: center;
}

.presente {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 8px var(--cor-marrom);
    padding: 15px;

    text-align: center;
    transition: 0.3s;
    width: 250px;
    height: 330px;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}


section.listapresente .presente:hover {
    transform: scale(1.05);
}


.presente img {
    width: 100%;

    max-height: 150px;
    object-fit: contain;
    border-radius: 8px;
}

.presente h3 {
    font-size: 20px;
    height: 40px;
    /* margin: 10px 0; */
    color: var(--cor-marrom);
}

section.listapresente .presente p {
    font-size: 10px;
    color: #555;
    margin: 10px 0;

}


section.listapresente .btn-confirmar {

    padding: 10px 30px;
    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.listapresente  .btn-confirmar:hover, header .btn-loja button:hover{
    background-color: #000;
}




.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal h2 {
    font-size: 25px;
    height: 40px;
    /* margin: 10px 0; */
    color: var(--cor-marrom);
}
.modal p {
    font-size: 16px;
    height: 40px;
    /* width: 250px; */
    text-align: center;
    color: var(--cor-marrom);
}

.modal span{
    font-size: 16px;
    font-weight: bold;
    color: var(--cor-marrom);
}
.modal-content {
    position: fixed;
    z-index: 2000;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    height: 400px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.modal input {
    width: 100%;
    padding: 8px;
    margin: 10px 0;
    border-radius: 15px;
    border: 2px solid var(--cor-verde);
}

.modal button {
    background-color: #5a6f54;
    color: white;
    margin-top: 15px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
}

.modal button:hover {
    background-color: #4a5d47;
}

#container1{
    display: block;
}
#container2 {
    opacity: 0;
    display: none;
}

.checkverde{
   color: var(--cor-verde);
}
.checkvermelho{
   color: #b63e3e;
}

#iconcheck{
    font-size: 100px;
    margin-bottom: 100px;
}

footer {
    position: relative;
    background-color: #f7f7f7;
    padding: 20px 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #333;
    border-top: 2px solid #dcdcdc;
}


footer .flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

footer, footer a{
    text-decoration: none;
    color: var(--cor-marrom);
}
footer .container {
    flex: 1;
    min-width: 250px;
}


.mobile{
    display: none !important;
}

/* Estilos para dispositivos móveis */
@media (max-width: 600px) {
    body {
        font-size: 14px;
        /* padding: 10px; */
    }
    .desktop{
        display: none !important;
    }
     .mobile{
        display: block !important;
    }
    section.listapresente  h2{
        font-size: 30px;
    
    }
    

    .foto img {
        width: 100px;
        height: auto;
    }
    
    section.listapresente  p{
        font-size: 14px;

        padding: 5px 40px;
    }   
    
    section.listapresente .input-nome {
        width: 90%;
    }
    

    .floating-button {
        width: 50px;
        height: 50px;
    }

    .floating-button i {
        font-size: 20px;
    }
}



/* 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;

}

.bx-loader-circle{
    animation: girar 2s linear infinite;
}

@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}