body {
    background: radial-gradient(circle, #ffffff 0%, #dbeafe 100%);
    font-family: 'Segoe UI', Roboto, sans-serif;
    display: flex; justify-content: center; padding: 20px;
}

.container {
    background: white; width: 100%; max-width: 600px;
    padding: 25px; border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,50,0.15); text-align: center;
}

.logo-principal {
    width: 100%; max-width: 300px; border-radius: 20px;
    margin-bottom: 15px; border: 4px solid #facc15;
}

.controles { margin: 15px 0; display: flex; justify-content: center; gap: 10px; }

input[type="number"] {
    padding: 12px; width: 70px; border-radius: 10px;
    border: 2px solid #0000ff; font-size: 20px; font-weight: bold;
}

button#btnSortear {
    background: linear-gradient(135deg, #0000ff, #4f46e5);
    color: white; border: none; padding: 12px 30px;
    border-radius: 10px; font-size: 18px; font-weight: bold;
    cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,255,0.3);
}

/* O "Card" do Santo Sorteado */
.santo-card {
    display: flex; align-items: center;
    background: #ffffff; border: 2px solid #e5e7eb;
    margin: 10px 0; padding: 12px; border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
}

.santo-card img {
    width: 45px; height: 45px; border-radius: 8px;
    margin-right: 15px; border: 2px solid #facc15;
}

.santo-nome {
    font-size: 18px; font-weight: 600; color: #1e3a8a;
}

@keyframes popIn {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

#painelSorteio {
    background: #facc15; color: #1e3a8a; padding: 20px;
    border-radius: 15px; font-size: 22px; font-weight: bold;
    margin: 20px 0; border: 3px solid #1e3a8a;
}

.hidden { display: none; }
.btn-discreto { background: none; border: none; color: #333; cursor: pointer; margin-top: 30px; font-size: 15px; }

#listaCompleta {
    font-size: 13px;
    text-align: left;
    column-count: 2;          /* Força as duas colunas */
    column-gap: 20px;         /* Espaço entre as colunas */
    margin-top: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 10px;
    color: #555;
    line-height: 1.6;
}

/* Garante que o texto não quebre no meio de um nome entre colunas */
#listaCompleta div {
    break-inside: avoid;
}