@font-face {
    font-family: "Cinzel";
    src: url('../fonts/Cinzel-VariableFont_wght.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Cormorant";
    src: url('../fonts/Cormorant-VariableFont_wght.ttf') format('truetype');
}

@font-face {
    font-family: "Nunito";
    src: url('../fonts/NunitoSans-VariableFont_wght.ttf') format('truetype');
}

html, body{
    margin: 0;
    padding: 0;
}

#header {
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 100px;
}

#header img{
    display: flex;
    width: 120px;
    margin-top: 5px;
    margin: auto;
    justify-content: center;
}

#title{
    height: 100px;
    width: 100%;
    background-color: #1C1E59;
    align-items: center;
    justify-content: center;
    display: flex;
    text-align: center;
}

#title p{
    font-family: "Cinzel";
    color: white;
    font-size: 2vh;
}
#rodape{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1C1E59;
    height: 100px;
    width: 100%;
    margin-top: 50px;
}

#rodape p{
    color: white;
    text-align: center;
    font-family: "Cormorant";
    font-size: 3vh;
}

#rodape a{
    font-weight: bold;
    text-decoration: none;
    color: white;
}

/*CARD TEMPLATE CSS*/
#cardBorder {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 250px;
    width: 200px;
    background-color: rgb(255, 255, 255);
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

#nomeProduto{
    margin-bottom: 10px;
    font-size: 3.4vh;
    font-family: "Cinzel";
    font-weight: bold;
    text-align: center;
}

#photo{
    display: flex;
    justify-content: center;
    overflow: hidden;
    margin: 15px;
    min-height: 150px;
    min-width: 150px;
    background-color: rgb(255, 255, 255);
}



#botao{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 35px;
    width: 100px;
    background-color: #1C1E59;
    margin-bottom: 10px;
    color: white;
    font-size: 2VH;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 10px;
    margin-top:10px;
    font-family: "Cinzel";
}

#botao a{
    color: white;
    text-decoration: none;
}

#cardsContainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

#cardBorder{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
    font-family: 'Nunito';
}

#cardBorder:hover{
    transform: scale(1.03);
    box-shadow: 3px 3px 25px rgba(0, 0, 0, 0.25);
}

#Form{
    text-align: center; 
    margin: 40px;
    font-family: "Cormorant";
    font-size: 3vh;
}

#produtoEscolhido {
    margin: 30px auto 10px auto;
    padding: 20px;
    font-size: 3.5vh;
    border-radius: 20px;
    color: #1C1E59;
    text-align: center;
    max-width: 600px;
}

#produtoEscolhido h2 {
    font-family: "Cormorant";
    margin: 0;
}

/* Novo bloco para o link */
#linkInspiracao {
    text-align: center;
    margin: 20px auto 40px auto;
}

#linkInspiracao p{
    font-weight: bold;
    color: #1C1E59;
}

#linkInspiracao a {
    display: inline-block;
    padding: 12px 24px;
    background-color: #F2B037;
    border-radius: 10px;
    color: #1C1E59;
    font-family: "Cinzel";
    font-weight: bold;
    font-size: 2.2vh;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}


/* Formulário principal */
#formReserva {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fdfdfd;
    border-radius: 15px;
    padding: 25px 20px;
    max-width: 400px;
    margin: 20px auto;
    font-family: "Cinzel";
}

/* Labels */
#formReserva label {
    align-self: flex-start;
    font-weight: bold;
    margin: 10px 0 5px 10px;
    color: #1C1E59;
}

/* Inputs */
#formReserva input[type="text"],
#formReserva input[type="email"] {
    width: 100%;
    max-width: 360px;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 2.2vh;
    outline: none;
    font-family: "Cormorant";
    font-weight: bold;
    transition: border-color 0.2s;
    color:#1C1E59
}

#formReserva input:focus {
    border-color: #1C1E59;
}

/* Botão */
#formReserva button {
    margin-top: 20px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    background-color: #1C1E59;
    color: white;
    font-size: 2.3vh;
    cursor: pointer;
    font-family: "Cinzel";
    transition: background-color 0.2s ease-in-out;
    width: 100%;
    max-width: 360px;
}

#formReserva button:hover {
    background-color: #2d32a3;
}

/* Link "Voltar à lista" */
#voltarLista {
    display: block;
    text-align: center;
    margin: 20px auto;
    font-family: "Cormorant";
    font-size: 2.2vh;
    text-decoration: none;
    color: #1C1E59;
}

#voltarLista:hover {
    text-decoration: underline;
}

#rodape a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}

#pix{
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: "Cinzel";
}

#pix p{
    font-weight: bold;
}

#qrcode{
    height: 200px;
    width: auto;
}

