/*Card*/

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
    justify-content: center; 
    max-width: 70%;
    padding: 50px;
    border-radius: 20px;
    border: 2px solid #ffeb3b;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), inset 0 0 15px rgba(255, 235, 59, 0.05);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.info-card {
    color: #ffeb3b;
    font-size: 1.2rem;
    gap: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;        
    align-items: center;
    max-width: 100%;
}

.info-card:hover {
    box-shadow: 0 12px 35px rgba(255, 235, 59, 0.2), inset 0 0 20px rgba(255, 235, 59, 0.1);
    border-color: #fbc02d;
    transform: translateY(-3px);
}

.vamos {
    color: #ffeb3b;
    font-size: 1.4rem;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.9), 0 0 20px rgba(255, 235, 59, 0.3);
    padding: 20px 32px;
    background: linear-gradient(135deg, #1b5e20 0%, rgba(27, 94, 32, 0.8) 100%);
    backdrop-filter: blur(10px);
    border: 3px solid #ffeb3b;
    border-radius: 25px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8), inset 0 0 25px rgba(255, 235, 59, 0.1), 0 0 30px rgba(255, 235, 59, 0.2);
    transition: all 0.3s ease;
    letter-spacing: 1px;
    margin: 12px 0;
    animation: pulse 2s ease-in-out infinite;
}

.vamos:hover {
    box-shadow: 0 16px 50px rgba(255, 235, 59, 0.35), inset 0 0 30px rgba(255, 235, 59, 0.15), 0 0 40px rgba(255, 235, 59, 0.3);
    border-color: #fbc02d;
    transform: scale(1.05) translateY(-5px);
    text-shadow: 4px 4px 8px rgba(0,0,0,0.9), 0 0 30px rgba(255, 235, 59, 0.5);
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.85;
    }
}    

/* Tabela de Pontuação  */

.tabela-pontuacao {
    max-width: 100%;
    border-collapse: collapse;
    background-color: rgba(0, 0, 0, 0.9);
    border: 3px solid #ffeb3b;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8), inset 0 0 20px rgba(255, 235, 59, 0.1);
    font-size: 0.9rem;
    border-radius: 15px;
    overflow: hidden;
}

.tabela-pontuacao th {
    background: linear-gradient(180deg, #ffeb3b 0%, #fbc02d 100%);
    color: #1b5e20;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    padding: 8px 12px;
    font-size: 1rem;
}

.tabela-pontuacao th:first-child, 
.tabela-pontuacao td:first-child {
    border-right: 2px solid rgba(255, 235, 59, 0.4);
}

.tabela-pontuacao td {
    padding: 6px 12px;
    border-bottom: 1px solid rgba(255, 235, 59, 0.2);
    color: #f0f0f0;
    text-align: center;
    font-size: 0.9rem;
}

.tabela-pontuacao tbody tr {
    transition: all 0.3s ease;
}

.tabela-pontuacao tbody tr:hover {
    background-color: rgba(255, 235, 59, 0.1);
    transform: scale(1.02);
    box-shadow: inset 0 0 10px rgba(255, 235, 59, 0.2);
}

.tabela-pontuacao td:last-child {
    font-weight: bold;
    text-align: center;
    font-family: 'Courier New', Courier, monospace;
    color: #ffeb3b;
}

.cards{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 100%;
}


.card {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1 1 calc(45% - 20px);
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    border: 3px solid #ffeb3b;
    border-radius: 30px;
    padding: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(255, 235, 59, 0.15);
}

.card img {
    height: 220px;
    border-radius: 15px;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.6));
}

.card p{
    color:#1b5e20;
    background: linear-gradient(135deg, #ffeb3b 0%, #fbc02d 100%);
    padding: 8px 16px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.95;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.card p:hover {
    transform: scale(1.05);
    opacity: 1;
    box-shadow: 0 5px 12px rgba(0,0,0,0.4);
}

/* Botão - cards */
#comprar-carta, #comprar-carta-2 {
    background-color: #ffeb3b; 
    color: #1b5e20; 
    border: 2px solid #fbc02d;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 5px 0 #c6a700, 0 10px 20px rgba(0,0,0,0.4);
    transition: all 0.1s ease-in-out;
    outline: none;
}

#comprar-carta:hover,  #comprar-carta-2:hover {
    background-color: #fbc02d;
    letter-spacing: 0;
    box-shadow: 0 ;
}

#comprar-carta:active, #comprar-carta-2:active {

    transform: translateY(4px);
    box-shadow: 0 1px 0 #c6a700, 0 3px 6px rgba(0,0,0,0.4);
}

/* Modal de Alerta Customizado */
#modal-alerta {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

#modal-alerta.visivel {
    display: flex;
}

.modal-conteudo {
    background-color: #1b5e20;
    border: 5px solid #ffeb3b;
    padding: 40px;
    border-radius: 30px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 0 30px rgba(255, 235, 59, 0.3);
    animation: popup 0.3s ease-out;
}

@keyframes popup {
    from { transform: scale(0.7); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.modal-conteudo p {
    color: #ffeb3b;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 25px;

}

.modal-conteudo strong {
    color: #ffffff;
    font-size: 2.2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

#fechar-modal {
    padding: 10px 30px;
    font-size: 1.2rem;
    border-radius: 20px;
}

