 
/* Estrutura principal */
header, main, footer {
    position: relative;
    z-index: 1;
}

main {
    flex: 1;
}

/* Conteúdo da página */
.pagina-default {
    padding: 60px 20px;
    text-align: center;
}

/* Logótipo */
.logo-evento {
    max-width: 220px;
}

/* Tipografia */
.titulo-grande {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.subtitulo {
    font-size: 1.3rem;
    color: #dddddd;
    margin-top: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.descricao {
    font-size: 1.1rem;
    color: #cccccc;
    margin-top: 20px;
    line-height: 1.7;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

/* Botão */
.botao-principal {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
    display: inline-block;
    margin-top: 30px;
}

    .botao-principal:hover {
        background-color: #f2f2f2;
    }

/* Footer */
footer {
    text-align: center;
    color: #ffffff;
    padding: 20px;
    font-size: 0.9rem;
    background-color: transparent;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.botao-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #fff;
    color: #000;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

    .botao-instagram:hover {
        background-color: #f2f2f2;
    }

.icone-instagram {
    width: 20px;
    height: 20px;
    fill: currentColor;
}


.card {
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    color: #fff;
    backdrop-filter: blur(5px);
}

    .card h5 {
        font-size: 1.2rem;
        font-weight: 600;
    }

    .card .card-text {
        font-size: 1rem;
        color: #ddd;
    }

    .card .botao-principal.disabled {
        opacity: 0.7;
        pointer-events: none;
    }




.evento-detalhes {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px 20px;
    border-radius: 12px;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.linha {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.icone {
    font-size: 1.8rem;
    margin-right: 15px;
    line-height: 1;
}

.conteudo {
    font-size: 1.2rem;
    line-height: 1.5;
}

.botoes {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.botao-principal {
    background-color: #fff;
    color: #000;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}

.botao-secundario {
    background-color: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
}




/* ===== NOVO AJUSTE GERAL PARA CABEÇALHO DE EVENTO ===== */
.evento-cabecalho {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    padding: 30px 120px; 
    margin: 0 auto;
}

.evento-info {
    flex: 1 1 40%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 280px;
}

.evento-nome {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.evento-organizado {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #ddd;
}

.evento-detalhe {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1rem;
    color: #ccc;
}

    .evento-detalhe i {
        color: #dcdcdc;
        font-size: 1.4rem;
    }

.evento-botoes {
    margin: 20px 0;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.botao-compra,
.botao-interesse {
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 6px;
    font-size: 0.95rem;
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    transition: 0.2s ease;
}
.botao-compra {
    background-color: #ffffff;
    color: #000000;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    margin-right: 12px;
    font-size: 1rem;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

    .botao-compra:hover {
        background-color: #e400c0; /* Rosa */
        color: #fff;
        box-shadow: 0 6px 18px rgba(255, 75, 178, 0.4); /* sombra leve em rosa */
    }

.botao-interesse {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

    .botao-interesse:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

.evento-interesse {
    font-size: 1.4rem;
    color: #aaa; 
}

/* === CARTAZ === */
.evento-cartaz {
    flex: 1 1 55%; 
    display: flex;
    align-items: center;
    justify-content: center;
}

    .evento-cartaz img {
        width: 100%;
        border-radius: 12px;
        box-shadow: 0 0 30px rgba(0,0,0,0.5);
    }

/* === RESPONSIVO === */
@media (max-width: 768px) {
    .evento-cabecalho {
        flex-direction: column;
        align-items: center; 
        padding: 40px 20px;
    }

    .evento-info,
    .evento-cartaz {
        max-width: 100%;
        flex: unset;
    }

    .evento-cartaz {
        margin-top: 20px;
    }

    .evento-botoes {
        justify-content: center;
    }
}



.evento-detalhe {
    display: flex;
    align-items: center;
    font-size: 1.05rem;
    color: #eaeaea;
    margin-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px; 
}

    .evento-detalhe:last-of-type {
        border-bottom: none;
    }

.icon-info {
    font-size: 1.5rem;
    margin-right: 12px;
    color: #bdbdbd; /* cinza claro */
    min-width: 22px;
    text-align: center;
} 

.secao-bilhetes {
    padding: 30px 120px;
    max-width: 1200px; 
}

.titulo-bilhetes {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cartao-bilhete {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detalhes-bilhete {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
}

.preco-bilhete {
    font-size: 1.2rem;
    color: #444444;
}

.contador-bilhete {
    display: flex;
    align-items: center;
    gap: 15px;
}

.botao-menos,
.botao-mais {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.botao-menos {
    background-color: #d6d6d6;
    color: #444;
}

.botao-mais {
    background-color: #111;
    color: #fff;
}

.quantidade {
    font-weight: 600;
    color: #000;
}



@media (max-width: 768px) {
    .secao-bilhetes {
        padding: 30px 20px; /* Reduz a margem lateral */
    }

    .cartao-bilhete {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .contador-bilhete {
        align-self: flex-end;
    }

    .titulo-bilhetes {
        font-size: 1.6rem;
        text-align: left;
    }

    .preco-bilhete {
        font-size: 1.1rem;
    }
}




.mood-lista {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 5px;
}

.mood-tag {
    background-color: #ffffff;
    color: #111;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

    .mood-tag:hover {
        transform: scale(1.05);
    }



.icone-rosa {
    color: #e400c0; /* rosa forte, ajusta se quiseres */
    margin-right: 10px;
}


.botao-compra:hover i {
    color: #ffffff;
}


.total-geral {
    margin-top: 20px;
    font-size: 18px;
}


.finalizar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.finalizar-valores {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.linha-valor {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    min-width: 200px;
}

.valor-total {
    font-weight: normal;
    font-size: 16px;
}

.finalizar-botao {
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.botao-finalizar {
    background-color: #ff4da6;
    color: white;
    padding: 12px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

    .botao-finalizar:hover {
        background-color: #e63c91;
        color: white;
    }

.icone-rosa {
    margin-right: 8px;
    color: #e63c91;
}




.modal-mbway {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-conteudo {
    background-color: white;
    padding: 30px;
    max-width: 400px;
    margin: 10% auto;
    border-radius: 10px;
    text-align: left;
    position: relative;
}

.fechar-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

#mbway-telemovel {
    width: 100%;
    padding: 12px; 
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}


#mbway-email {
    width: 100%;
    padding: 12px; 
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.botao-confirmar {
    background-color: #ff4da6;
    color: white;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
}


.metodo-pagamento {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 10px;
}

.opcao-pagamento {
    border: 2px solid #ccc;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    width: 120px;
    transition: 0.3s;
}

    .opcao-pagamento img {
        width: 60px;
        height: 60px;
        object-fit: contain;
    }

    .opcao-pagamento.selecionado {
        border-color: #007bff;
        background-color: #f0f8ff;
    }



/* Campos de texto mais agradáveis */
#modal-mbway input[type="text"],
#modal-mbway input[type="email"],
#modal-mbway input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 14px;
}

/* Container das opções de pagamento */
.metodo-pagamento {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 10px;
}

/* Botões de pagamento */
.opcao-pagamento {
    flex: 1;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 15px 10px;
    cursor: pointer;
    transition: 0.2s ease-in-out;
    font-weight: bold;
    background: #fff;
}

    .opcao-pagamento img {
        width: 120px;
        height: auto; 
    }

    /* Selecionado */
    .opcao-pagamento.selecionado {
        border-color: #e91e63;
        background-color: #ffe4f0;
        box-shadow: 0 0 5px #e91e63aa;
    }
