/* Custom styles */

.result-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.result-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
}

.result-icon.premiado {
    background: linear-gradient(135deg, var(--cor-2) 0%, #4a9e57 100%);
}

.result-icon.nao-premiado {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
}

.result-card h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.result-details {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1.5rem;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.detail-row:last-child { border-bottom: none; }

.detail-label { font-weight: 700; }

.text-success { color: var(--cor-2) !important; }

.fw-bold { font-weight: 700; }