#pixCard{
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    margin: 40px;
    box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.3)
}

#pixBotao{
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    width: auto;
    background-color: #1C1E59;
    margin-bottom: 10px;
    color: white;
    font-size: 2VH;
    padding: 5px 10px;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 10px;
    margin-top:5px;
    font-family: "Cinzel";
}

#pixBotao a{
    text-decoration: none;
    color: white;
}

#pixCard p{
    font-family: 'Cinzel';
    font-weight: bold;
    font-size: 4vh;
    color:#1C1E59
}

#copiaecola {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

#copiaecola input {
    flex: 1;
    border: 1px solid #1C1E59;
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 1.8vh;
    color: #1C1E59;
    text-align: center;
    background: #f5f6fa;
    outline: none;
    width: 180px;
  }

#copiaecola input:read-only {
    cursor: default;
  }

.copiaBotao {
    background-color: #1C1E59;
    margin: 5px;
    color: white;
    border-radius: 4px;
    padding: 5px 5px;
    font-size: 1.5vh;
    font-family: "Cinzel", serif;
    font-weight: bold;
    border: none;
}


.copiaBotao:active {
    transform: scale(0.97);
  }

#voltarLista {
    display: inline-block;
    text-align: center;
    margin: 20px auto;
    padding: 10px 20px;
    font-family: "Cinzel", serif;
    font-size: 2.3vh;
    text-decoration: none;
    color: black;
    border: 2px solid black;
    border-radius: 8px;
    transition: 0.2s ease-in-out;
}

#voltarLista:hover {
    background-color: black;
    color: white;
}

#voltarLista a{
    text-decoration: none;
}


/* Tablets (≤1024px) */
@media (max-width: 1024px) {
    #title p {
        font-size: 5vh;
    }

    #cardBorder {
        width: 200px;
        min-height: 250px;
    }

    #photo {
        width: 130px;
        height: 130px;
    }

    #botao {
        width: 100px;
        height: 35px;
        font-size: 2vh;
    }
}

/* Celulares (≤768px) */
@media (max-width: 768px) {
    #header {
        height: 80px;
    }

    #header img {
        width: 100px;
    }

    #title {
        height: 80px;
    }

    #title p {
        font-size: 2vh;
        padding: 0 10px;
    }

    #rodape {
        height: 80px;
    }

    #rodape p {
        font-size: 2.5vh;
    }

    #cardBorder {
        width: 160px;
        height: 210px;
    }

    #photo {
        width: 120px;
        height: 120px;
    }

    #nomeProduto {
        font-size: 2.8vh;
    }

    #botao{
        width: 100px;
        height: 30px;
        font-size: 1.8vh;
    }
}

/* Botão hamburguer */
#hamburger {
    position: fixed;
    top: 20px;
    left: 20px;
    font-size: 30px;
    cursor: pointer;
    z-index: 1002;
    color: #1C1E59;
    transition: color 0.3s ease;
}

/* Hambúrguer branco quando o menu está ativo */
#hamburger.active {
    color: #ffffff;
}

/* Menu lateral cobrindo toda a tela */
#menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 30, 89, 0.95);
    transition: left 0.4s ease;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none; /* bloqueia cliques quando fechado */
}

/* Menu ativo: aparece e aceita cliques */
#menu.active {
    left: 0;
    pointer-events: auto;
}

/* Estrutura da lista do menu */
#menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Itens da lista */
#menu ul li {
    margin: 20px 0;
}

/* Links do menu – cobrimos todos os estados */
#menu ul li a:link,
#menu ul li a:visited {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    font-family: "Cinzel";
    font-size: 5vh;
    color: #ffffff;
    transition: color 0.3s ease, opacity 0.3s ease;
}

#menu ul li a:hover,
#menu ul li a:focus {
    color: #B1B3F0;
    opacity: 0.9;
}

#menu ul li a:active {
    color: #B1B3F0;
}

/* Smartphones pequenos (≤480px) */
@media (max-width: 480px) {
    #title p {
        font-size: 2.6vh;
    }

    #rodape p {
        font-size: 2vh;
    }

    #cardsContainer {
        flex-direction: column;
        align-items: center;
    }

    #cardBorder {
        width: 80%;
        height: auto;
        padding: 15px;
    }

    #photo {
        width: 100px;
        height: 100px;
    }

    #botao {
        width: 180px;
        height: 45px;
        font-size: 2.5vh;
    }
}

/* Mobile ajustes */
@media (max-width: 600px) {
    #formReserva {
        width: 90%;
        padding: 20px;
    }

    #formReserva input,
    #formReserva button {
        font-size: 2.3vh;
    }
}
