/**
 * Pantalla de Resultado
 * Muestra el valor de la pesora calculada
 */

.Resultado {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
}

.Resultado.active {
    display: flex;
}

.Resultado h1 {
    color: var(--text-color);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
}

.pesora-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 2rem 3rem;
    border-radius: 20px;
    border: 3px solid var(--text-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.pesora-label {
    color: var(--text-secondary);
    font-size: 1.2rem;
    font-weight: 500;
}

.pesora-value {
    color: var(--text-color);
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

.pesora-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 400;
}

.pesora-explanation {
    color: var(--text-color);
    font-size: 1rem;
    text-align: center;
    max-width: 500px;
    margin: 0;
}
